-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
100 lines (82 loc) · 1.43 KB
/
style.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
@font-face {
font-family: 'FontAwesome';
src: url('./fontawesome-webfont.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
*,
*:before,
*:after {
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
font-size: .875rem
}
.flex-grow {
flex: 1;
display: flex;
flex-direction: column;
align-items: stretch;
overflow-y: auto;
}
[hidden] {
/*stringer than normalize css*/
display: none !important;
}
.dnd-drag-start {
/*transform:scale(0.8);*/
opacity: 0.7;
border: 1px dashed #333;
}
.dnd-drag-enter {
opacity: 0.7;
border: 1px dashed #333;
}
.dnd-drag-over {
opacity: 0.7;
border: 1px dashed #333;
}
/*chb in table*/
table .checkbox {
margin-top: 0px;
margin-bottom: 0px;
}
table .checkbox label {
min-height: inherit;
}
table input[type=checkbox] {
margin-top: 2px;
}
#loadingMsg {
font-size: 40px;
text-align: center;
position: absolute;
top: calc(50% - 40px);
width: 100%;
}
pre {
display: block;
padding: 9.5px;
color: #333;
word-break: break-all;
word-wrap: break-word;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
}
.search-result {
background-color: yellow !important;
}
.search-result-current {
background-color: orange !important;
}
.notransition {
transition: none !important;
}