You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
2.4 KiB
CSS

$darkGray: rgb(34, 34, 34);
$lessDarkGray: rgb(44, 44, 44);
$hoverColor: #e5e5e5;
$activeColor: #c5dae5;
$white: white;
$barColor: #edf5f5;
$lightGray: silver;
/* :export {
darkGray: $darkGray;
hoverColor: $hoverColor;
activeColor: $activeColor;
} */
/* FIXME: Casemap control names */
body {
/* FIXME: Think about whether this belongs in the theme, or whether it should be scoped to some sort of ApplicationFrame instead. */
background-color: white;
color: black;
}
.edgeRaise {
box-shadow: inset -1px -1px rgba(187, 183, 183, 0.7),
inset 1px 1px rgba(206, 206, 206, 0.3);
}
.edgeLower {
box-shadow: inset 1px 1px rgba(187, 183, 183, 0.7),
inset -1px -1px rgba(206, 206, 206, 0.3);
}
.bar {
composes: edgeRaise;
background-color: $barColor;
}
.uilibComponent {
color: black;
}
.list_list {
/* color: red; */
}
.list_item {
&:nth-child(odd) {
/* background-color: rgb(45, 45, 45); */
/* background-color: rgb(51, 51, 51); */
background-color: rgb(57, 57, 60);
}
&:nth-child(even) {
background-color: rgb(27, 27, 27);
}
&.list_item_selected {
/* FIXME: Find a better color for this. */
/* background-color: rgb(38, 38, 42); */
background-color: blue; /* FIXME: Remove testing color */
}
}
.menu_menuBar, .ribbon_ribbon {
composes: bar;
}
.menu_menuBar > .menu_item {
&:hover {
background-color: $hoverColor;
}
&.menu_item_selected, &menu_item_directPress {
background-color: $activeColor;
}
}
.menu_menu {
background-color: $barColor;
box-shadow: 1px 1px 2px rgb(54, 54, 54);
& > .menu_item:hover {
background-color: $hoverColor;
}
hr {
border-bottom: 1px solid rgb(78, 78, 78);
}
}
.menu_divider {
border-bottom: 1px solid rgb(78, 78, 78);
}
.button_button {
background-color: #d0d0d0;
/* background-color: magenta; */
border: none;
&:hover {
background-color: $hoverColor;
}
&:active {
@include edge-lower;
background-color: $activeColor;
}
&.button_selected {
background-color: $darkGray;
}
}
.ribbonBox_box {
border-left: 1px solid rgba(30, 27, 27, 0.7);
border-right: 1px solid rgba(135, 131, 131, 0.3);
}
.ribbonBox_label {
background-color: #f3f1fa;
}
.progressBar_bar {
border: 1px solid rgb(32, 32, 32);
/* background-color: rgb(64, 64, 70); */
background-color: rgb(43, 43, 47);
}
.progressBar_fill {
background-color: rgb(54, 135, 18);
}
.pane_handle {
background-color: rgb(245, 245, 245);
composes: edgeRaise;
}
.ribbon_ribbon {
/* ... */
}