blob: 63e11fb0ede07925d82cf3d6cf6ce32303bd2212 (
plain) (
blame)
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
|
.search-pane {
display: flex;
flex-direction: column;
.searches-list {
overflow: hidden;
flex: 2 1;
.section-content {
height: 100%;
}
.section-table {
height: calc(100% - 30px);
}
}
.search-new {
.content-row {
display: flex;
.text-search,
.regex-search {
flex: 1;
}
.exclusive-separator {
font-size: 0.8em;
display: block;
text-align: center;
}
.separator {
font-size: 0.9em;
flex: 0;
margin: auto 10px;
}
}
.notes {
font-size: 0.8em;
}
.checkbox-line {
.check-field {
display: inline-block;
margin-top: 0;
margin-right: 10px;
}
}
}
}
|