mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Tweaked TabContainer and ToolBar.
This commit is contained in:
parent
72506461ab
commit
c4865ee510
@ -2,14 +2,17 @@
|
||||
box-sizing: border-box;
|
||||
background-color: hsl(0, 0%, 16%);
|
||||
padding: 3px 0 0 0;
|
||||
border-bottom: solid 1px var(--border-color);
|
||||
}
|
||||
|
||||
.core_TabContainer_Tab {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
line-height: 25px;
|
||||
height: calc(100% + 1px);
|
||||
line-height: 22px;
|
||||
padding: 0 10px;
|
||||
margin: 0 1px;
|
||||
border: solid 1px var(--border-color);
|
||||
margin: 0 1px -1px 1px;
|
||||
color: #c0c0c0;
|
||||
font-size: 15px;
|
||||
}
|
||||
@ -22,4 +25,5 @@
|
||||
.core_TabContainer_Tab.active {
|
||||
background-color: var(--bg-color);
|
||||
color: hsl(0, 0%, 90%);
|
||||
border-bottom-color: var(--bg-color);
|
||||
}
|
||||
|
@ -3,7 +3,6 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding-top: 1px;
|
||||
border-bottom: solid var(--border-color) 1px;
|
||||
}
|
||||
|
||||
|
@ -5,7 +5,7 @@ import { LabelledControl } from "./LabelledControl";
|
||||
|
||||
export class ToolBar extends View {
|
||||
readonly element = create_el("div", "core_ToolBar");
|
||||
readonly height = 34;
|
||||
readonly height = 35;
|
||||
|
||||
constructor(...children: View[]) {
|
||||
super();
|
||||
|
Loading…
Reference in New Issue
Block a user