HTML Tree: Improve Linux GTK styling (for dark theme support)
Closes #2424
This commit is contained in:
parent
388d18d017
commit
7182531ec9
1 changed files with 25 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
.virtualized-table {
|
||||
border: 1px solid #ccc;
|
||||
border: 1px solid ThreeDShadow;
|
||||
}
|
||||
.virtualized-table, .drag-image-container {
|
||||
.twisty {
|
||||
|
@ -10,14 +10,24 @@
|
|||
}
|
||||
}
|
||||
.virtualized-table-header {
|
||||
background-image: linear-gradient(#fff, #fafafa);
|
||||
background-image: linear-gradient(-moz-field, -moz-dialog 120%);
|
||||
border-bottom: 1px solid ThreeDShadow;
|
||||
border-inline-end: 1px solid ThreeDShadow;
|
||||
|
||||
&.dragging {
|
||||
color: #666;
|
||||
background: #f8f8f8;
|
||||
.cell {
|
||||
&:hover {
|
||||
background: -moz-field;
|
||||
}
|
||||
|
||||
.cell .sort-indicator {
|
||||
&.dragging {
|
||||
background: -moz-dialog;
|
||||
}
|
||||
|
||||
.resizer {
|
||||
background: linear-gradient(ThreeDShadow, ThreeDShadow) no-repeat center/1px 80%;
|
||||
}
|
||||
|
||||
.sort-indicator {
|
||||
transform: scale(1.25);
|
||||
|
||||
&.ascending {
|
||||
|
@ -25,3 +35,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.twisty svg {
|
||||
fill: WindowText;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue