Made golden layout tabs height the same as regular tabs height. Correctly centered text in both.

This commit is contained in:
Daan Vanden Bosch 2019-08-31 21:37:55 +02:00
parent f73db32eaa
commit c743cba13b
3 changed files with 6 additions and 5 deletions

View File

@ -6,9 +6,9 @@
.core_TabContainer_Tab { .core_TabContainer_Tab {
box-sizing: border-box; box-sizing: border-box;
display: inline-block; display: inline-flex;
align-items: center;
height: calc(100% + 1px); height: calc(100% + 1px);
line-height: 22px;
padding: 0 10px; padding: 0 10px;
border: solid 1px var(--border-color); border: solid 1px var(--border-color);
margin: 0 1px -1px 1px; margin: 0 1px -1px 1px;

View File

@ -10,8 +10,9 @@
#root .lm_tab { #root .lm_tab {
cursor: default; cursor: default;
height: 21px; display: inline-flex;
line-height: 22px; align-items: center;
height: 23px;
padding: 0 10px; padding: 0 10px;
border: solid 1px var(--border-color); border: solid 1px var(--border-color);
margin: 0 1px -1px 1px; margin: 0 1px -1px 1px;

View File

@ -32,7 +32,7 @@ const DEFAULT_LAYOUT_CONFIG = {
showMaximiseIcon: false, showMaximiseIcon: false,
}, },
dimensions: { dimensions: {
headerHeight: 22, headerHeight: 24,
}, },
labels: { labels: {
close: "Close", close: "Close",