blob: a5796ebed7dca78bab63adbcb390f54420257a75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
.hidden {
display: none;
}
.no-padding {
padding: 0;
}
.text-right {
text-align: right;
}
.search-highlight {
background-color: $search-highlight;
}
button {
border: 1px solid transparent;
i {
margin-left: 5px;
}
&#trash-button {
background: $white;
border: 1px solid $medium_light_grey;
color: $medium_light_grey;
float: right;
margin-left: 5px;
&:hover, &:focus {
background: $contrast;
}
}
&.no-style {
background: transparent;
color: $medium_light_grey;
padding: 0;
margin: 0;
i {
margin: 0;
padding: 0;
vertical-align: middle;
}
}
}
section {
display: inline-block;
vertical-align: top;
height: 100vh;
overflow-y: scroll;
&#left-pane {
background-color: $navigation_background;
color: white;
}
&#middle-pane {
background: $contrast;
}
&#right-pane {
padding: 0 10px 60px 0px;
background: $white;
box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.12);
z-index: 2;
overflow-y: auto;
}
}
|