-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
207 lines (165 loc) · 3.9 KB
/
Copy pathstyle.css
File metadata and controls
207 lines (165 loc) · 3.9 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/* Darkmode scrollbar */
:root {
color-scheme: dark;
}
div.dt-buttons{
float: right!important;
}
.container-sm #fdata{
padding-bottom: 30px !important;
}
table.display td {
padding: 3px 10px;
white-space:nowrap;
}
/* Hides text in the command columns */
.superHidden{
/* display: inline;
width: 0px;
height: 0px;
visibility: hidden; */
font-size: 0px;
display: inline;
position: absolute;
clip: rect(0,0,0,0);
}
.hidden{
display: none !important;
}
/* Makes readonly input look normal */
/* **not used anymore** */
/* input[readonly]{
background-color: #fbfbfb !important;
} */
.bigmodal {
/* min-width: 60%; */
max-width: 1066px !important;
}
a.buttons-collection {
margin-left: 1em;
}
.select2{
width:100%!important;
}
#toast-container > div {
opacity:1 !important;
}
element {
-ms-overflow-style: none; /* for Internet Explorer, Edge */
scrollbar-width: none; /* for Firefox */
overflow-y: scroll;
}
element::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}
/* Expand credits button */
#creditModal #collapseCredits.collapse:not(.show) {
display: block;
height: 4.7rem;
overflow: hidden;
}
#creditModal #collapseCredits.collapsing {
height: 4.7rem;
}
#creditModal #collapseCreditsBT.collapsed::after {
content: '+ Show More';
}
#creditModal #collapseCreditsBT:not(.collapsed)::after {
content: '- Show Less';
}
/* Expand website credits */
#creditModal #collapseWebsiteCredits.collapse:not(.show) {
display: block;
height: 4.5rem;
overflow: hidden;
}
#creditModal #collapseWebsiteCredits.collapsing {
height: 4.5rem;
}
#creditModal #collapseWebsiteCreditsBT.collapsed::after {
content: '+ Show More';
}
#creditModal #collapseWebsiteCreditsBT:not(.collapsed)::after {
content: '- Show Less';
}
/* datatables dropdown dark */
.buttons-columnVisibility.dropdown-item.active, .dropdown-item:active {
color: #d3d3d3;
text-decoration: none;
background-color: #376490;
}
/* custom search builder */
.dtsb-searchBuilder .btn-light{
color: #d3d3d3;
background-color: #606469;
border-color: #2f2f2f;
}
.dtsb-searchBuilder .btn-light:hover{
color: #ffff;
background-color: #606469;
border-color: #ffff;
}
.dtsb-searchBuilder .btn-light:active{
color: #ffff !important;
background-color: #606469 !important;
border-color: #ffff !important;
}
.dtsb-searchBuilder .btn-light:focus{
color: #ffff !important;
background-color: #606469 !important;
border-color: #ffff !important;
}
.dtsb-searchBuilder .form-control{
color: #d3d3d3;
background-color: #606469;
border-color: #2f2f2f;
}
div.sbpopover {
width: 98vw !important;
}
@media screen and (min-width: 768px) {
div.sbpopover {
left: -49vw !important;
}
}
@media screen and (max-width: 768px) {
div.sbpopover {
left: 1vw !important;
}
}
/* copy to clipboard -header */
#datatables_buttons_info.dt-button-info h2{
color: #d3d3d3;
background-color: #343a40;
}
/* body */
#datatables_buttons_info.dt-button-info div{
color: #d3d3d3;
background-color: #606469;
}
/* Fix text color */
.btn-outline-secondary{
color: #cdcdcd !important;
}
/* Icon colors */
.X{height: 23px;}
/* Datatables resize */
table.dataTable thead th[data-is-resizable=true] {
border-left: 1px solid transparent;
border-right: 1px dashed #000000;
}
table.dataTable thead th.dt-colresizable-hover {
cursor: col-resize;
background-color: #23282e;
border-left: 1px solid #000000;
}
table.dataTable thead th.dt-colresizable-bound-min,
table.dataTable thead th.dt-colresizable-bound-max {
opacity: 0.2;
cursor: not-allowed !important;
}
span.select2.select2-container,
span.select2.select2-container > span.selection,
span.select2.select2-container > span.selection > span.select2-selection{
height: 100% !important;
}