-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexing.css
73 lines (60 loc) · 1.54 KB
/
indexing.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
div#form xforms-input input,
div#form select{
background-color: var(--color-bg);
color: var(--color-text);
}
div#form > xforms-switch > xforms-trigger.selected {
background-color: var(--color-bg);
color: var(--color-text);
padding: 0.5em;
}
div#form > xforms-switch > xforms-case[xf-selected='true'] {
margin-top: 1em;
}
div#form xforms-label > xforms-trigger {
margin-right: 0.3em;
}
div#form xforms-repeat[oldid='listConceptRef'] > xforms-repeat-item,
div#form xforms-repeat[oldid='listSubConceptRef'] > xforms-repeat-item,
div#form xforms-select1,
div#form .ref[xf-bound],
div#form .ref xforms-repeat[oldid='listItemRef'] {
display: flex;
align-items: center;
gap: 0.2em;
}
div#form #conceptResults {
background-color: var(--color-bg);
color: var(--color-text);
min-height: 0;
max-height: 100px;
overflow:auto;
}
div#form xforms-switch > xforms-trigger {
margin-right: 2em;
}
div#form #listConcept xforms-repeat[oldid='listSubConcept'],
div#form #listItem xforms-repeat[oldid='listSubItem'],
div#form #listConcept > xforms-repeat-item > xforms-trigger {
margin-left: 2em;
}
.highlight {
background-color: yellow;
}
.showEntry {
background-color: pink;
}
div#form #listItem .ref xforms-label,
div#form #listItem .ptr xforms-label{
font-weight: normal;
}
/*to remove the cross superposition with the side panel close button*/
.side.is-open .side_trigger button:after{
content: "";
}
.highlight {
background-color: yellow;
}
.highlightGreen {
background-color: green;
}