foist
[kismet-logviewer.git] / logviewer / static / css / kismet.ui.settings.css
1 div.k-s-container {
2     height: 100%;
3     width: 100%;
4
5     display: flex;
6     flex-direction: row;
7 }
8
9 div.k-s-list {
10     height: 100%;
11     overflow-x: hidden;
12     overflow-y: scroll;
13     width: 25%;
14     padding-top: 10px;
15     padding-bottom: 10px
16 }
17
18 div.k-s-pane-holder {
19     display: flex;
20     flex-direction: column;
21     height: 100%;
22     width: 75%;
23     flex: 1;
24 }
25
26 div.k-s-pane-content {
27     height: 100%;
28     overflow-x: hidden;
29     overflow-y: auto;
30     flex: 1;
31     padding: 10px;
32 }
33
34 div.k-s-pane-buttons {
35     height: 35px;
36     text-align: right;
37     padding-right: 20px;
38 }
39
40 div.k-s-list-item {
41     padding-top: 2px;
42     padding-bottom: 2px;
43     padding-left: 10px;
44 }
45
46 div.k-s-list-item:hover {
47     background-color: #C0C0C0;
48     cursor: pointer;
49 }
50
51 div.k-s-list-item-active {
52     background-color: #D0D0D0;
53 }
54
55 div.k-s-alert {
56     padding-left: 10px;
57     padding-top: 5px;
58     display: flex;
59     flex-direction: column;
60     height: 100%;
61 }
62
63 div.k-s-alert-content {
64     flex: 1;
65     height: 100%;
66 }
67
68 div.k-s-alert-header {
69     font-size: 18px;
70     font-weight: bold;
71 }
72
73
74