fchat-rising/less/themes/chat/default.less

40 lines
779 B
Plaintext
Raw Normal View History

2017-09-02 01:50:31 +00:00
@import "../variables/default.less";
2017-10-16 23:58:57 +00:00
.nav-tabs > li > a:hover {
background-color: @gray-darker;
}
.modal .nav-tabs > li.active > a {
background-color: @gray-dark;
2017-09-02 01:50:31 +00:00
}
2017-10-16 23:58:57 +00:00
.message-own {
background-color: @gray-darker;
2017-09-02 01:50:31 +00:00
}
// Apply variables to theme.
@import "../theme_base_chat.less";
* {
&::-webkit-scrollbar-track {
2017-10-16 23:58:57 +00:00
box-shadow: inset 0 0 8px @panel-default-border;
2017-09-02 01:50:31 +00:00
border-radius: 10px;
}
&::-webkit-scrollbar {
width: 12px;
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.8);
2017-10-16 23:58:57 +00:00
background-color: @gray-dark;
2017-09-02 01:50:31 +00:00
&:hover {
2017-10-16 23:58:57 +00:00
background-color: @gray;
2017-09-02 01:50:31 +00:00
}
&:active {
2017-10-16 23:58:57 +00:00
background-color: @gray-light;
2017-09-02 01:50:31 +00:00
}
}
}