Hi Bohdan,
It turns out that we are missing a CSS class in the DockManager markup. According to our design, DockManager tabs should have the same appearance and height as TabStrip tabs. However, the bottom of the DockManager tabs should align with the bottom of content pane headers, which is currently not the case.
Here is a workaround. The additional CSS class will not be rendered at the correct place, but the end result will be similar to the expected one. I also updated your Telerik points.
On a side note, we are gradually implementing a Size parameter for more components.
<TelerikDockManager Height="50vh">
<DockManagerPanes>
<DockManagerSplitPane Orientation="@DockManagerPaneOrientation.Vertical">
<Panes>
<DockManagerContentPane HeaderText="Pane 1">
<Content>
Content Pane 1
</Content>
</DockManagerContentPane>
</Panes>
</DockManagerSplitPane>
<DockManagerTabGroupPane Class="k-pane-tabbed">
<Panes>
<DockManagerContentPane HeaderText="Tab 2.1">
<Content>
First Tab Content
</Content>
</DockManagerContentPane>
<DockManagerContentPane HeaderText="Tab 2.2">
<Content>
Second Tab Content
</Content>
</DockManagerContentPane>
</Panes>
</DockManagerTabGroupPane>
<DockManagerSplitPane Orientation="@DockManagerPaneOrientation.Vertical">
<Panes>
<DockManagerContentPane HeaderText="Pane 3">
<Content>
Content Pane 3
</Content>
</DockManagerContentPane>
</Panes>
</DockManagerSplitPane>
</DockManagerPanes>
</TelerikDockManager>
Regards,
Dimo
Progress Telerik