47 lines
908 B
CSS
47 lines
908 B
CSS
|
.taskbar-object {
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
|
||
|
display: grid;
|
||
|
grid-template-columns: auto auto;
|
||
|
vertical-align: middle;
|
||
|
user-select: none;
|
||
|
|
||
|
background-color: var(--accent-color);
|
||
|
color: var(--accent-color-fg);
|
||
|
border: var(--border-style);
|
||
|
overflow: hidden;
|
||
|
padding: 0.25em;
|
||
|
}
|
||
|
|
||
|
.taskbar-object > .taskbar-start {
|
||
|
text-align: start;
|
||
|
height: 2em;
|
||
|
}
|
||
|
|
||
|
.taskbar-object > .taskbar-end {
|
||
|
text-align: end;
|
||
|
height: 2em;
|
||
|
}
|
||
|
|
||
|
.taskbar-object > .taskbar-start > button {
|
||
|
height: 2em;
|
||
|
padding: 0.5em;
|
||
|
margin: 0;
|
||
|
margin-inline-end: 0.25em;
|
||
|
border: var(--border-style);
|
||
|
background-color: transparent;
|
||
|
color: currentColor;
|
||
|
text-align: center;
|
||
|
vertical-align: middle;
|
||
|
font-size: 1em;
|
||
|
line-height: 1em;
|
||
|
}
|
||
|
|
||
|
.taskbar-object > .taskbar-start > button.taskbar-button-focusing {
|
||
|
background-color: var(--accent-color-fg);
|
||
|
color: var(--accent-color);
|
||
|
}
|