gtk2/gtk/inspector/inspector.css
Matthias Clasen 071763c844 inspector: Add a dark background to the recorder
Add a button to toggle the background in the node
view between dark and light. This helps to discern
the borders of some nodes.
2020-08-30 08:59:13 -04:00

62 lines
855 B
CSS

/* some style for the inspector */
.list header {
background: white;
border: 1px solid lightgray;
}
.list header button {
background: none;
}
.list header button.dnd {
background: gray;
}
.list header>* {
padding: 2px;
font-weight: bold;
}
.list header sort_indicator {
min-width: 16px;
}
.list header>*:not(:last-child) {
border-right: 1px solid lightgray;
}
.list .cell {
font-size: smaller;
padding: 0 2px;
min-height: 24px;
}
.list .cell entry,
.list .cell spinbutton,
.list .cell button,
.list .cell dropdown
.list .cell combobox {
min-height: 24px;
min-width: 0;
}
.list .cell entry,
.list .cell button,
.list .cell dropdown
.list .cell combobox {
padding: 0 4px;
}
stacksidebar.object-details {
border-top: 1px solid lightgray;
}
picture.dark {
background: gray;
}
picture.light {
background: white;
}