foist
[kismet-logviewer.git] / logviewer / static / css / kismet.ui.sidebar.css
1 /* Sidebar content */
2 div.kismet_sidebar {
3     height: 100%;
4     display: flex;
5
6     flex-direction: column;
7
8     padding: 10px 10px 10px 10px;
9     background-color: #555555 !important;
10     color: #ABABAB !important;
11
12     font-size: 18px;
13 }
14
15 i.k-sb-hamburger:hover {
16     color: #888888 !important;
17     cursor: pointer;
18 }
19
20 div.k-sb-header {
21     height: 40px;
22     margin-bottom: 10px;
23 }
24
25 div.k-sb-main {
26     height: 100%;
27     flex: 1;
28     overflow-x: hidden;
29     overflow-y: auto;
30 }
31
32 div.k-sb-footer {
33     height: 45px;
34 }
35
36 div.k-sb-list-item {
37     padding-top: 5px;
38     padding-bottom: 5px;
39     padding-left: 10px;
40 }
41
42 div.k-sb-list-item:hover {
43     background-color: #444444 !important;
44     cursor: pointer;
45 }
46
47