-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
72 lines (58 loc) · 1.02 KB
/
app.css
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
body {
height: 100%;
overflow: hidden;
}
#app-container {
padding: 0;
}
#main-panel {
height: 100vh;
overflow-y: scroll;
padding-right: 20px;
}
#sidebar-panel {
height: 100vh;
overflow-y: scroll;
border-radius: 0;
}
#comment_content > div {
padding: 10px;
border: 1px solid #e3e3e3;
margin: 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#comment_content > .active {
border-color: red;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
#sidebar-panel table {
table-layout: fixed;
}
#sidebar-panel tr th {
width: 20%;
}
#sidebar-panel tr :nth-child(2) {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: auto;
}
h3 {
font-size: 1.5em;
}
.btn {
margin-bottom: 5px;
}
#main-panel .inline > div {
display: inline-block;
}
#sidebar-panel .inline > div {
display: inline-block;
width: 49%;
}