wdisplays_github/resources/style.css

20 lines
357 B
CSS
Raw Normal View History

2019-07-06 05:51:52 +03:00
spinner {
opacity: 0;
transition: opacity 200ms ease-in-out;
background-color: rgba(64, 64, 64, 0.5);
}
spinner.visible {
opacity: 1;
}
2019-07-06 20:12:28 +03:00
.head {
border: 1px solid @borders;
border-radius: 1px;
background-color: @theme_bg_color;
transition: background-color 200ms ease-in-out;
}
.head:hover {
background-color: @theme_selected_bg_color;
}