@inspark/inspark-components 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/full/assets/error.svg +6 -0
- package/full/assets/falsevalue.svg +6 -0
- package/full/assets/icon.svg +6 -0
- package/full/assets/none.svg +6 -0
- package/full/assets/success.svg +6 -0
- package/full/assets/warning.svg +6 -0
- package/full/bundles/inspark-inspark-components.umd.js +3758 -0
- package/full/bundles/inspark-inspark-components.umd.js.map +1 -0
- package/full/bundles/inspark-inspark-components.umd.min.js +16 -0
- package/full/bundles/inspark-inspark-components.umd.min.js.map +1 -0
- package/full/components/breadcrumb/breadcrumb.component.d.ts +7 -0
- package/full/components/button/button.component.d.ts +57 -0
- package/full/components/checkbox/checkbox.component.d.ts +36 -0
- package/full/components/communication.service.d.ts +6 -0
- package/full/components/component-container/component-container.component.d.ts +5 -0
- package/full/components/content-toggle/content-toggle.component.d.ts +10 -0
- package/full/components/dropdown/dropdown.component.d.ts +68 -0
- package/full/components/empty/empty.component.d.ts +2 -0
- package/full/components/file/file.component.d.ts +14 -0
- package/full/components/header/header.component.d.ts +7 -0
- package/full/components/inline-message/inline-message.component.d.ts +4 -0
- package/full/components/input-text/input-text.component.d.ts +44 -0
- package/full/components/inspark.module.d.ts +2 -0
- package/full/components/inspark.shared.d.ts +8 -0
- package/full/components/link/link.component.d.ts +43 -0
- package/full/components/modal-input-text/modal-input-text.component.d.ts +32 -0
- package/full/components/object-tree/object-tree.component.d.ts +5 -0
- package/full/components/panel/panel.component.d.ts +2 -0
- package/full/components/preloader/preloader.component.d.ts +10 -0
- package/full/components/primeng.module.d.ts +2 -0
- package/full/components/radiobutton/radiobutton.component.d.ts +17 -0
- package/full/components/select-button/select-button.component.d.ts +55 -0
- package/full/components/select-list/select-list.component.d.ts +25 -0
- package/full/components/status-circle/status-circle.component.d.ts +10 -0
- package/full/components/sticky/sticky.component.d.ts +20 -0
- package/full/components/svg/svg.component.d.ts +9 -0
- package/full/components/switcher/switcher.component.d.ts +45 -0
- package/full/components/table/table-click-outside.directive.d.ts +7 -0
- package/full/components/table/table-columns-multiselect/table-columns-multiselect.component.d.ts +17 -0
- package/full/components/table/table-menu-overlay/table-menu-overlay.component.d.ts +9 -0
- package/full/components/table/table.component.d.ts +95 -0
- package/full/components/textarea/textarea.component.d.ts +32 -0
- package/full/components/toolbar/toolbar.component.d.ts +14 -0
- package/full/components/tooltip/tooltip.component.d.ts +5 -0
- package/full/components/tree-table/tree-table.component.d.ts +65 -0
- package/full/esm2015/components/breadcrumb/breadcrumb.component.js +23 -0
- package/full/esm2015/components/button/button.component.js +209 -0
- package/full/esm2015/components/checkbox/checkbox.component.js +104 -0
- package/full/esm2015/components/communication.service.js +24 -0
- package/full/esm2015/components/component-container/component-container.component.js +20 -0
- package/full/esm2015/components/content-toggle/content-toggle.component.js +44 -0
- package/full/esm2015/components/dropdown/dropdown.component.js +346 -0
- package/full/esm2015/components/empty/empty.component.js +13 -0
- package/full/esm2015/components/file/file.component.js +65 -0
- package/full/esm2015/components/header/header.component.js +30 -0
- package/full/esm2015/components/inline-message/inline-message.component.js +25 -0
- package/full/esm2015/components/input-text/input-text.component.js +157 -0
- package/full/esm2015/components/inspark.module.js +128 -0
- package/full/esm2015/components/inspark.shared.js +30 -0
- package/full/esm2015/components/link/link.component.js +164 -0
- package/full/esm2015/components/modal-input-text/modal-input-text.component.js +94 -0
- package/full/esm2015/components/object-tree/object-tree.component.js +18 -0
- package/full/esm2015/components/panel/panel.component.js +13 -0
- package/full/esm2015/components/preloader/preloader.component.js +34 -0
- package/full/esm2015/components/primeng.module.js +19 -0
- package/full/esm2015/components/radiobutton/radiobutton.component.js +75 -0
- package/full/esm2015/components/select-button/select-button.component.js +176 -0
- package/full/esm2015/components/select-list/select-list.component.js +60 -0
- package/full/esm2015/components/status-circle/status-circle.component.js +51 -0
- package/full/esm2015/components/sticky/sticky.component.js +82 -0
- package/full/esm2015/components/svg/svg.component.js +36 -0
- package/full/esm2015/components/switcher/switcher.component.js +148 -0
- package/full/esm2015/components/table/table-click-outside.directive.js +38 -0
- package/full/esm2015/components/table/table-columns-multiselect/table-columns-multiselect.component.js +37 -0
- package/full/esm2015/components/table/table-menu-overlay/table-menu-overlay.component.js +35 -0
- package/full/esm2015/components/table/table.component.js +426 -0
- package/full/esm2015/components/textarea/textarea.component.js +101 -0
- package/full/esm2015/components/toolbar/toolbar.component.js +40 -0
- package/full/esm2015/components/tooltip/tooltip.component.js +18 -0
- package/full/esm2015/components/tree-table/tree-table.component.js +255 -0
- package/full/esm2015/inspark-inspark-components.js +16 -0
- package/full/esm2015/interface.js +1 -0
- package/full/esm2015/pipes/pipes.module.js +16 -0
- package/full/esm2015/pipes/propertyValue.pipe.js +23 -0
- package/full/esm2015/pipes/safeUrl.pipe.js +37 -0
- package/full/esm2015/pipes/sort-by.pipe.js +26 -0
- package/full/esm2015/pipes/time.pipe.js +201 -0
- package/full/esm2015/public_api.js +43 -0
- package/full/esm2015/services/inspark-message.service.js +73 -0
- package/full/esm2015/utils/gettextMarker.function.js +5 -0
- package/full/esm2015/utils/hybrid/prime-table/row-state.enum.js +9 -0
- package/full/esm2015/utils/hybrid/prime-table/table-row-data.model.js +1 -0
- package/full/esm5/components/breadcrumb/breadcrumb.component.js +24 -0
- package/full/esm5/components/button/button.component.js +212 -0
- package/full/esm5/components/checkbox/checkbox.component.js +106 -0
- package/full/esm5/components/communication.service.js +25 -0
- package/full/esm5/components/component-container/component-container.component.js +21 -0
- package/full/esm5/components/content-toggle/content-toggle.component.js +45 -0
- package/full/esm5/components/dropdown/dropdown.component.js +351 -0
- package/full/esm5/components/empty/empty.component.js +16 -0
- package/full/esm5/components/file/file.component.js +66 -0
- package/full/esm5/components/header/header.component.js +31 -0
- package/full/esm5/components/inline-message/inline-message.component.js +26 -0
- package/full/esm5/components/input-text/input-text.component.js +159 -0
- package/full/esm5/components/inspark.module.js +131 -0
- package/full/esm5/components/inspark.shared.js +31 -0
- package/full/esm5/components/link/link.component.js +165 -0
- package/full/esm5/components/modal-input-text/modal-input-text.component.js +98 -0
- package/full/esm5/components/object-tree/object-tree.component.js +20 -0
- package/full/esm5/components/panel/panel.component.js +16 -0
- package/full/esm5/components/preloader/preloader.component.js +35 -0
- package/full/esm5/components/primeng.module.js +22 -0
- package/full/esm5/components/radiobutton/radiobutton.component.js +76 -0
- package/full/esm5/components/select-button/select-button.component.js +179 -0
- package/full/esm5/components/select-list/select-list.component.js +62 -0
- package/full/esm5/components/status-circle/status-circle.component.js +52 -0
- package/full/esm5/components/sticky/sticky.component.js +84 -0
- package/full/esm5/components/svg/svg.component.js +39 -0
- package/full/esm5/components/switcher/switcher.component.js +150 -0
- package/full/esm5/components/table/table-click-outside.directive.js +39 -0
- package/full/esm5/components/table/table-columns-multiselect/table-columns-multiselect.component.js +38 -0
- package/full/esm5/components/table/table-menu-overlay/table-menu-overlay.component.js +36 -0
- package/full/esm5/components/table/table.component.js +446 -0
- package/full/esm5/components/textarea/textarea.component.js +103 -0
- package/full/esm5/components/toolbar/toolbar.component.js +41 -0
- package/full/esm5/components/tooltip/tooltip.component.js +20 -0
- package/full/esm5/components/tree-table/tree-table.component.js +280 -0
- package/full/esm5/inspark-inspark-components.js +16 -0
- package/full/esm5/interface.js +1 -0
- package/full/esm5/pipes/pipes.module.js +19 -0
- package/full/esm5/pipes/propertyValue.pipe.js +26 -0
- package/full/esm5/pipes/safeUrl.pipe.js +38 -0
- package/full/esm5/pipes/sort-by.pipe.js +29 -0
- package/full/esm5/pipes/time.pipe.js +212 -0
- package/full/esm5/public_api.js +43 -0
- package/full/esm5/services/inspark-message.service.js +78 -0
- package/full/esm5/utils/gettextMarker.function.js +5 -0
- package/full/esm5/utils/hybrid/prime-table/row-state.enum.js +9 -0
- package/full/esm5/utils/hybrid/prime-table/table-row-data.model.js +1 -0
- package/full/fesm2015/inspark-inspark-components.js +3331 -0
- package/full/fesm2015/inspark-inspark-components.js.map +1 -0
- package/full/fesm5/inspark-inspark-components.js +3464 -0
- package/full/fesm5/inspark-inspark-components.js.map +1 -0
- package/full/fonts/primeicons.eot +0 -0
- package/full/fonts/primeicons.svg +163 -0
- package/full/fonts/primeicons.ttf +0 -0
- package/full/fonts/primeicons.woff +0 -0
- package/full/index.css +4012 -0
- package/full/index.js +1 -0
- package/full/inspark-inspark-components.d.ts +15 -0
- package/full/inspark-inspark-components.metadata.json +1 -0
- package/full/interface.d.ts +25 -0
- package/full/package.json +26 -0
- package/full/pipes/pipes.module.d.ts +2 -0
- package/full/pipes/propertyValue.pipe.d.ts +4 -0
- package/full/pipes/safeUrl.pipe.d.ts +20 -0
- package/full/pipes/sort-by.pipe.d.ts +4 -0
- package/full/pipes/time.pipe.d.ts +25 -0
- package/full/public_api.d.ts +41 -0
- package/full/services/inspark-message.service.d.ts +18 -0
- package/full/utils/gettextMarker.function.d.ts +1 -0
- package/full/utils/hybrid/prime-table/row-state.enum.d.ts +7 -0
- package/full/utils/hybrid/prime-table/table-row-data.model.d.ts +6 -0
- package/interface/bundles/inspark-inspark-components.umd.js +11 -0
- package/interface/bundles/inspark-inspark-components.umd.js.map +1 -0
- package/interface/bundles/inspark-inspark-components.umd.min.js +2 -0
- package/interface/bundles/inspark-inspark-components.umd.min.js.map +1 -0
- package/interface/esm2015/inspark-inspark-components.js +4 -0
- package/interface/esm2015/interface.js +1 -0
- package/interface/esm2015/public_api.js +4 -0
- package/interface/esm5/inspark-inspark-components.js +4 -0
- package/interface/esm5/interface.js +1 -0
- package/interface/esm5/public_api.js +4 -0
- package/interface/fesm2015/inspark-inspark-components.js +4 -0
- package/interface/fesm2015/inspark-inspark-components.js.map +1 -0
- package/interface/fesm5/inspark-inspark-components.js +4 -0
- package/interface/fesm5/inspark-inspark-components.js.map +1 -0
- package/interface/inspark-inspark-components.d.ts +4 -0
- package/interface/inspark-inspark-components.metadata.json +1 -0
- package/interface/interface.d.ts +25 -0
- package/interface/package.json +26 -0
- package/interface/public_api.d.ts +1 -0
- package/package.json +26 -0
package/full/index.css
ADDED
|
@@ -0,0 +1,4012 @@
|
|
|
1
|
+
.ui-widget, .ui-widget * {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|
|
4
|
+
.ui-helper-hidden {
|
|
5
|
+
display: none !important;
|
|
6
|
+
}
|
|
7
|
+
.ui-helper-hidden-accessible {
|
|
8
|
+
border: 0;
|
|
9
|
+
clip: rect(0 0 0 0);
|
|
10
|
+
height: 1px;
|
|
11
|
+
margin: -1px;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
padding: 0;
|
|
14
|
+
position: absolute;
|
|
15
|
+
width: 1px;
|
|
16
|
+
}
|
|
17
|
+
.ui-helper-hidden-accessible input,
|
|
18
|
+
.ui-helper-hidden-accessible select {
|
|
19
|
+
transform: scale(0);
|
|
20
|
+
}
|
|
21
|
+
.ui-helper-reset {
|
|
22
|
+
margin: 0;
|
|
23
|
+
padding: 0;
|
|
24
|
+
border: 0;
|
|
25
|
+
outline: 0;
|
|
26
|
+
line-height: 1.3;
|
|
27
|
+
text-decoration: none;
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
list-style: none;
|
|
30
|
+
}
|
|
31
|
+
.ui-helper-clearfix::before,
|
|
32
|
+
.ui-helper-clearfix::after {
|
|
33
|
+
content: "";
|
|
34
|
+
display: table;
|
|
35
|
+
}
|
|
36
|
+
.ui-helper-clearfix::after {
|
|
37
|
+
clear: both;
|
|
38
|
+
}
|
|
39
|
+
.ui-helper-clearfix {
|
|
40
|
+
zoom: 1;
|
|
41
|
+
}
|
|
42
|
+
.ui-helper-zfix {
|
|
43
|
+
width: 100%;
|
|
44
|
+
height: 100%;
|
|
45
|
+
top: 0;
|
|
46
|
+
left: 0;
|
|
47
|
+
position: absolute;
|
|
48
|
+
opacity: 0;
|
|
49
|
+
filter: Alpha(Opacity=0);
|
|
50
|
+
}
|
|
51
|
+
.ui-state-disabled {
|
|
52
|
+
cursor: default !important;
|
|
53
|
+
}
|
|
54
|
+
.ui-state-disabled a {
|
|
55
|
+
cursor: default !important;
|
|
56
|
+
}
|
|
57
|
+
.ui-icon {
|
|
58
|
+
display: block;
|
|
59
|
+
text-indent: -99999px;
|
|
60
|
+
overflow: hidden;
|
|
61
|
+
background-repeat: no-repeat;
|
|
62
|
+
}
|
|
63
|
+
.ui-widget-overlay {
|
|
64
|
+
position: absolute;
|
|
65
|
+
top: 0;
|
|
66
|
+
left: 0;
|
|
67
|
+
width: 100%;
|
|
68
|
+
height: 100%;
|
|
69
|
+
}
|
|
70
|
+
.ui-resizable {
|
|
71
|
+
position: relative;
|
|
72
|
+
}
|
|
73
|
+
.ui-resizable-handle {
|
|
74
|
+
position: absolute;
|
|
75
|
+
font-size: 0.1px;
|
|
76
|
+
display: block;
|
|
77
|
+
}
|
|
78
|
+
.ui-resizable-disabled .ui-resizable-handle,
|
|
79
|
+
.ui-resizable-autohide .ui-resizable-handle {
|
|
80
|
+
display: none;
|
|
81
|
+
}
|
|
82
|
+
.ui-resizable-n {
|
|
83
|
+
cursor: n-resize;
|
|
84
|
+
height: 7px;
|
|
85
|
+
width: 100%;
|
|
86
|
+
top: -5px;
|
|
87
|
+
left: 0;
|
|
88
|
+
}
|
|
89
|
+
.ui-resizable-s {
|
|
90
|
+
cursor: s-resize;
|
|
91
|
+
height: 7px;
|
|
92
|
+
width: 100%;
|
|
93
|
+
bottom: -5px;
|
|
94
|
+
left: 0;
|
|
95
|
+
}
|
|
96
|
+
.ui-resizable-e {
|
|
97
|
+
cursor: e-resize;
|
|
98
|
+
width: 7px;
|
|
99
|
+
right: -5px;
|
|
100
|
+
top: 0;
|
|
101
|
+
height: 100%;
|
|
102
|
+
}
|
|
103
|
+
.ui-resizable-w {
|
|
104
|
+
cursor: w-resize;
|
|
105
|
+
width: 7px;
|
|
106
|
+
left: -5px;
|
|
107
|
+
top: 0;
|
|
108
|
+
height: 100%;
|
|
109
|
+
}
|
|
110
|
+
.ui-resizable-se {
|
|
111
|
+
cursor: se-resize;
|
|
112
|
+
width: 12px;
|
|
113
|
+
height: 12px;
|
|
114
|
+
right: 1px;
|
|
115
|
+
bottom: 1px;
|
|
116
|
+
}
|
|
117
|
+
.ui-resizable-sw {
|
|
118
|
+
cursor: sw-resize;
|
|
119
|
+
width: 9px;
|
|
120
|
+
height: 9px;
|
|
121
|
+
left: -5px;
|
|
122
|
+
bottom: -5px;
|
|
123
|
+
}
|
|
124
|
+
.ui-resizable-nw {
|
|
125
|
+
cursor: nw-resize;
|
|
126
|
+
width: 9px;
|
|
127
|
+
height: 9px;
|
|
128
|
+
left: -5px;
|
|
129
|
+
top: -5px;
|
|
130
|
+
}
|
|
131
|
+
.ui-resizable-ne {
|
|
132
|
+
cursor: ne-resize;
|
|
133
|
+
width: 9px;
|
|
134
|
+
height: 9px;
|
|
135
|
+
right: -5px;
|
|
136
|
+
top: -5px;
|
|
137
|
+
}
|
|
138
|
+
.ui-shadow {
|
|
139
|
+
-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
|
|
140
|
+
-moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
|
|
141
|
+
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
|
|
142
|
+
}
|
|
143
|
+
.ui-unselectable-text {
|
|
144
|
+
-webkit-user-select: none;
|
|
145
|
+
-khtml-user-select: none;
|
|
146
|
+
-moz-user-select: none;
|
|
147
|
+
-o-user-select: none;
|
|
148
|
+
user-select: none;
|
|
149
|
+
}
|
|
150
|
+
.ui-scrollbar-measure {
|
|
151
|
+
width: 100px;
|
|
152
|
+
height: 100px;
|
|
153
|
+
overflow: scroll;
|
|
154
|
+
position: absolute;
|
|
155
|
+
top: -9999px;
|
|
156
|
+
}
|
|
157
|
+
.ui-overflow-hidden {
|
|
158
|
+
overflow: hidden;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
|
|
162
|
+
color: #898989;
|
|
163
|
+
}
|
|
164
|
+
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
|
|
165
|
+
color: #898989;
|
|
166
|
+
opacity: 1;
|
|
167
|
+
}
|
|
168
|
+
::-moz-placeholder { /* Mozilla Firefox 19+ */
|
|
169
|
+
color: #898989;
|
|
170
|
+
opacity: 1;
|
|
171
|
+
}
|
|
172
|
+
:-ms-input-placeholder { /* Internet Explorer 10-11 */
|
|
173
|
+
color: #898989;
|
|
174
|
+
}
|
|
175
|
+
::-ms-input-placeholder { /* Microsoft Edge */
|
|
176
|
+
color: #898989;
|
|
177
|
+
}
|
|
178
|
+
.ui-placeholder {
|
|
179
|
+
color: #898989;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
input[type="button"],
|
|
183
|
+
input[type="submit"],
|
|
184
|
+
input[type="reset"],
|
|
185
|
+
input[type="file"]::-webkit-file-upload-button,
|
|
186
|
+
button {
|
|
187
|
+
-moz-border-radius: 0;
|
|
188
|
+
-webkit-border-radius: 0;
|
|
189
|
+
border-radius: 0;
|
|
190
|
+
}
|
|
191
|
+
/* Deprecated Grid CSS */
|
|
192
|
+
.ui-grid {
|
|
193
|
+
clear: both;
|
|
194
|
+
padding: 0;
|
|
195
|
+
margin: 0;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.ui-grid::before,
|
|
199
|
+
.ui-grid::after {
|
|
200
|
+
content:"";
|
|
201
|
+
display:table;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.ui-grid::after {
|
|
205
|
+
clear:both;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.ui-grid .ui-grid-row {
|
|
209
|
+
display: -webkit-box;
|
|
210
|
+
display: -moz-box;
|
|
211
|
+
display: -ms-flexbox;
|
|
212
|
+
display: -webkit-flex;
|
|
213
|
+
display: flex;
|
|
214
|
+
clear:both;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.ui-grid-row::after {
|
|
218
|
+
clear: both;
|
|
219
|
+
content: "";
|
|
220
|
+
display: table;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.ui-grid-col-1,
|
|
224
|
+
.ui-grid-col-2,
|
|
225
|
+
.ui-grid-col-3,
|
|
226
|
+
.ui-grid-col-4,
|
|
227
|
+
.ui-grid-col-5,
|
|
228
|
+
.ui-grid-col-6,
|
|
229
|
+
.ui-grid-col-7,
|
|
230
|
+
.ui-grid-col-8,
|
|
231
|
+
.ui-grid-col-9,
|
|
232
|
+
.ui-grid-col-10,
|
|
233
|
+
.ui-grid-col-11,
|
|
234
|
+
.ui-grid-col-12 {
|
|
235
|
+
float: left;
|
|
236
|
+
box-sizing: border-box;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.ui-grid-col-1 {
|
|
240
|
+
width: 8.33333%;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.ui-grid-col-2 {
|
|
244
|
+
width: 16.66666%;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.ui-grid-col-3 {
|
|
248
|
+
width: 25%;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.ui-grid-col-4 {
|
|
252
|
+
width: 33.33333%;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.ui-grid-col-5 {
|
|
256
|
+
width: 41.66666%;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.ui-grid-col-6 {
|
|
260
|
+
width: 50%;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.ui-grid-col-7 {
|
|
264
|
+
width: 58.33333%;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.ui-grid-col-8 {
|
|
268
|
+
width: 66.66666%;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.ui-grid-col-9 {
|
|
272
|
+
width: 75%;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.ui-grid-col-10 {
|
|
276
|
+
width: 83.33333%;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.ui-grid-col-11 {
|
|
280
|
+
width: 91.66666%;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.ui-grid-col-12 {
|
|
284
|
+
width: 100%;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
@media (min-width: 480px) {
|
|
288
|
+
.ui-grid-fixed {
|
|
289
|
+
width: 480px;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
@media (min-width: 768px) {
|
|
294
|
+
.ui-grid-fixed {
|
|
295
|
+
width: 768px;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
@media (min-width: 960px) {
|
|
300
|
+
.ui-grid-fixed {
|
|
301
|
+
width: 960px;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
@media (min-width: 1024px) {
|
|
306
|
+
.ui-grid-fixed {
|
|
307
|
+
width: 1024px;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
/* Responsive */
|
|
312
|
+
@media (max-width: 640px) {
|
|
313
|
+
.ui-grid-responsive .ui-grid-row {
|
|
314
|
+
display: block;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.ui-grid-responsive .ui-grid-col-1,
|
|
318
|
+
.ui-grid-responsive .ui-grid-col-2,
|
|
319
|
+
.ui-grid-responsive .ui-grid-col-3,
|
|
320
|
+
.ui-grid-responsive .ui-grid-col-4,
|
|
321
|
+
.ui-grid-responsive .ui-grid-col-5,
|
|
322
|
+
.ui-grid-responsive .ui-grid-col-6,
|
|
323
|
+
.ui-grid-responsive .ui-grid-col-7,
|
|
324
|
+
.ui-grid-responsive .ui-grid-col-8,
|
|
325
|
+
.ui-grid-responsive .ui-grid-col-9,
|
|
326
|
+
.ui-grid-responsive .ui-grid-col-10,
|
|
327
|
+
.ui-grid-responsive .ui-grid-col-11,
|
|
328
|
+
.ui-grid-responsive .ui-grid-col-12 {
|
|
329
|
+
width: 100%;
|
|
330
|
+
float: none;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.ui-grid.ui-grid-pad > .ui-grid-row > div {
|
|
335
|
+
padding: .25em .5em;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/* Responsive */
|
|
339
|
+
@media (max-width: 640px) {
|
|
340
|
+
.ui-grid-responsive .ui-grid-row {
|
|
341
|
+
display: block;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.ui-grid-responsive .ui-grid-col-1,
|
|
345
|
+
.ui-grid-responsive .ui-grid-col-2,
|
|
346
|
+
.ui-grid-responsive .ui-grid-col-3,
|
|
347
|
+
.ui-grid-responsive .ui-grid-col-4,
|
|
348
|
+
.ui-grid-responsive .ui-grid-col-5,
|
|
349
|
+
.ui-grid-responsive .ui-grid-col-6,
|
|
350
|
+
.ui-grid-responsive .ui-grid-col-7,
|
|
351
|
+
.ui-grid-responsive .ui-grid-col-8,
|
|
352
|
+
.ui-grid-responsive .ui-grid-col-9,
|
|
353
|
+
.ui-grid-responsive .ui-grid-col-10,
|
|
354
|
+
.ui-grid-responsive .ui-grid-col-11,
|
|
355
|
+
.ui-grid-responsive .ui-grid-col-12 {
|
|
356
|
+
width: 100%;
|
|
357
|
+
float: none;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/* New Grid CSS */
|
|
362
|
+
.ui-g {
|
|
363
|
+
display: -webkit-box;
|
|
364
|
+
display: -moz-box;
|
|
365
|
+
display: -ms-flexbox;
|
|
366
|
+
display: -webkit-flex;
|
|
367
|
+
display: flex;
|
|
368
|
+
flex-wrap: wrap;
|
|
369
|
+
box-sizing: border-box;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.ui-g::after {
|
|
373
|
+
clear: both;
|
|
374
|
+
content: "";
|
|
375
|
+
display: table;
|
|
376
|
+
box-sizing: border-box;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.ui-g-1,
|
|
380
|
+
.ui-g-2,
|
|
381
|
+
.ui-g-3,
|
|
382
|
+
.ui-g-4,
|
|
383
|
+
.ui-g-5,
|
|
384
|
+
.ui-g-6,
|
|
385
|
+
.ui-g-7,
|
|
386
|
+
.ui-g-8,
|
|
387
|
+
.ui-g-9,
|
|
388
|
+
.ui-g-10,
|
|
389
|
+
.ui-g-11,
|
|
390
|
+
.ui-g-12 {
|
|
391
|
+
float: left;
|
|
392
|
+
box-sizing: border-box;
|
|
393
|
+
padding: 0.5em;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.ui-g-1 {
|
|
397
|
+
width: 8.3333%;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.ui-g-2 {
|
|
401
|
+
width: 16.6667%;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.ui-g-3 {
|
|
405
|
+
width: 25%;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.ui-g-4 {
|
|
409
|
+
width: 33.3333%;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.ui-g-5 {
|
|
413
|
+
width: 41.6667%;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.ui-g-6 {
|
|
417
|
+
width: 50%;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.ui-g-7 {
|
|
421
|
+
width: 58.3333%;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.ui-g-8 {
|
|
425
|
+
width: 66.6667%;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.ui-g-9 {
|
|
429
|
+
width: 75%;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.ui-g-10 {
|
|
433
|
+
width: 83.3333%;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.ui-g-11 {
|
|
437
|
+
width: 91.6667%;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.ui-g-12 {
|
|
441
|
+
width: 100%;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.ui-g-offset-12 {
|
|
445
|
+
margin-left: 100%;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.ui-g-offset-11 {
|
|
449
|
+
margin-left: 91.66666667%;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.ui-g-offset-10 {
|
|
453
|
+
margin-left: 83.33333333%;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.ui-g-offset-9 {
|
|
457
|
+
margin-left: 75%;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.ui-g-offset-8 {
|
|
461
|
+
margin-left: 66.66666667%;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.ui-g-offset-7 {
|
|
465
|
+
margin-left: 58.33333333%;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.ui-g-offset-6 {
|
|
469
|
+
margin-left: 50%;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.ui-g-offset-5 {
|
|
473
|
+
margin-left: 41.66666667%;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.ui-g-offset-4 {
|
|
477
|
+
margin-left: 33.33333333%;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.ui-g-offset-3 {
|
|
481
|
+
margin-left: 25%;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.ui-g-offset-2 {
|
|
485
|
+
margin-left: 16.66666667%;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.ui-g-offset-1 {
|
|
489
|
+
margin-left: 8.33333333%;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.ui-g-offset-0 {
|
|
493
|
+
margin-left: 0%;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
@media screen and (max-width: 40em) {
|
|
497
|
+
.ui-sm-1,
|
|
498
|
+
.ui-sm-2,
|
|
499
|
+
.ui-sm-3,
|
|
500
|
+
.ui-sm-4,
|
|
501
|
+
.ui-sm-5,
|
|
502
|
+
.ui-sm-6,
|
|
503
|
+
.ui-sm-7,
|
|
504
|
+
.ui-sm-8,
|
|
505
|
+
.ui-sm-9,
|
|
506
|
+
.ui-sm-10,
|
|
507
|
+
.ui-sm-11,
|
|
508
|
+
.ui-sm-12 {
|
|
509
|
+
padding: 0.5em;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.ui-sm-1 {
|
|
513
|
+
width: 8.3333%;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.ui-sm-2 {
|
|
517
|
+
width: 16.6667%;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.ui-sm-3 {
|
|
521
|
+
width: 25%;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.ui-sm-4 {
|
|
525
|
+
width: 33.3333%;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.ui-sm-5 {
|
|
529
|
+
width: 41.6667%;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.ui-sm-6 {
|
|
533
|
+
width: 50%;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.ui-sm-7 {
|
|
537
|
+
width: 58.3333%;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.ui-sm-8 {
|
|
541
|
+
width: 66.6667%;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.ui-sm-9 {
|
|
545
|
+
width: 75%;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.ui-sm-10 {
|
|
549
|
+
width: 83.3333%;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.ui-sm-11 {
|
|
553
|
+
width: 91.6667%;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.ui-sm-12 {
|
|
557
|
+
width: 100%;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.ui-sm-offset-12 {
|
|
561
|
+
margin-left: 100%;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.ui-sm-offset-11 {
|
|
565
|
+
margin-left: 91.66666667%;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.ui-sm-offset-10 {
|
|
569
|
+
margin-left: 83.33333333%;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.ui-sm-offset-9 {
|
|
573
|
+
margin-left: 75%;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.ui-sm-offset-8 {
|
|
577
|
+
margin-left: 66.66666667%;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.ui-sm-offset-7 {
|
|
581
|
+
margin-left: 58.33333333%;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.ui-sm-offset-6 {
|
|
585
|
+
margin-left: 50%;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.ui-sm-offset-5 {
|
|
589
|
+
margin-left: 41.66666667%;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.ui-sm-offset-4 {
|
|
593
|
+
margin-left: 33.33333333%;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.ui-sm-offset-3 {
|
|
597
|
+
margin-left: 25%;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.ui-sm-offset-2 {
|
|
601
|
+
margin-left: 16.66666667%;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.ui-sm-offset-1 {
|
|
605
|
+
margin-left: 8.33333333%;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.ui-sm-offset-0 {
|
|
609
|
+
margin-left: 0%;
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
@media screen and (min-width: 40.063em) {
|
|
614
|
+
.ui-md-1,
|
|
615
|
+
.ui-md-2,
|
|
616
|
+
.ui-md-3,
|
|
617
|
+
.ui-md-4,
|
|
618
|
+
.ui-md-5,
|
|
619
|
+
.ui-md-6,
|
|
620
|
+
.ui-md-7,
|
|
621
|
+
.ui-md-8,
|
|
622
|
+
.ui-md-9,
|
|
623
|
+
.ui-md-10,
|
|
624
|
+
.ui-md-11,
|
|
625
|
+
.ui-md-12 {
|
|
626
|
+
padding: 0.5em;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.ui-md-1 {
|
|
630
|
+
width: 8.3333%;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.ui-md-2 {
|
|
634
|
+
width: 16.6667%;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.ui-md-3 {
|
|
638
|
+
width: 25%;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.ui-md-4 {
|
|
642
|
+
width: 33.3333%;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.ui-md-5 {
|
|
646
|
+
width: 41.6667%;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.ui-md-6 {
|
|
650
|
+
width: 50%;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.ui-md-7 {
|
|
654
|
+
width: 58.3333%;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.ui-md-8 {
|
|
658
|
+
width: 66.6667%;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.ui-md-9 {
|
|
662
|
+
width: 75%;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.ui-md-10 {
|
|
666
|
+
width: 83.3333%;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.ui-md-11 {
|
|
670
|
+
width: 91.6667%;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.ui-md-12 {
|
|
674
|
+
width: 100%;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.ui-md-offset-12 {
|
|
678
|
+
margin-left: 100%;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.ui-md-offset-11 {
|
|
682
|
+
margin-left: 91.66666667%;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.ui-md-offset-10 {
|
|
686
|
+
margin-left: 83.33333333%;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.ui-md-offset-9 {
|
|
690
|
+
margin-left: 75%;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.ui-md-offset-8 {
|
|
694
|
+
margin-left: 66.66666667%;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.ui-md-offset-7 {
|
|
698
|
+
margin-left: 58.33333333%;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.ui-md-offset-6 {
|
|
702
|
+
margin-left: 50%;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.ui-md-offset-5 {
|
|
706
|
+
margin-left: 41.66666667%;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.ui-md-offset-4 {
|
|
710
|
+
margin-left: 33.33333333%;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.ui-md-offset-3 {
|
|
714
|
+
margin-left: 25%;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.ui-md-offset-2 {
|
|
718
|
+
margin-left: 16.66666667%;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.ui-md-offset-1 {
|
|
722
|
+
margin-left: 8.33333333%;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.ui-md-offset-0 {
|
|
726
|
+
margin-left: 0%;
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
@media screen and (min-width: 64.063em) {
|
|
731
|
+
.ui-lg-1,
|
|
732
|
+
.ui-lg-2,
|
|
733
|
+
.ui-lg-3,
|
|
734
|
+
.ui-lg-4,
|
|
735
|
+
.ui-lg-5,
|
|
736
|
+
.ui-lg-6,
|
|
737
|
+
.ui-lg-7,
|
|
738
|
+
.ui-lg-8,
|
|
739
|
+
.ui-lg-9,
|
|
740
|
+
.ui-lg-10,
|
|
741
|
+
.ui-lg-11,
|
|
742
|
+
.ui-lg-12 {
|
|
743
|
+
padding: 0.5em;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.ui-lg-1 {
|
|
747
|
+
width: 8.3333%;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.ui-lg-2 {
|
|
751
|
+
width: 16.6667%;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.ui-lg-3 {
|
|
755
|
+
width: 25%;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.ui-lg-4 {
|
|
759
|
+
width: 33.3333%;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
.ui-lg-5 {
|
|
763
|
+
width: 41.6667%;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.ui-lg-6 {
|
|
767
|
+
width: 50%;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.ui-lg-7 {
|
|
771
|
+
width: 58.3333%;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.ui-lg-8 {
|
|
775
|
+
width: 66.6667%;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
.ui-lg-9 {
|
|
779
|
+
width: 75%;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.ui-lg-10 {
|
|
783
|
+
width: 83.3333%;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.ui-lg-11 {
|
|
787
|
+
width: 91.6667%;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.ui-lg-12 {
|
|
791
|
+
width: 100%;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.ui-lg-offset-12 {
|
|
795
|
+
margin-left: 100%;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.ui-lg-offset-11 {
|
|
799
|
+
margin-left: 91.66666667%;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.ui-lg-offset-10 {
|
|
803
|
+
margin-left: 83.33333333%;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.ui-lg-offset-9 {
|
|
807
|
+
margin-left: 75%;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.ui-lg-offset-8 {
|
|
811
|
+
margin-left: 66.66666667%;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.ui-lg-offset-7 {
|
|
815
|
+
margin-left: 58.33333333%;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.ui-lg-offset-6 {
|
|
819
|
+
margin-left: 50%;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.ui-lg-offset-5 {
|
|
823
|
+
margin-left: 41.66666667%;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.ui-lg-offset-4 {
|
|
827
|
+
margin-left: 33.33333333%;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.ui-lg-offset-3 {
|
|
831
|
+
margin-left: 25%;
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
.ui-lg-offset-2 {
|
|
835
|
+
margin-left: 16.66666667%;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
.ui-lg-offset-1 {
|
|
839
|
+
margin-left: 8.33333333%;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.ui-lg-offset-0 {
|
|
843
|
+
margin-left: 0%;
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
@media screen and (min-width: 90.063em) {
|
|
848
|
+
.ui-xl-1,
|
|
849
|
+
.ui-xl-2,
|
|
850
|
+
.ui-xl-3,
|
|
851
|
+
.ui-xl-4,
|
|
852
|
+
.ui-xl-5,
|
|
853
|
+
.ui-xl-6,
|
|
854
|
+
.ui-xl-7,
|
|
855
|
+
.ui-xl-8,
|
|
856
|
+
.ui-xl-9,
|
|
857
|
+
.ui-xl-10,
|
|
858
|
+
.ui-xl-11,
|
|
859
|
+
.ui-xl-12 {
|
|
860
|
+
padding: 0.5em;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.ui-xl-1 {
|
|
864
|
+
width: 8.3333%;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.ui-xl-2 {
|
|
868
|
+
width: 16.6667%;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.ui-xl-3 {
|
|
872
|
+
width: 25%;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.ui-xl-4 {
|
|
876
|
+
width: 33.3333%;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.ui-xl-5 {
|
|
880
|
+
width: 41.6667%;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.ui-xl-6 {
|
|
884
|
+
width: 50%;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.ui-xl-7 {
|
|
888
|
+
width: 58.3333%;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.ui-xl-8 {
|
|
892
|
+
width: 66.6667%;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.ui-xl-9 {
|
|
896
|
+
width: 75%;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.ui-xl-10 {
|
|
900
|
+
width: 83.3333%;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.ui-xl-11 {
|
|
904
|
+
width: 91.6667%;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.ui-xl-12 {
|
|
908
|
+
width: 100%;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.ui-xl-offset-12 {
|
|
912
|
+
margin-left: 100%;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.ui-xl-offset-11 {
|
|
916
|
+
margin-left: 91.66666667%;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.ui-xl-offset-10 {
|
|
920
|
+
margin-left: 83.33333333%;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
.ui-xl-offset-9 {
|
|
924
|
+
margin-left: 75%;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.ui-xl-offset-8 {
|
|
928
|
+
margin-left: 66.66666667%;
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.ui-xl-offset-7 {
|
|
932
|
+
margin-left: 58.33333333%;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.ui-xl-offset-6 {
|
|
936
|
+
margin-left: 50%;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.ui-xl-offset-5 {
|
|
940
|
+
margin-left: 41.66666667%;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.ui-xl-offset-4 {
|
|
944
|
+
margin-left: 33.33333333%;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.ui-xl-offset-3 {
|
|
948
|
+
margin-left: 25%;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.ui-xl-offset-2 {
|
|
952
|
+
margin-left: 16.66666667%;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.ui-xl-offset-1 {
|
|
956
|
+
margin-left: 8.33333333%;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.ui-xl-offset-0 {
|
|
960
|
+
margin-left: 0%;
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.ui-g-nopad {
|
|
965
|
+
padding: 0;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
/* Button */
|
|
969
|
+
.ui-button {
|
|
970
|
+
display: inline-block;
|
|
971
|
+
position: relative;
|
|
972
|
+
padding: 0;
|
|
973
|
+
text-decoration: none !important;
|
|
974
|
+
cursor: pointer;
|
|
975
|
+
text-align: center;
|
|
976
|
+
zoom: 1;
|
|
977
|
+
overflow: visible; /* the overflow property removes extra width in IE */
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
p-button {
|
|
981
|
+
display: inline-block;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
/*button text element */
|
|
985
|
+
.ui-button .ui-button-text {
|
|
986
|
+
display: block;
|
|
987
|
+
line-height: normal;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.ui-button-text-only .ui-button-text {
|
|
991
|
+
padding: .25em 1em;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.ui-button-icon-only .ui-button-text,
|
|
995
|
+
.ui-button-text-empty .ui-button-text {
|
|
996
|
+
padding: .25em;
|
|
997
|
+
text-indent: -9999999px;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.ui-button-text-icon-left .ui-button-text {
|
|
1001
|
+
padding: .25em 1em .25em 2.1em;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.ui-button-text-icon-right .ui-button-text {
|
|
1005
|
+
padding: .25em 2.1em .25em 1em;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
/*button icon element(s) */
|
|
1009
|
+
.ui-button-icon-only .ui-button-icon-left,
|
|
1010
|
+
.ui-button-text-icon-left .ui-button-icon-left,
|
|
1011
|
+
.ui-button-text-icon-right .ui-button-icon-right {
|
|
1012
|
+
position: absolute;
|
|
1013
|
+
top: 50%;
|
|
1014
|
+
margin-top: -.5em;
|
|
1015
|
+
height: 1em;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.ui-button-icon-only .ui-button-icon-left {
|
|
1019
|
+
top: 50%;
|
|
1020
|
+
left: 50%;
|
|
1021
|
+
margin-top: -.5em;
|
|
1022
|
+
margin-left: -.5em;
|
|
1023
|
+
width: 1em;
|
|
1024
|
+
height: 1em;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.ui-button-icon-left {
|
|
1028
|
+
left: .5em;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.ui-button-icon-right {
|
|
1032
|
+
right: .5em;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
/*button sets*/
|
|
1036
|
+
.ui-buttonset .ui-button {
|
|
1037
|
+
margin-left: 0;
|
|
1038
|
+
margin-right: 0;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
/* workarounds */
|
|
1042
|
+
button.ui-button::-moz-focus-inner {
|
|
1043
|
+
border: 0; padding: 0; /* reset extra padding in Firefox */
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
/** Fluid **/
|
|
1047
|
+
.ui-fluid .ui-button {
|
|
1048
|
+
width: 100%;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.ui-fluid .ui-button-text-icon-left .ui-button-text,
|
|
1052
|
+
.ui-fluid .ui-button-text-icon-right .ui-button-text {
|
|
1053
|
+
padding-left: 1em;
|
|
1054
|
+
padding-right: 1em;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
/** ButtonSet **/
|
|
1058
|
+
.ui-fluid .ui-buttonset {
|
|
1059
|
+
width: 100%;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.ui-fluid .ui-buttonset.ui-buttonset-1 .ui-button {width: 100%;}
|
|
1063
|
+
.ui-fluid .ui-buttonset.ui-buttonset-2 .ui-button {width: 50%;}
|
|
1064
|
+
.ui-fluid .ui-buttonset.ui-buttonset-3 .ui-button {width: 33.3%;}
|
|
1065
|
+
.ui-fluid .ui-buttonset.ui-buttonset-4 .ui-button {width: 25%;}
|
|
1066
|
+
.ui-fluid .ui-buttonset.ui-buttonset-5 .ui-button {width: 20%;}
|
|
1067
|
+
.ui-fluid .ui-buttonset.ui-buttonset-6 .ui-button {width: 16.6%;}
|
|
1068
|
+
|
|
1069
|
+
@media (max-width: 640px) {
|
|
1070
|
+
.ui-fluid .ui-buttonset.ui-buttonset-1 .ui-button,
|
|
1071
|
+
.ui-fluid .ui-buttonset.ui-buttonset-2 .ui-button,
|
|
1072
|
+
.ui-fluid .ui-buttonset.ui-buttonset-3 .ui-button,
|
|
1073
|
+
.ui-fluid .ui-buttonset.ui-buttonset-4 .ui-button,
|
|
1074
|
+
.ui-fluid .ui-buttonset.ui-buttonset-5 .ui-button,
|
|
1075
|
+
.ui-fluid .ui-buttonset.ui-buttonset-6 .ui-button {
|
|
1076
|
+
width: 100%;
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
.ui-selectbutton {
|
|
1080
|
+
display: inline-block;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.ui-selectbutton.ui-state-error {
|
|
1084
|
+
padding: 0;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.ui-selectbutton .ui-button.ui-state-focus {
|
|
1088
|
+
outline: none;
|
|
1089
|
+
}
|
|
1090
|
+
.ui-inputtext {
|
|
1091
|
+
margin: 0;
|
|
1092
|
+
outline: medium none;
|
|
1093
|
+
padding: .25em;
|
|
1094
|
+
font-weight: normal;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.ui-widget-header .ui-inputtext,
|
|
1098
|
+
.ui-widget-content .ui-inputtext {
|
|
1099
|
+
font-weight: normal;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.ui-fluid .ui-inputtext {
|
|
1103
|
+
width: 100%;
|
|
1104
|
+
box-sizing: border-box;
|
|
1105
|
+
-webkit-box-sizing:border-box;
|
|
1106
|
+
-moz-box-sizing: border-box;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.ui-inputgroup {
|
|
1110
|
+
display: -webkit-box;
|
|
1111
|
+
display: -webkit-flex;
|
|
1112
|
+
display: flex;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.ui-inputgroup .ui-inputgroup-addon {
|
|
1116
|
+
display: inline-block;
|
|
1117
|
+
text-align: center;
|
|
1118
|
+
min-width: 1.5em;
|
|
1119
|
+
padding: .25em;
|
|
1120
|
+
border-width: 1px;
|
|
1121
|
+
border-style: solid;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.ui-inputgroup .ui-inputgroup-addon + .ui-inputgroup-addon {
|
|
1125
|
+
border-left: 0 none;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.ui-inputgroup .ui-inputtext {
|
|
1129
|
+
padding-left: .5em;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.ui-inputgroup .ui-inputtext:not(:first-child) {
|
|
1133
|
+
border-top-left-radius: 0;
|
|
1134
|
+
border-bottom-left-radius: 0;
|
|
1135
|
+
border-left: 0 none;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.ui-inputgroup .ui-inputtext:not(:last-child) {
|
|
1139
|
+
border-top-right-radius: 0;
|
|
1140
|
+
border-bottom-right-radius: 0;
|
|
1141
|
+
border-right: 0 none;
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.ui-inputgroup .ui-button {
|
|
1145
|
+
margin-right: 0;
|
|
1146
|
+
border-radius: 0;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.ui-fluid .ui-inputgroup .ui-button {
|
|
1150
|
+
width: auto;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.ui-fluid .ui-inputgroup .ui-inputtext {
|
|
1154
|
+
-webkit-box-flex: 1;
|
|
1155
|
+
-webkit-flex: 1 1 auto;
|
|
1156
|
+
-ms-flex: 1 1 auto;
|
|
1157
|
+
flex: 1 1 auto;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.ui-inputgroup .ui-chkbox,
|
|
1161
|
+
.ui-inputgroup .ui-radiobutton {
|
|
1162
|
+
margin-right: 0;
|
|
1163
|
+
vertical-align: bottom;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
/* Floating Label */
|
|
1167
|
+
.ui-float-label {
|
|
1168
|
+
display: block;
|
|
1169
|
+
position:relative;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.ui-float-label > label {
|
|
1173
|
+
font-weight:normal;
|
|
1174
|
+
position:absolute;
|
|
1175
|
+
pointer-events:none;
|
|
1176
|
+
left: .25em;
|
|
1177
|
+
top: 50%;
|
|
1178
|
+
margin-top: -.5em;
|
|
1179
|
+
transition: 0.3s ease all;
|
|
1180
|
+
-moz-transition: 0.3s ease all;
|
|
1181
|
+
-webkit-transition: 0.3s ease all;
|
|
1182
|
+
color: #898989;
|
|
1183
|
+
line-height: 1;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
/* breaks firefox so defined separately */
|
|
1187
|
+
.ui-float-label > input:-webkit-autofill ~ label {
|
|
1188
|
+
top:-.75em;
|
|
1189
|
+
font-size:12px;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.ui-float-label > input:focus ~ label,
|
|
1193
|
+
.ui-float-label > input.ui-state-filled ~ label,
|
|
1194
|
+
.ui-float-label > .ui-inputwrapper-focus ~ label,
|
|
1195
|
+
.ui-float-label > .ui-inputwrapper-filled ~ label {
|
|
1196
|
+
top:-.75em;
|
|
1197
|
+
font-size:12px;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
.ui-fieldset,
|
|
1203
|
+
.ui-fieldset .ui-fieldset-legend {
|
|
1204
|
+
padding: 0.5em 1em;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.ui-fieldset-toggleable .ui-fieldset-legend {
|
|
1208
|
+
padding: 0;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
.ui-fieldset-toggleable .ui-fieldset-legend a {
|
|
1212
|
+
padding: 0.5em 1em;
|
|
1213
|
+
cursor:pointer;
|
|
1214
|
+
white-space: nowrap;
|
|
1215
|
+
display: block;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.ui-fieldset .ui-fieldset-toggler {
|
|
1219
|
+
margin-right: .1em;
|
|
1220
|
+
display: inline-block;
|
|
1221
|
+
vertical-align: middle;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.ui-fieldset .ui-fieldset-legend-text {
|
|
1225
|
+
vertical-align: middle;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.ui-fieldset .ui-fieldset-content-wrapper-overflown {
|
|
1229
|
+
overflow: hidden;
|
|
1230
|
+
}
|
|
1231
|
+
.ui-autocomplete {
|
|
1232
|
+
width: auto;
|
|
1233
|
+
zoom: 1;
|
|
1234
|
+
cursor: pointer;
|
|
1235
|
+
-moz-box-shadow: none;
|
|
1236
|
+
-webkit-box-shadow: none;
|
|
1237
|
+
box-shadow: none;
|
|
1238
|
+
position: relative;
|
|
1239
|
+
display: inline-block;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.ui-autocomplete .ui-autocomplete-dropdown {
|
|
1243
|
+
height: 100%;
|
|
1244
|
+
width: 2em;
|
|
1245
|
+
margin-right: 0;
|
|
1246
|
+
vertical-align: top;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.ui-autocomplete .ui-autocomplete-input {
|
|
1250
|
+
padding-right: 1.5em;
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
.ui-autocomplete-loader {
|
|
1254
|
+
position: absolute;
|
|
1255
|
+
right: .25em;
|
|
1256
|
+
top: 50%;
|
|
1257
|
+
margin-top: -.5em;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
.ui-autocomplete-query {
|
|
1261
|
+
font-weight: bold;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
.ui-autocomplete .ui-autocomplete-panel {
|
|
1265
|
+
min-width: 100%;
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
.ui-autocomplete-panel {
|
|
1269
|
+
position: absolute;
|
|
1270
|
+
overflow: auto;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
.ui-autocomplete-panel .ui-autocomplete-list {
|
|
1274
|
+
padding: 0.4em;
|
|
1275
|
+
border: 0 none;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.ui-autocomplete-panel .ui-autocomplete-list-item {
|
|
1279
|
+
border: 0 none;
|
|
1280
|
+
cursor: pointer;
|
|
1281
|
+
font-weight: normal;
|
|
1282
|
+
margin: 1px 0;
|
|
1283
|
+
padding: 0.186em 0.313em;
|
|
1284
|
+
text-align: left;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.ui-autocomplete .ui-button-icon-only,
|
|
1288
|
+
.ui-autocomplete .ui-button-icon-only:enabled:hover,
|
|
1289
|
+
.ui-autocomplete .ui-button-icon-only:enabled:focus,
|
|
1290
|
+
.ui-autocomplete .ui-button-icon-only:enabled:active {
|
|
1291
|
+
border-left: 0 none;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
/* Multiple Selection */
|
|
1295
|
+
.ui-autocomplete-multiple-container {
|
|
1296
|
+
display: inline-block;
|
|
1297
|
+
vertical-align: middle;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
.ui-autocomplete-multiple-container.ui-inputtext {
|
|
1301
|
+
clear: left;
|
|
1302
|
+
cursor: text;
|
|
1303
|
+
list-style-type: none;
|
|
1304
|
+
margin: 0;
|
|
1305
|
+
overflow: hidden;
|
|
1306
|
+
padding: 0 1.5em 0 .25em;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.ui-autocomplete-token {
|
|
1310
|
+
cursor: default;
|
|
1311
|
+
display: inline-block;
|
|
1312
|
+
vertical-align: middle;
|
|
1313
|
+
overflow: hidden;
|
|
1314
|
+
padding: .125em .5em;
|
|
1315
|
+
white-space: nowrap;
|
|
1316
|
+
position: relative;
|
|
1317
|
+
margin-right: .125em;
|
|
1318
|
+
border: 0 none;
|
|
1319
|
+
font-size: .9em;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
.ui-autocomplete-token-label {
|
|
1323
|
+
display: block;
|
|
1324
|
+
margin-right: 2em;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.ui-autocomplete-token-icon {
|
|
1328
|
+
margin-top: -.5em;
|
|
1329
|
+
position: absolute;
|
|
1330
|
+
right: 0.2em;
|
|
1331
|
+
top: 50%;
|
|
1332
|
+
cursor: pointer;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
.ui-autocomplete-input-token {
|
|
1336
|
+
display: inline-block;
|
|
1337
|
+
vertical-align: middle;
|
|
1338
|
+
list-style-type: none;
|
|
1339
|
+
margin: 0 0 0 .125em;
|
|
1340
|
+
padding: .25em .25em .25em 0;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
.ui-autocomplete-input-token input {
|
|
1344
|
+
border: 0 none;
|
|
1345
|
+
width: 10em;
|
|
1346
|
+
outline: medium none;
|
|
1347
|
+
background-color: transparent;
|
|
1348
|
+
margin: 0;
|
|
1349
|
+
padding: 0;
|
|
1350
|
+
box-shadow: none;
|
|
1351
|
+
-moz-border-radius: 0;
|
|
1352
|
+
-webkit-border-radius: 0;
|
|
1353
|
+
border-radius: 0;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.ui-autocomplete-dd .ui-autocomplete-loader {
|
|
1357
|
+
right: 2.25em;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.ui-autocomplete-dd input.ui-corner-all ,
|
|
1361
|
+
.ui-autocomplete-dd .ui-autocomplete-multiple-container.ui-corner-all {
|
|
1362
|
+
-moz-border-radius-topright: 0px;
|
|
1363
|
+
-webkit-border-top-right-radius: 0px;
|
|
1364
|
+
border-top-right-radius: 0px;
|
|
1365
|
+
-moz-border-radius-bottomright: 0px;
|
|
1366
|
+
-webkit-border-bottom-right-radius: 0px;
|
|
1367
|
+
border-bottom-right-radius: 0px;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
.ui-autocomplete-dd .ui-autocomplete-dropdown.ui-corner-all {
|
|
1371
|
+
-moz-border-radius-topleft: 0px;
|
|
1372
|
+
-webkit-border-top-left-radius: 0px;
|
|
1373
|
+
border-top-left-radius: 0px;
|
|
1374
|
+
-moz-border-radius-bottomleft: 0px;
|
|
1375
|
+
-webkit-border-bottom-left-radius: 0px;
|
|
1376
|
+
border-bottom-left-radius: 0px;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
/** AutoComplete **/
|
|
1380
|
+
.ui-fluid p-autocomplete,
|
|
1381
|
+
.ui-fluid .ui-autocomplete,
|
|
1382
|
+
.ui-fluid .ui-autocomplete-input {
|
|
1383
|
+
width: 100%;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.ui-fluid .ui-autocomplete.ui-autocomplete-dd .ui-autocomplete-input,
|
|
1387
|
+
.ui-fluid .ui-autocomplete.ui-autocomplete-dd .ui-autocomplete-multiple-container {
|
|
1388
|
+
width: calc(100% - 2em);
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
.ui-fluid .ui-autocomplete .ui-autocomplete-dropdown.ui-button {
|
|
1392
|
+
width: 2em;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
.ui-dropdown {
|
|
1396
|
+
display: inline-block;
|
|
1397
|
+
position: relative;
|
|
1398
|
+
cursor: pointer;
|
|
1399
|
+
vertical-align: middle;
|
|
1400
|
+
min-width: 12.5em;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.ui-dropdown .ui-dropdown-hidden-select {
|
|
1404
|
+
bottom: 0;
|
|
1405
|
+
clip: auto;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.ui-dropdown .ui-dropdown-hidden-select select {
|
|
1409
|
+
-webkit-transform: none;
|
|
1410
|
+
transform: none;
|
|
1411
|
+
height: 1px;
|
|
1412
|
+
position: absolute;
|
|
1413
|
+
top: 0;
|
|
1414
|
+
clip: rect(0px, 0px, 0px, 0px);
|
|
1415
|
+
pointer-events: none;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
.ui-dropdown .ui-dropdown-clear-icon {
|
|
1419
|
+
position: absolute;
|
|
1420
|
+
right: 2em;
|
|
1421
|
+
top: 50%;
|
|
1422
|
+
font-size: 1em;
|
|
1423
|
+
height: 1em;
|
|
1424
|
+
margin-top: -.5em;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.ui-dropdown .ui-dropdown-trigger {
|
|
1428
|
+
border-right: none;
|
|
1429
|
+
border-top: none;
|
|
1430
|
+
border-bottom: none;
|
|
1431
|
+
cursor: pointer;
|
|
1432
|
+
width: 1.5em;
|
|
1433
|
+
height: 100%;
|
|
1434
|
+
position: absolute;
|
|
1435
|
+
right: 0;
|
|
1436
|
+
top: 0;
|
|
1437
|
+
padding: 0 .25em;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.ui-dropdown .ui-dropdown-trigger .ui-dropdown-trigger-icon {
|
|
1441
|
+
top: 50%;
|
|
1442
|
+
left: 50%;
|
|
1443
|
+
margin-top: -.5em;
|
|
1444
|
+
margin-left: -.5em;
|
|
1445
|
+
position: absolute;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.ui-dropdown .ui-dropdown-label {
|
|
1449
|
+
display: block;
|
|
1450
|
+
border: none;
|
|
1451
|
+
white-space: nowrap;
|
|
1452
|
+
overflow: hidden;
|
|
1453
|
+
font-weight: normal;
|
|
1454
|
+
width: 100%;
|
|
1455
|
+
padding-right: 2.5em;
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
.ui-dropdown-item-empty,
|
|
1459
|
+
.ui-dropdown-label-empty {
|
|
1460
|
+
text-indent: -9999px;
|
|
1461
|
+
overflow: hidden;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
.ui-dropdown.ui-state-disabled .ui-dropdown-trigger,
|
|
1465
|
+
.ui-dropdown.ui-state-disabled .ui-dropdown-label {
|
|
1466
|
+
cursor: default;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.ui-dropdown label.ui-dropdown-label {
|
|
1470
|
+
cursor: pointer;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.ui-dropdown input.ui-dropdown-label {
|
|
1474
|
+
cursor: default;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.ui-dropdown .ui-dropdown-panel {
|
|
1478
|
+
min-width: 100%;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.ui-dropdown-panel {
|
|
1482
|
+
position: absolute;
|
|
1483
|
+
height: auto;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
.ui-dropdown-panel .ui-dropdown-items-wrapper {
|
|
1487
|
+
overflow: auto;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
.ui-dropdown-panel .ui-dropdown-item {
|
|
1491
|
+
font-weight: normal;
|
|
1492
|
+
border: 0 none;
|
|
1493
|
+
cursor: pointer;
|
|
1494
|
+
margin: 1px 0;
|
|
1495
|
+
padding: .125em .25em;
|
|
1496
|
+
text-align: left;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
.ui-dropdown-panel .ui-dropdown-empty-message {
|
|
1500
|
+
padding: .5em;
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
.ui-dropdown-panel .ui-dropdown-item-group {
|
|
1504
|
+
font-weight: bold;
|
|
1505
|
+
cursor: default;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
.ui-dropdown-panel .ui-dropdown-list {
|
|
1509
|
+
padding: 0.4em;
|
|
1510
|
+
border: 0 none;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.ui-dropdown-panel .ui-dropdown-filter {
|
|
1514
|
+
width: 100%;
|
|
1515
|
+
box-sizing: border-box;
|
|
1516
|
+
padding-right: 1.5em;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
.ui-dropdown-panel .ui-dropdown-filter-container {
|
|
1520
|
+
position: relative;
|
|
1521
|
+
margin: 0;
|
|
1522
|
+
padding: 0.4em;
|
|
1523
|
+
display: inline-block;
|
|
1524
|
+
width: 100%;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
.ui-dropdown-panel .ui-dropdown-filter-container .ui-dropdown-filter-icon {
|
|
1528
|
+
position: absolute;
|
|
1529
|
+
top: .8em;
|
|
1530
|
+
right: 1em;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
/** Dropdown **/
|
|
1534
|
+
.ui-fluid .ui-dropdown {
|
|
1535
|
+
width: 100%;
|
|
1536
|
+
min-width: 100%;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
.ui-multiselect {
|
|
1540
|
+
display: inline-block;
|
|
1541
|
+
position: relative;
|
|
1542
|
+
width: auto;
|
|
1543
|
+
cursor: pointer;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.ui-multiselect .ui-multiselect-trigger {
|
|
1547
|
+
border-right: none;
|
|
1548
|
+
border-top: none;
|
|
1549
|
+
border-bottom: none;
|
|
1550
|
+
cursor: pointer;
|
|
1551
|
+
width: 1.5em;
|
|
1552
|
+
height: 100%;
|
|
1553
|
+
position: absolute;
|
|
1554
|
+
right: 0;
|
|
1555
|
+
top: 0;
|
|
1556
|
+
padding: 0 .25em;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
.ui-multiselect .ui-multiselect-trigger .ui-multiselect-trigger-icon {
|
|
1560
|
+
top: 50%;
|
|
1561
|
+
left: 50%;
|
|
1562
|
+
margin-top: -.5em;
|
|
1563
|
+
margin-left: -.5em;
|
|
1564
|
+
position: absolute;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
.ui-multiselect .ui-multiselect-label-container {
|
|
1568
|
+
overflow: hidden;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
.ui-multiselect .ui-multiselect-label {
|
|
1572
|
+
display: block;
|
|
1573
|
+
padding: .25em 2em .25em .25em;
|
|
1574
|
+
width: auto;
|
|
1575
|
+
border: none;
|
|
1576
|
+
cursor: pointer;
|
|
1577
|
+
text-overflow: ellipsis;
|
|
1578
|
+
overflow: hidden;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.ui-multiselect.ui-state-disabled .ui-multiselect-trigger,
|
|
1582
|
+
.ui-multiselect.ui-state-disabled .ui-multiselect-label {
|
|
1583
|
+
cursor: auto
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
.ui-multiselect-panel {
|
|
1587
|
+
padding: 0.2em;
|
|
1588
|
+
position: absolute;
|
|
1589
|
+
min-width: 12em;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
.ui-multiselect .ui-multiselect-panel {
|
|
1593
|
+
min-width: 100%;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.ui-multiselect-panel .ui-multiselect-items-wrapper {
|
|
1597
|
+
overflow: auto;
|
|
1598
|
+
position: relative;
|
|
1599
|
+
padding: 0.2em 0;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.ui-multiselect-panel .ui-multiselect-list {
|
|
1603
|
+
border: 0 none;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
.ui-multiselect-panel .ui-multiselect-item {
|
|
1607
|
+
border: 0 none;
|
|
1608
|
+
cursor: pointer;
|
|
1609
|
+
font-weight: normal;
|
|
1610
|
+
margin: 1px 0;
|
|
1611
|
+
padding: .125em .25em;
|
|
1612
|
+
text-align: left;
|
|
1613
|
+
white-space: nowrap;
|
|
1614
|
+
display: block;
|
|
1615
|
+
position: relative;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.ui-multiselect-panel .ui-multiselect-empty-message {
|
|
1619
|
+
padding: .5em;
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
.ui-multiselect-panel .ui-multiselect-item .ui-chkbox {
|
|
1623
|
+
display: inline-block;
|
|
1624
|
+
vertical-align: middle;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.ui-multiselect-panel .ui-multiselect-item span {
|
|
1628
|
+
display: inline-block;
|
|
1629
|
+
vertical-align: middle;
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
.ui-multiselect-header {
|
|
1633
|
+
margin-bottom: 0.3em;
|
|
1634
|
+
padding: .25em;
|
|
1635
|
+
position: relative;
|
|
1636
|
+
text-align: left;
|
|
1637
|
+
min-height: 2em;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
.ui-multiselect-header .ui-chkbox {
|
|
1641
|
+
display: inline-block;
|
|
1642
|
+
vertical-align: middle;
|
|
1643
|
+
cursor:pointer;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.ui-multiselect-header .ui-multiselect-filter-container {
|
|
1647
|
+
position: relative;
|
|
1648
|
+
display: inline-block;
|
|
1649
|
+
vertical-align: middle;
|
|
1650
|
+
width: 65%;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.ui-multiselect-header.ui-multiselect-header-no-toggleall .ui-multiselect-filter-container {
|
|
1654
|
+
width: 85%;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.ui-multiselect-header .ui-multiselect-filter-container .ui-multiselect-filter-icon {
|
|
1658
|
+
position: absolute;
|
|
1659
|
+
top: .25em;
|
|
1660
|
+
left: .125em;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
.ui-multiselect-header .ui-inputtext {
|
|
1664
|
+
padding: .125em .125em .125em 1.25em;
|
|
1665
|
+
width: 100%;
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
.ui-multiselect-header .ui-multiselect-close {
|
|
1669
|
+
position: absolute;
|
|
1670
|
+
right: .375em;
|
|
1671
|
+
top: .375em;
|
|
1672
|
+
display: block;
|
|
1673
|
+
border: 0 none;
|
|
1674
|
+
cursor: pointer;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.ui-multiselect-header a.ui-multiselect-all,
|
|
1678
|
+
.ui-multiselect-header a.ui-multiselect-none {
|
|
1679
|
+
float:left;
|
|
1680
|
+
margin-right: 10px;
|
|
1681
|
+
display: block;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
.ui-multiselect-footer {
|
|
1685
|
+
padding: .25em;
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.ui-fluid .ui-multiselect {
|
|
1689
|
+
width: 100%;
|
|
1690
|
+
box-sizing: border-box;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
|
|
1694
|
+
.ui-card-header img {
|
|
1695
|
+
width: 100%;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.ui-card-body {
|
|
1699
|
+
padding: 1em;
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
.ui-card-title {
|
|
1703
|
+
font-size: 1.5em;
|
|
1704
|
+
font-weight: bold;
|
|
1705
|
+
margin-bottom: .5em;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
.ui-card-subtitle {
|
|
1709
|
+
opacity: .7;
|
|
1710
|
+
margin-bottom: .5em;
|
|
1711
|
+
margin-top: -.25em;
|
|
1712
|
+
font-weight: bold;
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
.ui-card-footer {
|
|
1716
|
+
padding-top: 1em;
|
|
1717
|
+
}
|
|
1718
|
+
.ui-dialog {
|
|
1719
|
+
position: fixed;
|
|
1720
|
+
padding: 0;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
.ui-dynamicdialog {
|
|
1724
|
+
top: 50%;
|
|
1725
|
+
left: 50%;
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.ui-dialog .ui-dialog-titlebar {
|
|
1729
|
+
padding: .5em .75em;
|
|
1730
|
+
position: relative;
|
|
1731
|
+
border: 0;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.ui-dialog .ui-dialog-content {
|
|
1735
|
+
position: relative;
|
|
1736
|
+
border: 0;
|
|
1737
|
+
padding: .5em .75em;
|
|
1738
|
+
background: none;
|
|
1739
|
+
zoom: 1;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.ui-dialog-resizable .ui-dialog-content {
|
|
1743
|
+
overflow: auto;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
.ui-dialog .ui-resizable-se {
|
|
1747
|
+
width: 14px;
|
|
1748
|
+
height: 14px;
|
|
1749
|
+
right: 3px;
|
|
1750
|
+
bottom: 3px;
|
|
1751
|
+
}
|
|
1752
|
+
.ui-draggable .ui-dialog-titlebar {
|
|
1753
|
+
cursor: move;
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
.ui-dialog .ui-dialog-titlebar-icon {
|
|
1757
|
+
text-decoration: none;
|
|
1758
|
+
float: right;
|
|
1759
|
+
float: right;
|
|
1760
|
+
padding: .125em;
|
|
1761
|
+
cursor: pointer;
|
|
1762
|
+
border: 1px solid transparent;
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
.ui-dialog .ui-dialog-titlebar-icon span {
|
|
1766
|
+
display: block;
|
|
1767
|
+
margin: 0;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.ui-dialog-footer {
|
|
1771
|
+
padding: 1em;
|
|
1772
|
+
border-width: 1px 0 0 0;
|
|
1773
|
+
text-align: right;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.ui-dialog-mask {
|
|
1777
|
+
position: fixed;
|
|
1778
|
+
width: 100%;
|
|
1779
|
+
height: 100%;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.ui-dialog-maximized {
|
|
1783
|
+
-webkit-transition: left .3s, top .3s, width .3s,height .3s;
|
|
1784
|
+
transition: left .3s, top .3s, width .3s,height .3s;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
/* ConfirmDialog */
|
|
1788
|
+
.ui-confirmdialog {
|
|
1789
|
+
width: 30em;
|
|
1790
|
+
top: 50%;
|
|
1791
|
+
left: 50%;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
.ui-confirmdialog.ui-dialog .ui-dialog-content {
|
|
1795
|
+
padding: 1em 2em;
|
|
1796
|
+
}
|
|
1797
|
+
.ui-confirmdialog .ui-dialog-content .ui-confirmdialog-icon {
|
|
1798
|
+
font-size: 1.5em;
|
|
1799
|
+
margin-right: .5em;
|
|
1800
|
+
position: relative;
|
|
1801
|
+
top: .2em;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.ui-dialog-footer .ui-button {
|
|
1805
|
+
margin-right: .25em;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
/* Fluid */
|
|
1809
|
+
.ui-fluid .ui-dialog-footer .ui-button {
|
|
1810
|
+
width: auto;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
/* RTL */
|
|
1814
|
+
.ui-rtl .ui-dialog .ui-dialog-titlebar-close {
|
|
1815
|
+
float: left;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.ui-rtl .ui-dialog .ui-dialog-buttonpane button {
|
|
1819
|
+
text-align: right;
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
@media screen and (max-width: 40em) {
|
|
1823
|
+
.ui-confirmdialog {
|
|
1824
|
+
width: 90%;
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
.ui-table {
|
|
1828
|
+
position: relative;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
.ui-table table {
|
|
1832
|
+
border-collapse: collapse;
|
|
1833
|
+
width: 100%;
|
|
1834
|
+
table-layout: fixed;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.ui-table .ui-table-thead > tr > th,
|
|
1838
|
+
.ui-table .ui-table-tbody > tr > td,
|
|
1839
|
+
.ui-table .ui-table-tfoot > tr > td {
|
|
1840
|
+
padding: .25em .5em;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.ui-table .ui-sortable-column {
|
|
1844
|
+
cursor: pointer;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.ui-table p-sorticon {
|
|
1848
|
+
vertical-align: middle;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.ui-table-auto-layout > .ui-table-wrapper {
|
|
1852
|
+
overflow-x: auto;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.ui-table-auto-layout > .ui-table-wrapper > table {
|
|
1856
|
+
table-layout: auto;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
/* Sections */
|
|
1860
|
+
.ui-table-caption,
|
|
1861
|
+
.ui-table-summary {
|
|
1862
|
+
padding: .25em .5em;
|
|
1863
|
+
text-align: center;
|
|
1864
|
+
font-weight: bold;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.ui-table-caption {
|
|
1868
|
+
border-bottom: 0 none;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.ui-table-summary {
|
|
1872
|
+
border-top: 0 none;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
/* Paginator */
|
|
1876
|
+
.ui-table .ui-paginator-top {
|
|
1877
|
+
border-bottom: 0 none;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
.ui-table .ui-paginator-bottom {
|
|
1881
|
+
border-top: 0 none;
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
/* Scrollable */
|
|
1885
|
+
.ui-table-scrollable-wrapper {
|
|
1886
|
+
position: relative;
|
|
1887
|
+
}
|
|
1888
|
+
.ui-table-scrollable-header,
|
|
1889
|
+
.ui-table-scrollable-footer {
|
|
1890
|
+
overflow: hidden;
|
|
1891
|
+
border: 0 none;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.ui-table-scrollable-body {
|
|
1895
|
+
overflow: auto;
|
|
1896
|
+
position: relative;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
.ui-table-virtual-table {
|
|
1900
|
+
position: absolute;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.ui-table-loading-virtual-table {
|
|
1904
|
+
display: none;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
/* Frozen Columns */
|
|
1908
|
+
.ui-table-frozen-view .ui-table-scrollable-body {
|
|
1909
|
+
overflow: hidden;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
.ui-table-frozen-view > .ui-table-scrollable-body > table > .ui-table-tbody > tr > td:last-child {
|
|
1913
|
+
border-right: 0 none;
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.ui-table-unfrozen-view {
|
|
1917
|
+
position: absolute;
|
|
1918
|
+
top: 0px;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
/* Resizable */
|
|
1922
|
+
.ui-table-resizable > .ui-table-wrapper {
|
|
1923
|
+
overflow-x: auto;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
.ui-table-resizable .ui-table-thead > tr > th,
|
|
1927
|
+
.ui-table-resizable .ui-table-tfoot > tr > td,
|
|
1928
|
+
.ui-table-resizable .ui-table-tbody > tr > td {
|
|
1929
|
+
overflow: hidden;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
.ui-table-resizable .ui-resizable-column {
|
|
1933
|
+
background-clip: padding-box;
|
|
1934
|
+
position: relative;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.ui-table-resizable-fit .ui-resizable-column:last-child .ui-column-resizer {
|
|
1938
|
+
display: none;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
.ui-table .ui-column-resizer {
|
|
1942
|
+
display: block;
|
|
1943
|
+
position: absolute !important;
|
|
1944
|
+
top: 0;
|
|
1945
|
+
right: 0;
|
|
1946
|
+
margin: 0;
|
|
1947
|
+
width: .5em;
|
|
1948
|
+
height: 100%;
|
|
1949
|
+
padding: 0px;
|
|
1950
|
+
cursor:col-resize;
|
|
1951
|
+
border: 1px solid transparent;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
.ui-table .ui-column-resizer-helper {
|
|
1955
|
+
width: 1px;
|
|
1956
|
+
position: absolute;
|
|
1957
|
+
z-index: 10;
|
|
1958
|
+
display: none;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
/* Edit */
|
|
1962
|
+
.ui-table .ui-table-tbody > tr > td.ui-editing-cell {
|
|
1963
|
+
padding: 0;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
.ui-table .ui-table-tbody > tr > td.ui-editing-cell p-celleditor > * {
|
|
1967
|
+
width: 100%;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
/* Reorder */
|
|
1971
|
+
.ui-table-reorder-indicator-up,
|
|
1972
|
+
.ui-table-reorder-indicator-down {
|
|
1973
|
+
position: absolute;
|
|
1974
|
+
display: none;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
/* Responsive */
|
|
1978
|
+
.ui-table-responsive .ui-table-tbody > tr > td .ui-column-title {
|
|
1979
|
+
display: none;
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
@media screen and (max-width: 40em) {
|
|
1983
|
+
.ui-table-responsive .ui-table-thead > tr > th,
|
|
1984
|
+
.ui-table-responsive .ui-table-tfoot > tr > td {
|
|
1985
|
+
display: none !important;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
.ui-table-responsive colgroup {
|
|
1989
|
+
display: none !important;
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
.ui-table-responsive .ui-table-tbody > tr > td {
|
|
1993
|
+
text-align: left;
|
|
1994
|
+
display: block;
|
|
1995
|
+
border: 0 none;
|
|
1996
|
+
width: 100% !important;
|
|
1997
|
+
-webkit-box-sizing: border-box;
|
|
1998
|
+
-moz-box-sizing: border-box;
|
|
1999
|
+
box-sizing: border-box;
|
|
2000
|
+
float: left;
|
|
2001
|
+
clear: left;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.ui-table-responsive .ui-table-tbody > tr > td .ui-column-title {
|
|
2005
|
+
padding: .4em;
|
|
2006
|
+
min-width: 30%;
|
|
2007
|
+
display: inline-block;
|
|
2008
|
+
margin: -.4em 1em -.4em -.4em;
|
|
2009
|
+
font-weight: bold;
|
|
2010
|
+
}
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
/* Loader */
|
|
2014
|
+
.ui-table-loading {
|
|
2015
|
+
position: absolute;
|
|
2016
|
+
width: 100%;
|
|
2017
|
+
height: 100%;
|
|
2018
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
|
|
2019
|
+
opacity: 0.1;
|
|
2020
|
+
z-index: 1;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
.ui-table-loading-content {
|
|
2024
|
+
position: absolute;
|
|
2025
|
+
left: 50%;
|
|
2026
|
+
top: 50%;
|
|
2027
|
+
z-index: 2;
|
|
2028
|
+
margin-top: -1em;
|
|
2029
|
+
margin-left: -1em;
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
.ui-table .ui-table-loading-icon {
|
|
2033
|
+
font-size: 2em;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
.ui-steps ul {
|
|
2037
|
+
list-style-type: none;
|
|
2038
|
+
padding: 0;
|
|
2039
|
+
margin: 0;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
.ui-steps .ui-steps-item {
|
|
2043
|
+
float: left;
|
|
2044
|
+
box-sizing: border-box;
|
|
2045
|
+
cursor: pointer;
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
.ui-steps.ui-steps-readonly .ui-steps-item {
|
|
2049
|
+
cursor: auto;
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
.ui-steps .ui-steps-item .ui-menuitem-link {
|
|
2053
|
+
text-decoration: none;
|
|
2054
|
+
display: block;
|
|
2055
|
+
padding: 1em;
|
|
2056
|
+
position: relative;
|
|
2057
|
+
text-align: center;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
.ui-steps .ui-steps-item.ui-state-highlight .ui-menuitem-link,
|
|
2061
|
+
.ui-steps .ui-steps-item.ui-state-disabled .ui-menuitem-link {
|
|
2062
|
+
cursor: default;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.ui-steps .ui-steps-number {
|
|
2066
|
+
font-size: 2em;
|
|
2067
|
+
display: block;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.ui-steps .ui-steps-title {
|
|
2071
|
+
display: block;
|
|
2072
|
+
white-space: nowrap;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
/* Responsive */
|
|
2076
|
+
@media (max-width: 40em) {
|
|
2077
|
+
.ui-steps .ui-steps-item .ui-menuitem-link {
|
|
2078
|
+
padding: 0.5em;
|
|
2079
|
+
}
|
|
2080
|
+
|
|
2081
|
+
.ui-steps .ui-steps-item .ui-steps-title {
|
|
2082
|
+
display: none;
|
|
2083
|
+
}
|
|
2084
|
+
}
|
|
2085
|
+
.ui-toast {
|
|
2086
|
+
position: fixed;
|
|
2087
|
+
width: 20em;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
.ui-toast .ui-toast-message {
|
|
2091
|
+
position: relative;
|
|
2092
|
+
display: block;
|
|
2093
|
+
margin-bottom: .75em;
|
|
2094
|
+
overflow: hidden;
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
.ui-toast .ui-toast-message-content {
|
|
2098
|
+
padding: .5em 1em;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
.ui-toast .ui-toast-close-icon {
|
|
2102
|
+
position: absolute;
|
|
2103
|
+
top: .25em;
|
|
2104
|
+
right: .25em;
|
|
2105
|
+
cursor: pointer;
|
|
2106
|
+
display: inline-block;
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
.ui-toast .ui-toast-summary {
|
|
2110
|
+
font-weight: bold;
|
|
2111
|
+
padding: 0 0 .5em 0;
|
|
2112
|
+
display: block;
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
.ui-toast .ui-toast-icon {
|
|
2116
|
+
position: absolute;
|
|
2117
|
+
display: inline-block;
|
|
2118
|
+
left: .5em;
|
|
2119
|
+
top: .25em;
|
|
2120
|
+
padding: 0;
|
|
2121
|
+
font-size: 2em;
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.ui-toast .ui-toast-message-text-content {
|
|
2125
|
+
padding: 0 0 .25em 0;
|
|
2126
|
+
margin-left: 2.5em;
|
|
2127
|
+
}
|
|
2128
|
+
/* Positions */
|
|
2129
|
+
.ui-toast-top-right {
|
|
2130
|
+
top: 20px;
|
|
2131
|
+
right: 20px;
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
|
+
.ui-toast-top-left {
|
|
2135
|
+
top: 20px;
|
|
2136
|
+
left: 20px;
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
.ui-toast-bottom-right {
|
|
2140
|
+
bottom: 20px;
|
|
2141
|
+
right: 20px;
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
.ui-toast-bottom-left {
|
|
2145
|
+
bottom: 20px;
|
|
2146
|
+
left: 20px;
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2149
|
+
.ui-toast-top-center {
|
|
2150
|
+
top: 20px;
|
|
2151
|
+
left: 50%;
|
|
2152
|
+
margin-left: -10em;
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
.ui-toast-bottom-center {
|
|
2156
|
+
bottom: 20px;
|
|
2157
|
+
left: 50%;
|
|
2158
|
+
margin-left: -10em;
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.ui-toast-center {
|
|
2162
|
+
left: 50%;
|
|
2163
|
+
top: 50%;
|
|
2164
|
+
min-width: 20vw;
|
|
2165
|
+
transform: translate(-50%, -50%);
|
|
2166
|
+
}
|
|
2167
|
+
/*
|
|
2168
|
+
* FileUpload
|
|
2169
|
+
*/
|
|
2170
|
+
.ui-fileupload-buttonbar .ui-fileupload-choose.ui-state-disabled input {
|
|
2171
|
+
cursor: default;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
.ui-fileupload-buttonbar {
|
|
2175
|
+
padding: .5em;
|
|
2176
|
+
border-bottom: 0 none;
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
.ui-fileupload-buttonbar .ui-button {
|
|
2180
|
+
vertical-align: middle;
|
|
2181
|
+
margin-right: .25em;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
.ui-fileupload-content {
|
|
2185
|
+
padding: 1em;
|
|
2186
|
+
position: relative;
|
|
2187
|
+
transition: border-color .3s;
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
.ui-fileupload-content.ui-fileupload-highlight {
|
|
2191
|
+
border-color: #156090;
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
.ui-fileupload-files img {
|
|
2195
|
+
border: none;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.ui-fileupload-files {
|
|
2199
|
+
display: table;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
.ui-fileupload-row {
|
|
2203
|
+
display: table-row;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
.ui-fileupload-row > div {
|
|
2207
|
+
display: table-cell;
|
|
2208
|
+
padding: .5em 1em;
|
|
2209
|
+
vertical-align: middle;
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
.ui-fileupload-content .ui-progressbar {
|
|
2213
|
+
width: 100%;
|
|
2214
|
+
position: absolute;
|
|
2215
|
+
top: 1px;
|
|
2216
|
+
left: 0;
|
|
2217
|
+
height: .25em;
|
|
2218
|
+
border: 0 none;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
.ui-fileupload-content .ui-progressbar-value {
|
|
2222
|
+
-moz-border-radius: 0;
|
|
2223
|
+
-webkit-border-radius: 0;
|
|
2224
|
+
border-radius: 0;
|
|
2225
|
+
border: 0 none;
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
/* Simple */
|
|
2229
|
+
.ui-fileupload-choose {
|
|
2230
|
+
position: relative;
|
|
2231
|
+
overflow: hidden;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.ui-fileupload-choose input[type=file] {
|
|
2235
|
+
position: absolute;
|
|
2236
|
+
top: 0;
|
|
2237
|
+
right: 0;
|
|
2238
|
+
margin: 0;
|
|
2239
|
+
opacity: 0;
|
|
2240
|
+
min-height: 100%;
|
|
2241
|
+
font-size: 100px;
|
|
2242
|
+
text-align: right;
|
|
2243
|
+
filter: alpha(opacity=0);
|
|
2244
|
+
direction: ltr;
|
|
2245
|
+
cursor: pointer;
|
|
2246
|
+
z-index: 1;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
.ui-fileupload-choose.ui-fileupload-choose-selected input[type=file] {
|
|
2250
|
+
display: none;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2253
|
+
/* ui-fluid */
|
|
2254
|
+
.ui-fluid .ui-fileupload .ui-button {
|
|
2255
|
+
width: auto;
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
.ui-fluid .ui-fileupload-content .ui-button-icon-only {
|
|
2259
|
+
width: 2em;
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
@media (max-width: 40em) {
|
|
2263
|
+
.ui-fileupload-buttonbar .ui-button {
|
|
2264
|
+
display: block;
|
|
2265
|
+
width: 100%;
|
|
2266
|
+
margin-right: 0;
|
|
2267
|
+
margin-bottom: .25em;
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2270
|
+
.ui-fileupload-buttonbar .ui-button:last-child {
|
|
2271
|
+
margin-bottom: 0;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
.ui-fileupload-row > div {
|
|
2275
|
+
display: block;
|
|
2276
|
+
}
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
|
|
2280
|
+
|
|
2281
|
+
.ui-treetable {
|
|
2282
|
+
position: relative;
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2285
|
+
.ui-treetable table {
|
|
2286
|
+
border-collapse: collapse;
|
|
2287
|
+
width: 100%;
|
|
2288
|
+
table-layout: fixed;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2291
|
+
.ui-treetable .ui-treetable-thead > tr > th,
|
|
2292
|
+
.ui-treetable .ui-treetable-tbody > tr > td,
|
|
2293
|
+
.ui-treetable .ui-treetable-tfoot > tr > td {
|
|
2294
|
+
padding: .25em .5em;
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
.ui-treetable .ui-treetable-toggler {
|
|
2298
|
+
cursor: pointer;
|
|
2299
|
+
display: inline-block;
|
|
2300
|
+
height: 1em;
|
|
2301
|
+
position: relative;
|
|
2302
|
+
top: 50%;
|
|
2303
|
+
margin-top: -.5em;
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
.ui-treetable .ui-sortable-column {
|
|
2307
|
+
cursor: pointer;
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
.ui-treetable p-treetablesorticon {
|
|
2311
|
+
vertical-align: middle;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.ui-treetable-auto-layout > .ui-treetable-wrapper {
|
|
2315
|
+
overflow-x: auto;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
.ui-treetable-auto-layout > .ui-treetable-wrapper > table {
|
|
2319
|
+
table-layout: auto;
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
.ui-treetable .ui-treetable-chkbox {
|
|
2323
|
+
margin: 0 .25em;
|
|
2324
|
+
vertical-align: middle;
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
/* Sections */
|
|
2328
|
+
.ui-treetable-caption,
|
|
2329
|
+
.ui-treetable-summary {
|
|
2330
|
+
padding: .25em .5em;
|
|
2331
|
+
text-align: center;
|
|
2332
|
+
font-weight: bold;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
.ui-treetable-caption {
|
|
2336
|
+
border-bottom: 0 none;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
.ui-treetable-summary {
|
|
2340
|
+
border-top: 0 none;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
/* Paginator */
|
|
2344
|
+
.ui-treetable .ui-paginator-top {
|
|
2345
|
+
border-bottom: 0 none;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
.ui-treetable .ui-paginator-bottom {
|
|
2349
|
+
border-top: 0 none;
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
/* Scrollable */
|
|
2353
|
+
.ui-treetable-scrollable-wrapper {
|
|
2354
|
+
position: relative;
|
|
2355
|
+
}
|
|
2356
|
+
.ui-treetable-scrollable-header,
|
|
2357
|
+
.ui-treetable-scrollable-footer {
|
|
2358
|
+
overflow: hidden;
|
|
2359
|
+
border: 0 none;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
.ui-treetable-scrollable-body {
|
|
2363
|
+
overflow: auto;
|
|
2364
|
+
position: relative;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.ui-treetable-scrollable-body > table > .ui-treetable-tbody > tr:first-child > td {
|
|
2368
|
+
border-top: 0 none;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.ui-treetable-virtual-table {
|
|
2372
|
+
position: absolute;
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
/* Frozen Columns */
|
|
2376
|
+
.ui-treetable-frozen-view .ui-treetable-scrollable-body {
|
|
2377
|
+
overflow: hidden;
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
.ui-treetable-frozen-view > .ui-treetable-scrollable-body > table > .ui-treetable-tbody > tr > td:last-child {
|
|
2381
|
+
border-right: 0 none;
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
.ui-treetable-unfrozen-view {
|
|
2385
|
+
position: absolute;
|
|
2386
|
+
top: 0px;
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
/* Resizable */
|
|
2390
|
+
.ui-treetable-resizable > .ui-treetable-wrapper {
|
|
2391
|
+
overflow-x: auto;
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
.ui-treetable-resizable .ui-treetable-thead > tr > th,
|
|
2395
|
+
.ui-treetable-resizable .ui-treetable-tfoot > tr > td,
|
|
2396
|
+
.ui-treetable-resizable .ui-treetable-tbody > tr > td {
|
|
2397
|
+
overflow: hidden;
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
.ui-treetable-resizable .ui-resizable-column {
|
|
2401
|
+
background-clip: padding-box;
|
|
2402
|
+
position: relative;
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
.ui-treetable-resizable-fit .ui-resizable-column:last-child .ui-column-resizer {
|
|
2406
|
+
display: none;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
.ui-treetable .ui-column-resizer {
|
|
2410
|
+
display: block;
|
|
2411
|
+
position: absolute !important;
|
|
2412
|
+
top: 0;
|
|
2413
|
+
right: 0;
|
|
2414
|
+
margin: 0;
|
|
2415
|
+
width: .5em;
|
|
2416
|
+
height: 100%;
|
|
2417
|
+
padding: 0px;
|
|
2418
|
+
cursor:col-resize;
|
|
2419
|
+
border: 1px solid transparent;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
.ui-treetable .ui-column-resizer-helper {
|
|
2423
|
+
width: 1px;
|
|
2424
|
+
position: absolute;
|
|
2425
|
+
z-index: 10;
|
|
2426
|
+
display: none;
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
/* Reorder */
|
|
2430
|
+
.ui-treetable-reorder-indicator-up,
|
|
2431
|
+
.ui-treetable-reorder-indicator-down {
|
|
2432
|
+
position: absolute;
|
|
2433
|
+
display: none;
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
/* Responsive */
|
|
2437
|
+
.ui-treetable-responsive .ui-treetable-tbody > tr > td .ui-column-title {
|
|
2438
|
+
display: none;
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2441
|
+
@media screen and (max-width: 40em) {
|
|
2442
|
+
.ui-treetable-responsive .ui-treetable-thead > tr > th,
|
|
2443
|
+
.ui-treetable-responsive .ui-treetable-tfoot > tr > td {
|
|
2444
|
+
display: none !important;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
.ui-treetable-responsive .ui-treetable-tbody > tr > td {
|
|
2448
|
+
text-align: left;
|
|
2449
|
+
display: block;
|
|
2450
|
+
border: 0 none;
|
|
2451
|
+
width: 100% !important;
|
|
2452
|
+
-webkit-box-sizing: border-box;
|
|
2453
|
+
-moz-box-sizing: border-box;
|
|
2454
|
+
box-sizing: border-box;
|
|
2455
|
+
float: left;
|
|
2456
|
+
clear: left;
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2459
|
+
.ui-treetable-responsive .ui-treetable-tbody > tr > td .ui-column-title {
|
|
2460
|
+
padding: .4em;
|
|
2461
|
+
min-width: 30%;
|
|
2462
|
+
display: inline-block;
|
|
2463
|
+
margin: -.4em 1em -.4em -.4em;
|
|
2464
|
+
font-weight: bold;
|
|
2465
|
+
}
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
/* Loader */
|
|
2469
|
+
.ui-treetable-loading {
|
|
2470
|
+
position: absolute;
|
|
2471
|
+
width: 100%;
|
|
2472
|
+
height: 100%;
|
|
2473
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
|
|
2474
|
+
opacity: 0.1;
|
|
2475
|
+
z-index: 1;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
.ui-treetable-loading-content {
|
|
2479
|
+
position: absolute;
|
|
2480
|
+
left: 50%;
|
|
2481
|
+
top: 50%;
|
|
2482
|
+
z-index: 2;
|
|
2483
|
+
margin-top: -1em;
|
|
2484
|
+
margin-left: -1em;
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
.ui-treetable .ui-treetable-loading-icon {
|
|
2488
|
+
font-size: 2em;
|
|
2489
|
+
}
|
|
2490
|
+
.ui-menu {
|
|
2491
|
+
width: 12.5em;
|
|
2492
|
+
padding: .25em;
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
.ui-menu.ui-menu-dynamic {
|
|
2496
|
+
position: absolute;
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
.ui-menu .ui-menu-separator {
|
|
2500
|
+
border-width: 1px 0 0 0;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
.ui-menu ul {
|
|
2504
|
+
list-style: none;
|
|
2505
|
+
margin: 0;
|
|
2506
|
+
padding: 0;
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
.ui-menu .ui-submenu-header {
|
|
2510
|
+
padding: .25em .5em;
|
|
2511
|
+
margin: .125em 0;
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
.ui-menu .ui-menuitem {
|
|
2515
|
+
margin: .125em 0;
|
|
2516
|
+
}
|
|
2517
|
+
|
|
2518
|
+
.ui-menu .ui-menuitem-link {
|
|
2519
|
+
cursor: pointer;
|
|
2520
|
+
padding: .25em;
|
|
2521
|
+
display: block;
|
|
2522
|
+
text-decoration: none;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
.ui-menu .ui-menuitem-icon {
|
|
2526
|
+
margin-right: .25em;
|
|
2527
|
+
vertical-align: middle;
|
|
2528
|
+
}
|
|
2529
|
+
|
|
2530
|
+
.ui-menu .ui-menuitem-text {
|
|
2531
|
+
vertical-align: middle;
|
|
2532
|
+
}
|
|
2533
|
+
.ui-contextmenu {
|
|
2534
|
+
width: 12.5em;
|
|
2535
|
+
padding: .25em;
|
|
2536
|
+
position: absolute;
|
|
2537
|
+
display: none;
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
.ui-contextmenu .ui-menu-separator {
|
|
2541
|
+
border-width: 1px 0 0 0;
|
|
2542
|
+
}
|
|
2543
|
+
|
|
2544
|
+
.ui-contextmenu ul {
|
|
2545
|
+
list-style: none;
|
|
2546
|
+
margin: 0;
|
|
2547
|
+
padding: 0;
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
.ui-contextmenu .ui-submenu-list {
|
|
2551
|
+
display: none;
|
|
2552
|
+
position: absolute;
|
|
2553
|
+
width: 12.5em;
|
|
2554
|
+
padding: .25em;
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
.ui-contextmenu .ui-menuitem-link {
|
|
2558
|
+
padding: .25em;
|
|
2559
|
+
display: block;
|
|
2560
|
+
position: relative;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
.ui-contextmenu .ui-menuitem-icon {
|
|
2564
|
+
margin-right: .25em;
|
|
2565
|
+
vertical-align: middle;
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2568
|
+
.ui-contextmenu .ui-menuitem-text {
|
|
2569
|
+
vertical-align: middle;
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
.ui-contextmenu .ui-menuitem {
|
|
2573
|
+
position: relative;
|
|
2574
|
+
}
|
|
2575
|
+
|
|
2576
|
+
|
|
2577
|
+
.ui-contextmenu .ui-menuitem-link .ui-submenu-icon {
|
|
2578
|
+
position: absolute;
|
|
2579
|
+
margin-top: -.5em;
|
|
2580
|
+
right: 0;
|
|
2581
|
+
top: 50%;
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
.ui-contextmenu .ui-menuitem-active > .ui-submenu > .ui-submenu-list {
|
|
2585
|
+
display: block !important;
|
|
2586
|
+
}
|
|
2587
|
+
.ui-listbox {
|
|
2588
|
+
padding: .25em;
|
|
2589
|
+
width: 10em;
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
.ui-listbox .ui-listbox-list-wrapper {
|
|
2593
|
+
overflow:auto;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
.ui-listbox .ui-listbox-list {
|
|
2597
|
+
list-style-type: none;
|
|
2598
|
+
margin: 0;
|
|
2599
|
+
padding: 0;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.ui-listbox .ui-listbox-item {
|
|
2603
|
+
padding: .25em;
|
|
2604
|
+
border: 0 none;
|
|
2605
|
+
cursor: pointer;
|
|
2606
|
+
font-weight: normal;
|
|
2607
|
+
margin-bottom: 1px;
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
.ui-listbox .ui-listbox-item > span {
|
|
2611
|
+
vertical-align: middle;
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
.ui-listbox .ui-listbox-item:last-child {
|
|
2615
|
+
margin-bottom: 0;
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
.ui-listbox.ui-state-disabled .ui-listbox-item {
|
|
2619
|
+
cursor: default;
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
.ui-listbox-header {
|
|
2623
|
+
margin-bottom: 0.3em;
|
|
2624
|
+
padding: .125em .2em;
|
|
2625
|
+
position: relative;
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
.ui-listbox-header .ui-chkbox {
|
|
2629
|
+
display: inline-block;
|
|
2630
|
+
vertical-align: middle;
|
|
2631
|
+
cursor: pointer;
|
|
2632
|
+
}
|
|
2633
|
+
|
|
2634
|
+
.ui-listbox-header .ui-listbox-filter-container {
|
|
2635
|
+
display: inline-block;
|
|
2636
|
+
vertical-align: middle;
|
|
2637
|
+
position: relative;
|
|
2638
|
+
width: 100%;
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2641
|
+
.ui-listbox-header.ui-listbox-header-w-checkbox .ui-listbox-filter-container {
|
|
2642
|
+
width: calc(100% - 2em);
|
|
2643
|
+
}
|
|
2644
|
+
|
|
2645
|
+
.ui-listbox-header .ui-listbox-filter-container .ui-listbox-filter-icon {
|
|
2646
|
+
position: absolute;
|
|
2647
|
+
top: .25em;
|
|
2648
|
+
left: .25em;
|
|
2649
|
+
}
|
|
2650
|
+
|
|
2651
|
+
.ui-listbox-header .ui-inputtext {
|
|
2652
|
+
padding: .125em .125em .125em 1.25em;
|
|
2653
|
+
width: 100%;
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
.ui-listbox-footer {
|
|
2657
|
+
padding: .125em .2em;
|
|
2658
|
+
}
|
|
2659
|
+
.ui-sidebar {
|
|
2660
|
+
position: fixed;
|
|
2661
|
+
padding: .5em 1em;
|
|
2662
|
+
-webkit-transition: transform .3s;
|
|
2663
|
+
transition: transform .3s;
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
.ui-sidebar-left {
|
|
2667
|
+
top: 0;
|
|
2668
|
+
left: 0;
|
|
2669
|
+
width: 20em;
|
|
2670
|
+
height: 100%;
|
|
2671
|
+
-webkit-transform: translateX(-100%);
|
|
2672
|
+
-ms-transform: translateX(-100%);
|
|
2673
|
+
transform: translateX(-100%);
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
.ui-sidebar-right {
|
|
2677
|
+
top: 0;
|
|
2678
|
+
right: 0;
|
|
2679
|
+
width: 20em;
|
|
2680
|
+
height: 100%;
|
|
2681
|
+
-webkit-transform: translateX(100%);
|
|
2682
|
+
-ms-transform: translateX(100%);
|
|
2683
|
+
transform: translateX(100%);
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
.ui-sidebar-top {
|
|
2687
|
+
top: 0;
|
|
2688
|
+
left: 0;
|
|
2689
|
+
width: 100%;
|
|
2690
|
+
height: 10em;
|
|
2691
|
+
-webkit-transform: translateY(-100%);
|
|
2692
|
+
-ms-transform: translateY(-100%);
|
|
2693
|
+
transform: translateY(-100%);
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.ui-sidebar-bottom {
|
|
2697
|
+
bottom: 0;
|
|
2698
|
+
left: 0;
|
|
2699
|
+
width: 100%;
|
|
2700
|
+
height: 10em;
|
|
2701
|
+
-webkit-transform: translateY(100%);
|
|
2702
|
+
-ms-transform: translateY(100%);
|
|
2703
|
+
transform: translateY(100%);
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
.ui-sidebar-full {
|
|
2707
|
+
width: 100%;
|
|
2708
|
+
height: 100%;
|
|
2709
|
+
left: 0;
|
|
2710
|
+
-webkit-transition: transform 0s;
|
|
2711
|
+
transition: transform 0s;
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
.ui-sidebar-left.ui-sidebar-active,
|
|
2715
|
+
.ui-sidebar-right.ui-sidebar-active {
|
|
2716
|
+
-webkit-transform: translateX(0);
|
|
2717
|
+
-ms-transform: translateX(0);
|
|
2718
|
+
transform: translateX(0)
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
.ui-sidebar-left.ui-sidebar-sm,
|
|
2722
|
+
.ui-sidebar-right.ui-sidebar-sm {
|
|
2723
|
+
width: 20em;
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2726
|
+
.ui-sidebar-left.ui-sidebar-md,
|
|
2727
|
+
.ui-sidebar-right.ui-sidebar-md {
|
|
2728
|
+
width: 40em;
|
|
2729
|
+
}
|
|
2730
|
+
|
|
2731
|
+
.ui-sidebar-left.ui-sidebar-lg,
|
|
2732
|
+
.ui-sidebar-right.ui-sidebar-lg {
|
|
2733
|
+
width: 60em;
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
.ui-sidebar-top.ui-sidebar-active,
|
|
2737
|
+
.ui-sidebar-bottom.ui-sidebar-active {
|
|
2738
|
+
-webkit-transform: translateY(0);
|
|
2739
|
+
-ms-transform: translateY(0);
|
|
2740
|
+
transform: translateY(0)
|
|
2741
|
+
}
|
|
2742
|
+
|
|
2743
|
+
.ui-sidebar-top.ui-sidebar-sm,
|
|
2744
|
+
.ui-sidebar-bottom.ui-sidebar-sm {
|
|
2745
|
+
height: 10em;
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
.ui-sidebar-top.ui-sidebar-md,
|
|
2749
|
+
.ui-sidebar-bottom.ui-sidebar-md {
|
|
2750
|
+
height: 20em;
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2753
|
+
.ui-sidebar-top.ui-sidebar-lg,
|
|
2754
|
+
.ui-sidebar-bottom.ui-sidebar-lg {
|
|
2755
|
+
height: 30em;
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2758
|
+
.ui-sidebar-mask {
|
|
2759
|
+
position: fixed;
|
|
2760
|
+
width: 100%;
|
|
2761
|
+
height: 100%;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
.ui-sidebar-close {
|
|
2765
|
+
float: right;
|
|
2766
|
+
}
|
|
2767
|
+
|
|
2768
|
+
.ui-sidebar-close {
|
|
2769
|
+
cursor: pointer;
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
@media screen and (max-width: 64em) {
|
|
2773
|
+
.ui-sidebar-left.ui-sidebar-lg,
|
|
2774
|
+
.ui-sidebar-left.ui-sidebar-md,
|
|
2775
|
+
.ui-sidebar-right.ui-sidebar-lg,
|
|
2776
|
+
.ui-sidebar-right.ui-sidebar-md {
|
|
2777
|
+
width: 20em;
|
|
2778
|
+
}
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
.ui-tabview {
|
|
2782
|
+
padding: .25em;
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
.ui-tabview .ui-tabview-nav {
|
|
2786
|
+
margin: 0;
|
|
2787
|
+
}
|
|
2788
|
+
|
|
2789
|
+
.ui-tabview .ui-tabview-nav li {
|
|
2790
|
+
list-style: none;
|
|
2791
|
+
float: left;
|
|
2792
|
+
position: relative;
|
|
2793
|
+
margin: 0 .125em 1px 0;
|
|
2794
|
+
padding: 0;
|
|
2795
|
+
white-space: nowrap;
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
.ui-tabview .ui-tabview-nav li a {
|
|
2799
|
+
float: left;
|
|
2800
|
+
padding: .5em 1em;
|
|
2801
|
+
text-decoration: none;
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
.ui-tabview .ui-tabview-nav li.ui-tabview-selected a,
|
|
2805
|
+
.ui-tabview .ui-tabview-nav li.ui-state-disabled a,
|
|
2806
|
+
.ui-tabview .ui-tabview-nav li.ui-state-processing a {
|
|
2807
|
+
cursor: text;
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
.ui-tabview .ui-tabview-nav li a,
|
|
2811
|
+
.ui-tabview.ui-tabview-collapsible .ui-tabview-nav li.ui-tabview-selected a {
|
|
2812
|
+
cursor: pointer;
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
.ui-tabview .ui-tabview-panel {
|
|
2816
|
+
border-width: 0;
|
|
2817
|
+
padding: 1em;
|
|
2818
|
+
background: none;
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2821
|
+
.ui-tabview .ui-tabview-nav li {
|
|
2822
|
+
display: block;
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
.ui-tabview .ui-tabview-nav li .ui-tabview-left-icon {
|
|
2826
|
+
margin-right: .25em;
|
|
2827
|
+
vertical-align: middle;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
.ui-tabview .ui-tabview-nav li .ui-tabview-right-icon {
|
|
2831
|
+
margin-left: .25em;
|
|
2832
|
+
vertical-align: middle;
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
.ui-tabview .ui-tabview-title {
|
|
2836
|
+
vertical-align: middle;
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
.ui-tabview .ui-tabview-nav li .ui-tabview-close {
|
|
2840
|
+
margin: 0.5em 0.3em 0 0;
|
|
2841
|
+
cursor: pointer;
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
/* per orientation settings */
|
|
2845
|
+
/* top and bottom */
|
|
2846
|
+
.ui-tabview.ui-tabview-top > .ui-tabview-nav li {
|
|
2847
|
+
border-bottom: 0;
|
|
2848
|
+
top: 1px;
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
.ui-tabview.ui-tabview-top > .ui-tabview-nav {
|
|
2852
|
+
padding: .2em .2em 0;
|
|
2853
|
+
}
|
|
2854
|
+
|
|
2855
|
+
.ui-tabview.ui-tabview-bottom > .ui-tabview-nav {
|
|
2856
|
+
padding: 0 .2em .2em;
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2859
|
+
.ui-tabview.ui-tabview-bottom > .ui-tabview-nav li {
|
|
2860
|
+
border-top: 0;
|
|
2861
|
+
}
|
|
2862
|
+
|
|
2863
|
+
/* left and right*/
|
|
2864
|
+
.ui-tabview-left::after,
|
|
2865
|
+
.ui-tabview-right::after {
|
|
2866
|
+
clear:both;
|
|
2867
|
+
content: ".";
|
|
2868
|
+
display: block;
|
|
2869
|
+
height: 0;
|
|
2870
|
+
visibility: hidden;
|
|
2871
|
+
}
|
|
2872
|
+
|
|
2873
|
+
.ui-tabview-left > .ui-tabview-nav {
|
|
2874
|
+
float:left;
|
|
2875
|
+
width: 25%;
|
|
2876
|
+
height: 300px;
|
|
2877
|
+
background-image: none;
|
|
2878
|
+
padding-top: 1px;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
.ui-tabview-left > .ui-tabview-panels {
|
|
2882
|
+
float:right;
|
|
2883
|
+
width: 75%;
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
.ui-tabview.ui-tabview-left > .ui-tabview-nav li,
|
|
2887
|
+
.ui-tabview.ui-tabview-right > .ui-tabview-nav li{
|
|
2888
|
+
display: block;
|
|
2889
|
+
float: right;
|
|
2890
|
+
white-space: normal;
|
|
2891
|
+
width: 99%;
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
.ui-tabview.ui-tabview-left > .ui-tabview-nav li {
|
|
2895
|
+
margin: 0 0 1px 0;
|
|
2896
|
+
border-right:0 none;
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
.ui-tabview.ui-tabview-right > .ui-tabview-nav {
|
|
2900
|
+
float:right;
|
|
2901
|
+
width: 25%;
|
|
2902
|
+
height: 300px;
|
|
2903
|
+
background-image: none;
|
|
2904
|
+
padding-top: 1px;
|
|
2905
|
+
}
|
|
2906
|
+
|
|
2907
|
+
.ui-tabview.ui-tabview-right > .ui-tabview-panels {
|
|
2908
|
+
float:left;
|
|
2909
|
+
width: 75%;
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
.ui-tabview.ui-tabview-right > .ui-tabview-nav li {
|
|
2913
|
+
margin: 0 0 1px 0;
|
|
2914
|
+
border-left:0 none;
|
|
2915
|
+
}
|
|
2916
|
+
|
|
2917
|
+
/* RTL */
|
|
2918
|
+
.ui-rtl .ui-tabview .ui-tabview-nav li {
|
|
2919
|
+
float: right;
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
.ui-calendar {
|
|
2923
|
+
position: relative;
|
|
2924
|
+
display: inline-block;
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
.ui-calendar .ui-calendar-button {
|
|
2928
|
+
height: 100%;
|
|
2929
|
+
border-top-left-radius: 0px;
|
|
2930
|
+
border-bottom-left-radius: 0px;
|
|
2931
|
+
width: 2em;
|
|
2932
|
+
border-left: 0 none;
|
|
2933
|
+
}
|
|
2934
|
+
|
|
2935
|
+
.ui-calendar .ui-calendar-button:enabled:hover,
|
|
2936
|
+
.ui-calendar .ui-calendar-button:focus {
|
|
2937
|
+
border-left: 0 none;
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
.ui-calendar .ui-datepicker {
|
|
2941
|
+
min-width: 100%;
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2944
|
+
/* Fluid */
|
|
2945
|
+
.ui-fluid .ui-calendar {
|
|
2946
|
+
width: 100%;
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
.ui-fluid .ui-calendar-button {
|
|
2950
|
+
width: 2em;
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
.ui-fluid .ui-datepicker-buttonbar button {
|
|
2954
|
+
width: auto;
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
.ui-fluid .ui-calendar.ui-calendar-w-btn .ui-inputtext {
|
|
2958
|
+
width: calc(100% - 2em);
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
/* Datepicker */
|
|
2962
|
+
.ui-datepicker {
|
|
2963
|
+
width: auto;
|
|
2964
|
+
padding: .2em;
|
|
2965
|
+
position: absolute;
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2968
|
+
.ui-datepicker.ui-datepicker-inline {
|
|
2969
|
+
display: inline-block;
|
|
2970
|
+
position: static;
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2973
|
+
.ui-datepicker .ui-datepicker-group {
|
|
2974
|
+
border-left-width: 0;
|
|
2975
|
+
border-right-width: 0;
|
|
2976
|
+
border-top-width: 0;
|
|
2977
|
+
border-bottom-width: 0;
|
|
2978
|
+
}
|
|
2979
|
+
|
|
2980
|
+
/* Header */
|
|
2981
|
+
.ui-datepicker .ui-datepicker-header {
|
|
2982
|
+
position: relative;
|
|
2983
|
+
padding: .5em 0;
|
|
2984
|
+
}
|
|
2985
|
+
.ui-datepicker .ui-datepicker-prev,
|
|
2986
|
+
.ui-datepicker .ui-datepicker-next {
|
|
2987
|
+
position: absolute;
|
|
2988
|
+
top: .5em;
|
|
2989
|
+
width: 1.8em;
|
|
2990
|
+
height: 1.8em;
|
|
2991
|
+
}
|
|
2992
|
+
|
|
2993
|
+
.ui-datepicker .ui-datepicker-prev {
|
|
2994
|
+
left: .125em;
|
|
2995
|
+
}
|
|
2996
|
+
.ui-datepicker .ui-datepicker-next {
|
|
2997
|
+
right: .125em;
|
|
2998
|
+
}
|
|
2999
|
+
.ui-datepicker .ui-datepicker-prev span,
|
|
3000
|
+
.ui-datepicker .ui-datepicker-next span {
|
|
3001
|
+
display: block;
|
|
3002
|
+
position: absolute;
|
|
3003
|
+
left: 50%;
|
|
3004
|
+
top: 50%;
|
|
3005
|
+
margin-top: -.5em;
|
|
3006
|
+
margin-left: -.5em;
|
|
3007
|
+
}
|
|
3008
|
+
.ui-datepicker .ui-datepicker-title {
|
|
3009
|
+
margin: 0 2.3em;
|
|
3010
|
+
line-height: 1.8em;
|
|
3011
|
+
text-align: center;
|
|
3012
|
+
}
|
|
3013
|
+
.ui-datepicker .ui-datepicker-title select {
|
|
3014
|
+
font-size: 1em;
|
|
3015
|
+
margin: .125em 0;
|
|
3016
|
+
vertical-align: middle;
|
|
3017
|
+
}
|
|
3018
|
+
.ui-datepicker select.ui-datepicker-month {
|
|
3019
|
+
margin-right: .25em;
|
|
3020
|
+
}
|
|
3021
|
+
.ui-datepicker span.ui-datepicker-year {
|
|
3022
|
+
margin-left: .25em;
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
/* Multiple Month DatePicker */
|
|
3026
|
+
.ui-datepicker-multiple-month .ui-datepicker-group {
|
|
3027
|
+
display: table-cell;
|
|
3028
|
+
border-left-width: 0;
|
|
3029
|
+
border-top-width: 0;
|
|
3030
|
+
border-bottom-width: 0;
|
|
3031
|
+
border-right-width: 1px;
|
|
3032
|
+
}
|
|
3033
|
+
|
|
3034
|
+
/* DatePicker Table */
|
|
3035
|
+
.ui-datepicker table {
|
|
3036
|
+
width: 100%;
|
|
3037
|
+
font-size: .9em;
|
|
3038
|
+
border-collapse: collapse;
|
|
3039
|
+
margin: 0 0 .4em;
|
|
3040
|
+
}
|
|
3041
|
+
.ui-datepicker th {
|
|
3042
|
+
padding: .5em;
|
|
3043
|
+
text-align: center;
|
|
3044
|
+
font-weight: bold;
|
|
3045
|
+
border: 0;
|
|
3046
|
+
}
|
|
3047
|
+
.ui-datepicker td {
|
|
3048
|
+
border: 0;
|
|
3049
|
+
padding: 0;
|
|
3050
|
+
}
|
|
3051
|
+
.ui-datepicker td > span,
|
|
3052
|
+
.ui-datepicker td > a {
|
|
3053
|
+
display: block;
|
|
3054
|
+
padding: .5em;
|
|
3055
|
+
text-decoration: none;
|
|
3056
|
+
border: 0 none;
|
|
3057
|
+
text-align: center;
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
.ui-datepicker .ui-datepicker-buttonbar {
|
|
3061
|
+
border-left: 0 none;
|
|
3062
|
+
border-right: 0 none;
|
|
3063
|
+
border-bottom: 0 none;
|
|
3064
|
+
padding: .5em;
|
|
3065
|
+
}
|
|
3066
|
+
|
|
3067
|
+
.ui-datepicker .ui-datepicker-buttonbar > .ui-g > div:last-child {
|
|
3068
|
+
text-align: right;
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
.ui-datepicker .ui-datepicker-buttonbar > .ui-g > div {
|
|
3072
|
+
padding: 0;
|
|
3073
|
+
}
|
|
3074
|
+
|
|
3075
|
+
.ui-calendar.ui-calendar-w-btn input {
|
|
3076
|
+
-moz-border-radius-topright: 0px;
|
|
3077
|
+
-webkit-border-top-right-radius: 0px;
|
|
3078
|
+
-khtml-border-top-right-radius: 0px;
|
|
3079
|
+
border-top-right-radius: 0px;
|
|
3080
|
+
-moz-border-radius-bottomright: 0px;
|
|
3081
|
+
-webkit-border-bottom-right-radius: 0px;
|
|
3082
|
+
-khtml-border-bottom-right-radius: 0px;
|
|
3083
|
+
border-bottom-right-radius: 0px;
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
/* Month Picker */
|
|
3087
|
+
.ui-monthpicker .ui-monthpicker-month {
|
|
3088
|
+
width: 33.3%;
|
|
3089
|
+
display: inline-block;
|
|
3090
|
+
text-align: center;
|
|
3091
|
+
padding: .5em;
|
|
3092
|
+
cursor: pointer;
|
|
3093
|
+
}
|
|
3094
|
+
|
|
3095
|
+
.ui-datepicker-monthpicker select.ui-datepicker-year {
|
|
3096
|
+
width: auto;
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
/* Time Picker */
|
|
3100
|
+
.ui-timepicker {
|
|
3101
|
+
text-align: center;
|
|
3102
|
+
padding: .5em 0;
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
.ui-timepicker > div {
|
|
3106
|
+
display: inline-block;
|
|
3107
|
+
margin-left: .5em;
|
|
3108
|
+
min-width: 1.5em;
|
|
3109
|
+
}
|
|
3110
|
+
|
|
3111
|
+
.ui-timepicker > .ui-minute-picker,
|
|
3112
|
+
.ui-timepicker > .ui-second-picker {
|
|
3113
|
+
margin-left: 0;
|
|
3114
|
+
}
|
|
3115
|
+
|
|
3116
|
+
.ui-timepicker > .ui-separator {
|
|
3117
|
+
margin-left: 0px;
|
|
3118
|
+
min-width: .75em;
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3121
|
+
.ui-timepicker > .ui-separator a {
|
|
3122
|
+
visibility: hidden;
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3125
|
+
.ui-timepicker > div a {
|
|
3126
|
+
display: block;
|
|
3127
|
+
opacity: 0.7;
|
|
3128
|
+
filter:Alpha(Opacity=70);
|
|
3129
|
+
cursor: pointer;
|
|
3130
|
+
}
|
|
3131
|
+
|
|
3132
|
+
.ui-timepicker > div a:last-child {
|
|
3133
|
+
margin-top: .3em;
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
.ui-timepicker > div a:hover {
|
|
3137
|
+
display: block;
|
|
3138
|
+
opacity: 1;
|
|
3139
|
+
filter:Alpha(Opacity=100);
|
|
3140
|
+
}
|
|
3141
|
+
input[type=text]::-ms-clear {
|
|
3142
|
+
display: none;
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
/* Touch UI */
|
|
3146
|
+
.ui-datepicker-touch-ui,
|
|
3147
|
+
.ui-calendar .ui-datepicker-touch-ui {
|
|
3148
|
+
position: fixed;
|
|
3149
|
+
top: 50%;
|
|
3150
|
+
left: 50%;
|
|
3151
|
+
min-width: 80vw;
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
.ui-datepicker-touch-ui.ui-datepicker th {
|
|
3155
|
+
padding: 2em 0;
|
|
3156
|
+
}
|
|
3157
|
+
.ui-datepicker-touch-ui.ui-datepicker td {
|
|
3158
|
+
padding: 0;
|
|
3159
|
+
}
|
|
3160
|
+
.ui-datepicker-touch-ui.ui-datepicker td > span,
|
|
3161
|
+
.ui-datepicker-touch-ui.ui-datepicker td > a {
|
|
3162
|
+
padding: 2em 0;
|
|
3163
|
+
}
|
|
3164
|
+
|
|
3165
|
+
.ui-datepicker-touch-ui .ui-timepicker {
|
|
3166
|
+
padding: 1em 0;
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
.ui-datepicker-touch-ui .ui-timepicker > div a {
|
|
3170
|
+
font-size: 2em;
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3173
|
+
.ui-datepicker-mask {
|
|
3174
|
+
position: fixed;
|
|
3175
|
+
width: 100%;
|
|
3176
|
+
height: 100%;
|
|
3177
|
+
}
|
|
3178
|
+
|
|
3179
|
+
@media screen and (max-width: 40em) {
|
|
3180
|
+
.ui-datepicker-multiple-month {
|
|
3181
|
+
width: 17em;
|
|
3182
|
+
overflow: auto;
|
|
3183
|
+
}
|
|
3184
|
+
|
|
3185
|
+
.ui-datepicker-touch-ui.ui-datepicker th {
|
|
3186
|
+
padding: 1em 0;
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3189
|
+
.ui-datepicker-touch-ui.ui-datepicker td span,
|
|
3190
|
+
.ui-datepicker-touch-ui.ui-datepicker td a {
|
|
3191
|
+
padding: 1em 0;
|
|
3192
|
+
}
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
/** Breadcrumb **/
|
|
3196
|
+
.ui-breadcrumb {
|
|
3197
|
+
margin: 0;
|
|
3198
|
+
padding: 0;
|
|
3199
|
+
padding: .5em;
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
.ui-breadcrumb ul {
|
|
3203
|
+
margin: 0;
|
|
3204
|
+
padding: 0;
|
|
3205
|
+
}
|
|
3206
|
+
|
|
3207
|
+
.ui-breadcrumb ul li {
|
|
3208
|
+
display: inline-block;
|
|
3209
|
+
margin: 0 .25em;
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
.ui-breadcrumb-chevron, .ui-breadcrumb-home {
|
|
3213
|
+
vertical-align: middle;
|
|
3214
|
+
}
|
|
3215
|
+
|
|
3216
|
+
.ui-breadcrumb ul li .ui-menuitem-link {
|
|
3217
|
+
text-decoration: none;
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3220
|
+
.ui-breadcrumb .ui-menuitem-icon {
|
|
3221
|
+
margin-right: .25em;
|
|
3222
|
+
vertical-align: middle;
|
|
3223
|
+
}
|
|
3224
|
+
|
|
3225
|
+
.ui-breadcrumb .ui-menuitem-text {
|
|
3226
|
+
vertical-align: middle;
|
|
3227
|
+
}
|
|
3228
|
+
.ui-picklist > div {
|
|
3229
|
+
float: left;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3232
|
+
.ui-picklist .ui-picklist-buttons {
|
|
3233
|
+
height: 12.5em;
|
|
3234
|
+
padding: 0 .25em;
|
|
3235
|
+
}
|
|
3236
|
+
|
|
3237
|
+
.ui-picklist .ui-picklist-list {
|
|
3238
|
+
list-style-type: none;
|
|
3239
|
+
margin: 0;
|
|
3240
|
+
padding: 0;
|
|
3241
|
+
overflow:auto;
|
|
3242
|
+
height: 12.5em;
|
|
3243
|
+
width: 12.5em;
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
.ui-picklist .ui-picklist-list li {
|
|
3247
|
+
margin: 1px;
|
|
3248
|
+
padding: .125em;
|
|
3249
|
+
}
|
|
3250
|
+
|
|
3251
|
+
.ui-picklist .ui-button {
|
|
3252
|
+
display:block;
|
|
3253
|
+
margin-bottom: 0.25em;
|
|
3254
|
+
}
|
|
3255
|
+
|
|
3256
|
+
.ui-picklist .ui-button-text-icon-left {
|
|
3257
|
+
width: 100%;
|
|
3258
|
+
}
|
|
3259
|
+
|
|
3260
|
+
.ui-picklist .ui-picklist-item {
|
|
3261
|
+
cursor: pointer;
|
|
3262
|
+
border: 0 none;
|
|
3263
|
+
font-weight: inherit;
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
.ui-picklist .ui-picklist-caption {
|
|
3267
|
+
text-align: center;
|
|
3268
|
+
padding: .5em .75em;
|
|
3269
|
+
border-bottom:0 none;
|
|
3270
|
+
}
|
|
3271
|
+
|
|
3272
|
+
.ui-picklist table {
|
|
3273
|
+
width: 100%;
|
|
3274
|
+
border-collapse:collapse;
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
.ui-picklist .ui-picklist-filter-container {
|
|
3278
|
+
position: relative;
|
|
3279
|
+
width: 100%;
|
|
3280
|
+
padding: .5em .6em;
|
|
3281
|
+
border-bottom: 0 none;
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
.ui-picklist .ui-picklist-filter-container .ui-picklist-filter {
|
|
3285
|
+
text-indent: 1.1em;
|
|
3286
|
+
width: 100%;
|
|
3287
|
+
}
|
|
3288
|
+
|
|
3289
|
+
.ui-picklist .ui-picklist-filter-container .ui-picklist-filter-icon {
|
|
3290
|
+
position: absolute;
|
|
3291
|
+
top: 50%;
|
|
3292
|
+
left: 1em;
|
|
3293
|
+
margin-top: -.6em;
|
|
3294
|
+
}
|
|
3295
|
+
|
|
3296
|
+
.ui-picklist {
|
|
3297
|
+
display: table;
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
|
+
.ui-picklist > div {
|
|
3301
|
+
float: none;
|
|
3302
|
+
display: table-cell;
|
|
3303
|
+
vertical-align: top;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
.ui-picklist .ui-picklist-buttons {
|
|
3307
|
+
vertical-align: middle;
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
/* Vertical */
|
|
3311
|
+
.ui-picklist.ui-picklist-vertical {
|
|
3312
|
+
display: table;
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3315
|
+
.ui-picklist.ui-picklist-vertical > div {
|
|
3316
|
+
float: none;
|
|
3317
|
+
display: table-row;
|
|
3318
|
+
vertical-align: top;
|
|
3319
|
+
}
|
|
3320
|
+
|
|
3321
|
+
.ui-picklist.ui-picklist-vertical .ui-picklist-buttons {
|
|
3322
|
+
text-align:center;
|
|
3323
|
+
height: auto;
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
.ui-picklist.ui-picklist-vertical .ui-picklist-buttons .ui-button {
|
|
3327
|
+
display: inline-block;
|
|
3328
|
+
}
|
|
3329
|
+
|
|
3330
|
+
.ui-picklist.ui-picklist-vertical .ui-button {
|
|
3331
|
+
margin-top: 0.25em;
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
.ui-picklist-outline {
|
|
3335
|
+
outline: 1px dotted black;
|
|
3336
|
+
z-index: 1;
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
.ui-picklist .ui-picklist-droppoint {
|
|
3340
|
+
height: 6px;
|
|
3341
|
+
list-style-type: none;
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
.ui-picklist .ui-picklist-list .ui-picklist-droppoint-empty {
|
|
3345
|
+
height: 100%;
|
|
3346
|
+
list-style-type: none;
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
.ui-picklist-list.ui-picklist-source,
|
|
3350
|
+
.ui-picklist-list.ui-picklist-target {
|
|
3351
|
+
outline: none;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
|
+
/* Responsive */
|
|
3355
|
+
.ui-picklist.ui-picklist-responsive * {
|
|
3356
|
+
box-sizing: border-box;
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
.ui-picklist.ui-picklist-responsive {
|
|
3360
|
+
width: 100%;
|
|
3361
|
+
}
|
|
3362
|
+
|
|
3363
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-listwrapper {
|
|
3364
|
+
width: 35%;
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3367
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-listwrapper.ui-picklist-listwrapper-nocontrols {
|
|
3368
|
+
width: 45%;
|
|
3369
|
+
}
|
|
3370
|
+
|
|
3371
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons {
|
|
3372
|
+
width: 10%;
|
|
3373
|
+
}
|
|
3374
|
+
|
|
3375
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons button {
|
|
3376
|
+
width: 100%;
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-list {
|
|
3380
|
+
width: auto;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
/* Responsive */
|
|
3384
|
+
@media (max-width: 40em) {
|
|
3385
|
+
.ui-picklist.ui-picklist-responsive {
|
|
3386
|
+
display: block;
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3389
|
+
.ui-picklist.ui-picklist-responsive > div {
|
|
3390
|
+
display: block;
|
|
3391
|
+
width: 100% !important;
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons {
|
|
3395
|
+
text-align: center;
|
|
3396
|
+
height: auto;
|
|
3397
|
+
padding: .4em 0;
|
|
3398
|
+
}
|
|
3399
|
+
|
|
3400
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons button {
|
|
3401
|
+
display: inline-block;
|
|
3402
|
+
width: 20%;
|
|
3403
|
+
margin-bottom: 0;
|
|
3404
|
+
margin-right: .25em;
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-source-controls.ui-picklist-buttons {
|
|
3408
|
+
padding-bottom: .4em;
|
|
3409
|
+
}
|
|
3410
|
+
|
|
3411
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-target-controls.ui-picklist-buttons {
|
|
3412
|
+
padding-top: .4em;
|
|
3413
|
+
}
|
|
3414
|
+
|
|
3415
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons .pi-angle-right::before {
|
|
3416
|
+
content: "\e930";
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons .pi-angle-double-right::before {
|
|
3420
|
+
content: "\e92c";
|
|
3421
|
+
}
|
|
3422
|
+
|
|
3423
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons .pi-angle-left::before {
|
|
3424
|
+
content: "\e933";
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
.ui-picklist.ui-picklist-responsive .ui-picklist-buttons .pi-angle-double-left::before {
|
|
3428
|
+
content: "\e92f";
|
|
3429
|
+
}
|
|
3430
|
+
}
|
|
3431
|
+
|
|
3432
|
+
@font-face {
|
|
3433
|
+
font-family: 'PrimeIcons';
|
|
3434
|
+
src: url(fonts/primeicons.eot);
|
|
3435
|
+
src: url(fonts/primeicons.eot?#iefix) format('embedded-opentype'), url(fonts/primeicons.ttf) format('truetype'), url(fonts/primeicons.woff) format('woff'), url(fonts/primeicons.svg?#primeicons) format('svg');
|
|
3436
|
+
font-weight: normal;
|
|
3437
|
+
font-style: normal;
|
|
3438
|
+
}
|
|
3439
|
+
|
|
3440
|
+
.pi {
|
|
3441
|
+
font-family: 'primeicons';
|
|
3442
|
+
speak: none;
|
|
3443
|
+
font-style: normal;
|
|
3444
|
+
font-weight: normal;
|
|
3445
|
+
font-variant: normal;
|
|
3446
|
+
text-transform: none;
|
|
3447
|
+
line-height: 1;
|
|
3448
|
+
display: inline-block;
|
|
3449
|
+
-webkit-font-smoothing: antialiased;
|
|
3450
|
+
-moz-osx-font-smoothing: grayscale;
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
.pi-fw {
|
|
3454
|
+
width: 1.28571429em;
|
|
3455
|
+
text-align: center;
|
|
3456
|
+
}
|
|
3457
|
+
|
|
3458
|
+
.pi-spin {
|
|
3459
|
+
-webkit-animation: fa-spin 2s infinite linear;
|
|
3460
|
+
animation: fa-spin 2s infinite linear;
|
|
3461
|
+
}
|
|
3462
|
+
|
|
3463
|
+
@-webkit-keyframes fa-spin {
|
|
3464
|
+
0% {
|
|
3465
|
+
-webkit-transform: rotate(0deg);
|
|
3466
|
+
transform: rotate(0deg);
|
|
3467
|
+
}
|
|
3468
|
+
100% {
|
|
3469
|
+
-webkit-transform: rotate(359deg);
|
|
3470
|
+
transform: rotate(359deg);
|
|
3471
|
+
}
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
@keyframes fa-spin {
|
|
3475
|
+
0% {
|
|
3476
|
+
-webkit-transform: rotate(0deg);
|
|
3477
|
+
transform: rotate(0deg);
|
|
3478
|
+
}
|
|
3479
|
+
100% {
|
|
3480
|
+
-webkit-transform: rotate(359deg);
|
|
3481
|
+
transform: rotate(359deg);
|
|
3482
|
+
}
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
.pi-mobile:before {
|
|
3486
|
+
content: "\e982";
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
.pi-tablet:before {
|
|
3490
|
+
content: "\e983";
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
.pi-key:before {
|
|
3494
|
+
content: "\e981";
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
.pi-shopping-cart:before {
|
|
3498
|
+
content: "\e980";
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
.pi-comments:before {
|
|
3502
|
+
content: "\e97e";
|
|
3503
|
+
}
|
|
3504
|
+
|
|
3505
|
+
.pi-comment:before {
|
|
3506
|
+
content: "\e97f";
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3509
|
+
.pi-briefcase:before {
|
|
3510
|
+
content: "\e97d";
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3513
|
+
.pi-bell:before {
|
|
3514
|
+
content: "\e97c";
|
|
3515
|
+
}
|
|
3516
|
+
|
|
3517
|
+
.pi-paperclip:before {
|
|
3518
|
+
content: "\e97b";
|
|
3519
|
+
}
|
|
3520
|
+
|
|
3521
|
+
.pi-share-alt:before {
|
|
3522
|
+
content: "\e97a";
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
.pi-envelope:before {
|
|
3526
|
+
content: "\e979";
|
|
3527
|
+
}
|
|
3528
|
+
|
|
3529
|
+
.pi-volume-down:before {
|
|
3530
|
+
content: "\e976";
|
|
3531
|
+
}
|
|
3532
|
+
|
|
3533
|
+
.pi-volume-up:before {
|
|
3534
|
+
content: "\e977";
|
|
3535
|
+
}
|
|
3536
|
+
|
|
3537
|
+
.pi-volume-off:before {
|
|
3538
|
+
content: "\e978";
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
.pi-eject:before {
|
|
3542
|
+
content: "\e975";
|
|
3543
|
+
}
|
|
3544
|
+
|
|
3545
|
+
.pi-money-bill:before {
|
|
3546
|
+
content: "\e974";
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3549
|
+
.pi-images:before {
|
|
3550
|
+
content: "\e973";
|
|
3551
|
+
}
|
|
3552
|
+
|
|
3553
|
+
.pi-image:before {
|
|
3554
|
+
content: "\e972";
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
.pi-sign-in:before {
|
|
3558
|
+
content: "\e970";
|
|
3559
|
+
}
|
|
3560
|
+
|
|
3561
|
+
.pi-sign-out:before {
|
|
3562
|
+
content: "\e971";
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
.pi-wifi:before {
|
|
3566
|
+
content: "\e96f";
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
.pi-sitemap:before {
|
|
3570
|
+
content: "\e96e";
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
.pi-chart-bar:before {
|
|
3574
|
+
content: "\e96d";
|
|
3575
|
+
}
|
|
3576
|
+
|
|
3577
|
+
.pi-camera:before {
|
|
3578
|
+
content: "\e96c";
|
|
3579
|
+
}
|
|
3580
|
+
|
|
3581
|
+
.pi-dollar:before {
|
|
3582
|
+
content: "\e96b";
|
|
3583
|
+
}
|
|
3584
|
+
|
|
3585
|
+
.pi-lock-open:before {
|
|
3586
|
+
content: "\e96a";
|
|
3587
|
+
}
|
|
3588
|
+
|
|
3589
|
+
.pi-table:before {
|
|
3590
|
+
content: "\e969";
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
.pi-map-marker:before {
|
|
3594
|
+
content: "\e968";
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3597
|
+
.pi-list:before {
|
|
3598
|
+
content: "\e967";
|
|
3599
|
+
}
|
|
3600
|
+
|
|
3601
|
+
.pi-eye-slash:before {
|
|
3602
|
+
content: "\e965";
|
|
3603
|
+
}
|
|
3604
|
+
|
|
3605
|
+
.pi-eye:before {
|
|
3606
|
+
content: "\e966";
|
|
3607
|
+
}
|
|
3608
|
+
|
|
3609
|
+
.pi-folder-open:before {
|
|
3610
|
+
content: "\e964";
|
|
3611
|
+
}
|
|
3612
|
+
|
|
3613
|
+
.pi-folder:before {
|
|
3614
|
+
content: "\e963";
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
.pi-video:before {
|
|
3618
|
+
content: "\e962";
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
.pi-inbox:before {
|
|
3622
|
+
content: "\e961";
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3625
|
+
.pi-lock:before {
|
|
3626
|
+
content: "\e95f";
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
.pi-unlock:before {
|
|
3630
|
+
content: "\e960";
|
|
3631
|
+
}
|
|
3632
|
+
|
|
3633
|
+
.pi-tags:before {
|
|
3634
|
+
content: "\e95d";
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
.pi-tag:before {
|
|
3638
|
+
content: "\e95e";
|
|
3639
|
+
}
|
|
3640
|
+
|
|
3641
|
+
.pi-power-off:before {
|
|
3642
|
+
content: "\e95c";
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3645
|
+
.pi-save:before {
|
|
3646
|
+
content: "\e95b";
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3649
|
+
.pi-question-circle:before {
|
|
3650
|
+
content: "\e959";
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3653
|
+
.pi-question:before {
|
|
3654
|
+
content: "\e95a";
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
.pi-copy:before {
|
|
3658
|
+
content: "\e957";
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3661
|
+
.pi-file:before {
|
|
3662
|
+
content: "\e958";
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3665
|
+
.pi-clone:before {
|
|
3666
|
+
content: "\e955";
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
.pi-calendar-times:before {
|
|
3670
|
+
content: "\e952";
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3673
|
+
.pi-calendar-minus:before {
|
|
3674
|
+
content: "\e953";
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
.pi-calendar-plus:before {
|
|
3678
|
+
content: "\e954";
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3681
|
+
.pi-ellipsis-v:before {
|
|
3682
|
+
content: "\e950";
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3685
|
+
.pi-ellipsis-h:before {
|
|
3686
|
+
content: "\e951";
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
.pi-bookmark:before {
|
|
3690
|
+
content: "\e94e";
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
.pi-globe:before {
|
|
3694
|
+
content: "\e94f";
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.pi-replay:before {
|
|
3698
|
+
content: "\e94d";
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
.pi-filter:before {
|
|
3702
|
+
content: "\e94c";
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
.pi-print:before {
|
|
3706
|
+
content: "\e94b";
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.pi-align-right:before {
|
|
3710
|
+
content: "\e946";
|
|
3711
|
+
}
|
|
3712
|
+
|
|
3713
|
+
.pi-align-left:before {
|
|
3714
|
+
content: "\e947";
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
.pi-align-center:before {
|
|
3718
|
+
content: "\e948";
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
.pi-align-justify:before {
|
|
3722
|
+
content: "\e949";
|
|
3723
|
+
}
|
|
3724
|
+
|
|
3725
|
+
.pi-cog:before {
|
|
3726
|
+
content: "\e94a";
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
.pi-cloud-download:before {
|
|
3730
|
+
content: "\e943";
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
.pi-cloud-upload:before {
|
|
3734
|
+
content: "\e944";
|
|
3735
|
+
}
|
|
3736
|
+
|
|
3737
|
+
.pi-cloud:before {
|
|
3738
|
+
content: "\e945";
|
|
3739
|
+
}
|
|
3740
|
+
|
|
3741
|
+
.pi-pencil:before {
|
|
3742
|
+
content: "\e942";
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
.pi-users:before {
|
|
3746
|
+
content: "\e941";
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
.pi-clock:before {
|
|
3750
|
+
content: "\e940";
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3753
|
+
.pi-user-minus:before {
|
|
3754
|
+
content: "\e93e";
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
.pi-user-plus:before {
|
|
3758
|
+
content: "\e93f";
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3761
|
+
.pi-trash:before {
|
|
3762
|
+
content: "\e93d";
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3765
|
+
.pi-external-link:before {
|
|
3766
|
+
content: "\e93c";
|
|
3767
|
+
}
|
|
3768
|
+
|
|
3769
|
+
.pi-window-maximize:before {
|
|
3770
|
+
content: "\e93b";
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3773
|
+
.pi-window-minimize:before {
|
|
3774
|
+
content: "\e93a";
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
.pi-refresh:before {
|
|
3778
|
+
content: "\e938";
|
|
3779
|
+
}
|
|
3780
|
+
|
|
3781
|
+
.pi-user:before {
|
|
3782
|
+
content: "\e939";
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
.pi-exclamation-triangle:before {
|
|
3786
|
+
content: "\e922";
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
.pi-calendar:before {
|
|
3790
|
+
content: "\e927";
|
|
3791
|
+
}
|
|
3792
|
+
|
|
3793
|
+
.pi-chevron-circle-left:before {
|
|
3794
|
+
content: "\e928";
|
|
3795
|
+
}
|
|
3796
|
+
|
|
3797
|
+
.pi-chevron-circle-down:before {
|
|
3798
|
+
content: "\e929";
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
.pi-chevron-circle-right:before {
|
|
3802
|
+
content: "\e92a";
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
.pi-chevron-circle-up:before {
|
|
3806
|
+
content: "\e92b";
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
.pi-angle-double-down:before {
|
|
3810
|
+
content: "\e92c";
|
|
3811
|
+
}
|
|
3812
|
+
|
|
3813
|
+
.pi-angle-double-left:before {
|
|
3814
|
+
content: "\e92d";
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
.pi-angle-double-right:before {
|
|
3818
|
+
content: "\e92e";
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
.pi-angle-double-up:before {
|
|
3822
|
+
content: "\e92f";
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3825
|
+
.pi-angle-down:before {
|
|
3826
|
+
content: "\e930";
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
.pi-angle-left:before {
|
|
3830
|
+
content: "\e931";
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
.pi-angle-right:before {
|
|
3834
|
+
content: "\e932";
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3837
|
+
.pi-angle-up:before {
|
|
3838
|
+
content: "\e933";
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
.pi-upload:before {
|
|
3842
|
+
content: "\e934";
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
.pi-download:before {
|
|
3846
|
+
content: "\e956";
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
.pi-ban:before {
|
|
3850
|
+
content: "\e935";
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
.pi-star-o:before {
|
|
3854
|
+
content: "\e936";
|
|
3855
|
+
}
|
|
3856
|
+
|
|
3857
|
+
.pi-star:before {
|
|
3858
|
+
content: "\e937";
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
.pi-chevron-left:before {
|
|
3862
|
+
content: "\e900";
|
|
3863
|
+
}
|
|
3864
|
+
|
|
3865
|
+
.pi-chevron-right:before {
|
|
3866
|
+
content: "\e901";
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
.pi-chevron-down:before {
|
|
3870
|
+
content: "\e902";
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3873
|
+
.pi-chevron-up:before {
|
|
3874
|
+
content: "\e903";
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
.pi-caret-left:before {
|
|
3878
|
+
content: "\e904";
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
.pi-caret-right:before {
|
|
3882
|
+
content: "\e905";
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3885
|
+
.pi-caret-down:before {
|
|
3886
|
+
content: "\e906";
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
.pi-caret-up:before {
|
|
3890
|
+
content: "\e907";
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
.pi-search:before {
|
|
3894
|
+
content: "\e908";
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3897
|
+
.pi-check:before {
|
|
3898
|
+
content: "\e909";
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3901
|
+
.pi-check-circle:before {
|
|
3902
|
+
content: "\e90a";
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
.pi-times:before {
|
|
3906
|
+
content: "\e90b";
|
|
3907
|
+
}
|
|
3908
|
+
|
|
3909
|
+
.pi-times-circle:before {
|
|
3910
|
+
content: "\e90c";
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3913
|
+
.pi-plus:before {
|
|
3914
|
+
content: "\e90d";
|
|
3915
|
+
}
|
|
3916
|
+
|
|
3917
|
+
.pi-plus-circle:before {
|
|
3918
|
+
content: "\e90e";
|
|
3919
|
+
}
|
|
3920
|
+
|
|
3921
|
+
.pi-minus:before {
|
|
3922
|
+
content: "\e90f";
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
.pi-minus-circle:before {
|
|
3926
|
+
content: "\e910";
|
|
3927
|
+
}
|
|
3928
|
+
|
|
3929
|
+
.pi-circle-on:before {
|
|
3930
|
+
content: "\e911";
|
|
3931
|
+
}
|
|
3932
|
+
|
|
3933
|
+
.pi-circle-off:before {
|
|
3934
|
+
content: "\e912";
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
.pi-sort-down:before {
|
|
3938
|
+
content: "\e913";
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3941
|
+
.pi-sort-up:before {
|
|
3942
|
+
content: "\e914";
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
.pi-sort:before {
|
|
3946
|
+
content: "\e915";
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
.pi-step-backward:before {
|
|
3950
|
+
content: "\e916";
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
.pi-step-forward:before {
|
|
3954
|
+
content: "\e917";
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3957
|
+
.pi-th-large:before {
|
|
3958
|
+
content: "\e918";
|
|
3959
|
+
}
|
|
3960
|
+
|
|
3961
|
+
.pi-arrow-down:before {
|
|
3962
|
+
content: "\e919";
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
.pi-arrow-left:before {
|
|
3966
|
+
content: "\e91a";
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
.pi-arrow-right:before {
|
|
3970
|
+
content: "\e91b";
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3973
|
+
.pi-arrow-up:before {
|
|
3974
|
+
content: "\e91c";
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
.pi-bars:before {
|
|
3978
|
+
content: "\e91d";
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
.pi-arrow-circle-down:before {
|
|
3982
|
+
content: "\e91e";
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
.pi-arrow-circle-left:before {
|
|
3986
|
+
content: "\e91f";
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
.pi-arrow-circle-right:before {
|
|
3990
|
+
content: "\e920";
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
.pi-arrow-circle-up:before {
|
|
3994
|
+
content: "\e921";
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
.pi-info:before {
|
|
3998
|
+
content: "\e923";
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
.pi-info-circle:before {
|
|
4002
|
+
content: "\e924";
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
.pi-home:before {
|
|
4006
|
+
content: "\e925";
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
.pi-spinner:before {
|
|
4010
|
+
content: "\e926";
|
|
4011
|
+
}
|
|
4012
|
+
.button-menu.ui-menu{width:auto;padding:0}.button-menu.ui-menu .ui-menuitem-icon{min-width:16px;display:inline-block;font-size:16px}.button-menu.ui-menu .ui-menuitem-link{font-size:14px;height:48px;display:flex;align-items:center;padding:0 12px;border-radius:0}.button-menu.ui-menu .ui-menuitem{margin:0}.button-menu.ui-menu .ui-menuitem+.ui-menuitem{border-top:1px solid #444}.ui-widget{box-sizing:border-box}.ui-widget *{box-sizing:border-box}.ui-corner-all{border-radius:3px}.ui-corner-top{border-top-left-radius:3px;border-top-right-radius:3px}.ui-corner-bottom{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.ui-corner-left{border-top-left-radius:3px;border-bottom-left-radius:3px}.ui-corner-right{border-top-right-radius:3px;border-bottom-right-radius:3px}.ui-helper-hidden{display:none !important}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-hidden-accessible input{transform:scale(0)}.ui-helper-hidden-accessible select{transform:scale(0)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix::before{content:"";display:table}.ui-helper-clearfix::after{content:"";display:table;clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default !important}.ui-state-disabled a{cursor:default !important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.3)}.ui-unselectable-text{user-select:none}.ui-scrollbar-measure{width:100px;height:100px;overflow:scroll;position:absolute;top:-9999px}.ui-overflow-hidden{overflow:hidden}::-webkit-input-placeholder{color:#fff}:-moz-placeholder{color:#fff;opacity:1}::-moz-placeholder{color:#fff;opacity:1}:-ms-input-placeholder{color:#fff}::-ms-input-placeholder{color:#fff}.ui-placeholder{color:#fff}input[type=button]{border-radius:0}input[type=submit]{border-radius:0}input[type=reset]{border-radius:0}input[type=file]::-webkit-file-upload-button{border-radius:0}button{border-radius:0}.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-hovering:hover{cursor:pointer}.pi-caret-down:before{content:}.pi-caret-up:before{content:}.pi-caret-left:before{content:}.pi-caret-right:before{content:}.pi-chevron-left:before{content:}.pi-chevron-right:before{content:}.pi-chevron-up:before{content:}.pi-chevron-down:before{content:}.pi-check:before{content:}.pi-unsorted:before,.pi-sort:before{content:}.pi-sort-down:before,.pi-sort-desc:before{content:}.pi-sort-up:before,.pi-sort-asc:before{content:}.ui-button{display:inline-block;position:relative;padding:0;margin:0;margin-right:6px;vertical-align:middle;border:none;border-radius:3px;transition:0.3333333333s;box-shadow:none;line-height:inherit;text-decoration:none;text-transform:none;white-space:nowrap;cursor:pointer;text-align:center;zoom:1;overflow:visible;height:37px}.ui-button .ui-button-text{line-height:inherit;padding-top:7px}.ui-button-text-only .ui-button-text{padding:7px 18px}.ui-button-icon-only .ui-button-text,.ui-button-text-empty .ui-button-text{padding:8px 18px}.ui-button-text-icon-right .ui-button-text{padding:6px 46px 6px 23px}.ui-button-small{height:31px;font-size:12px}.ui-button-small.ui-button-text-icon-left .ui-button-text{padding-left:28px}.ui-button-small .ui-button-icon-left{left:10px}.ui-button-small.ui-button-icon-only{width:2.357em}.ui-button-small.ui-button-icon-only .ui-button-icon-left{top:50%;left:50%;margin-top:-0.5em;margin-left:-0.5em;width:1em;height:1em}.ui-button-small.ui-button-icon-only .ui-button-text{padding:.429em}.ui-button-small .ui-button-icon-only .ui-button-icon-left{top:50%;left:50%;margin-top:-0.5em;margin-left:-0.5em;width:1em;height:1em}.ui-button-icon-only .ui-button-icon-left,.ui-button-text-icon-left .ui-button-icon-left,.ui-button-text-icon-right .ui-button-icon-right{margin-top:-6px}.ui-button-icon-only .ui-button-icon-left{margin-top:-6px;margin-left:-12px;width:23px;height:23px}.ui-button-icon-left{left:11px}.ui-button-icon-right{right:12px}.ui-buttonset .ui-button{margin-left:0;margin-right:0}button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-fluid .ui-button{width:100%}.ui-fluid .ui-button-text-icon-left .ui-button-text,.ui-fluid .ui-button-text-icon-right .ui-button-text{padding-left:23px;padding-right:23px}.ui-fluid .ui-buttonset{width:100%}.ui-fluid .ui-buttonset.ui-buttonset-1 .ui-button{width:100%}.ui-fluid .ui-buttonset.ui-buttonset-2 .ui-button{width:50%}.ui-fluid .ui-buttonset.ui-buttonset-3 .ui-button{width:33.3%}.ui-fluid .ui-buttonset.ui-buttonset-4 .ui-button{width:25%}.ui-fluid .ui-buttonset.ui-buttonset-5 .ui-button{width:20%}.ui-fluid .ui-buttonset.ui-buttonset-6 .ui-button{width:16.6%}@media(max-width: 640px){.ui-fluid .ui-buttonset.ui-buttonset-1 .ui-button,.ui-fluid .ui-buttonset.ui-buttonset-2 .ui-button,.ui-fluid .ui-buttonset.ui-buttonset-3 .ui-button,.ui-fluid .ui-buttonset.ui-buttonset-4 .ui-button,.ui-fluid .ui-buttonset.ui-buttonset-5 .ui-button,.ui-fluid .ui-buttonset.ui-buttonset-6 .ui-button{width:100%}}.ui-button-tab{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui-selectbutton-small .ui-button{height:36px;border-radius:0}.ui-selectbutton-small .ui-button .ui-button-icon-left{left:12px}.ui-selectbutton-small .ui-button:first-child{border-bottom-left-radius:3px;border-top-left-radius:3px}.ui-selectbutton-small .ui-button:last-child{border-bottom-right-radius:3px;border-top-right-radius:3px}.ui-selectbutton-small .ui-button.ui-button-icon-only .ui-button-icon-left{top:50%;left:50%;margin-top:-0.5em;margin-left:-0.5em;width:1em;height:1em}.ui-selectbutton-small .ui-button .ui-button-icon-only .ui-button-icon-left{top:50%;left:50%;margin-top:-0.5em;margin-left:-0.5em;width:1em;height:1em}.ui-button-icon-only{font-size:18px;display:inline-flex;align-items:center;justify-content:center}.ui-button-icon-only.ui-button-large{width:48px;height:48px}.ui-button-icon-only.ui-button-large .svg{display:inline-block;line-height:0}.ui-button-icon-only .svg{display:inline-block;line-height:0}.ui-selectbutton-tab .ui-button{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui-inputtext{padding:6px 12px;line-height:1.6428571429;transition:all,0.3333333333s;border:1px solid rgba(0,0,0,0);border:var(--ids-theme-inuit-forms-border_outer, 1px solid transparent);border-radius:3px;font-family:inherit;font-size:14px;outline:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,0);box-shadow:var(--ids-theme-inuit-forms-border-inner, inset 0 0 0 1px transparent);box-sizing:border-box;background-color:rgba(255,255,255,.05);background-color:var(--ids-theme-inuit-forms-background, rgba(255, 255, 255, 0.05));color:#fff;color:var(--ids-theme-inuit-forms-color, #FFFFFF);-webkit-appearance:none;-webkit-tap-highlight-color:rgba(32,33,39,0);-webkit-tap-highlight-color:rgba(var(--ids-theme-input-tap-highlight-color-rgb, 32,33,39), 0);-moz-appearance:none;width:140px}.ui-inputtext::placeholder{color:rgba(255,255,255,.6);color:rgba(var(--ids-theme-inuit-forms-color-rgb, 255,255,255), 0.6)}.ui-inputtext:hover{border-color:#78f4ff;border-color:var(--ids-theme-primary-rgb, #78f4ff)}.ui-inputtext:focus{border-color:#78f4ff;border-color:var(--ids-theme-inuit-forms-border_outer_focused, #78f4ff);box-shadow:0 0 7px 0px #78f4ff;box-shadow:var(--ids-theme-inuit-forms-border_inner_focused, 0 0 7px 0px #78f4ff);outline:0}.ui-inputtext[readonly],.ui-inputtext[disabled]{box-shadow:none}.ui-inputtext[readonly]{border:none;border:var(--ids-theme-inuit-forms-border_readonly, none);color:#ebebeb;color:var(--ids-theme-inuit-forms-color_readonly, #EBEBEB)}.ui-inputtext[readonly]:focus{border-color:rgba(0,0,0,0);box-shadow:none}.ui-inputtext[disabled]{border:#53555c;border:var(--ids-theme-inuit-forms-border_disabled, #53555C);box-shadow:none;background-color:#53555c;background-color:var(--ids-theme-inuit-forms-background_disabled, #53555C);color:#cdced0;color:var(--ids-theme-inuit-forms-color_disabled, #CDCED0);cursor:not-allowed}.ui-inputtext[disabled]::-webkit-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-inputtext[disabled]:-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-inputtext[disabled]::-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-inputtext[disabled]:-ms-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-chkbox{display:inline-block;margin-bottom:2px;cursor:pointer}.ui-chkbox .ui-chkbox-box .ui-chkbox-icon{display:inline-block;position:relative;height:20px;top:4px;margin-bottom:0;padding-left:28px;font-size:14px;font-weight:normal;line-height:1.6428571429;text-transform:none;cursor:pointer}.ui-chkbox .ui-chkbox-box .ui-chkbox-icon::before,.ui-chkbox .ui-chkbox-box .ui-chkbox-icon::after{position:absolute;left:0;width:20px;height:20px;border-radius:2px;background:rgba(0,0,0,0);border:2px solid #fff;content:" "}.ui-chkbox .ui-chkbox-box .ui-chkbox-icon::after{top:-2px;left:-2px;width:24px;height:24px;transition:transform .1s ease-in-out,opacity .2s linear;opacity:0;border:0 none}.ui-chkbox .ui-chkbox-box .ui-chkbox-icon.pi-check::after{background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI0IDI0Ij4KPCEtLUdlbmVyYXRvcjogU2tldGNoIDQ1LjIgKDQzNTE0KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaC0tPgogIDx0aXRsZT4KICAgIEljb24vY2hlY2tib3hfb24KICA8L3RpdGxlPgogIDxkZXNjPgogICAgQ3JlYXRlZCB3aXRoIFNrZXRjaC4KICA8L2Rlc2M+CiAgPGRlZnM+CiAgICA8cGF0aCBpZD0iY2hlY2tib3hfb24tYSIgZD0iTTIsMy45OTA3OTUxNCBDMiwyLjg5MTMwOTM0IDIuODk4MjEyMzgsMiAzLjk5MDc5NTE0LDIgTDIwLjAwOTIwNDksMiBDMjEuMTA4NjkwNywyIDIyLDIuODk4MjEyMzggMjIsMy45OTA3OTUxNCBMMjIsMjAuMDA5MjA0OSBDMjIsMjEuMTA4NjkwNyAyMS4xMDE3ODc2LDIyIDIwLjAwOTIwNDksMjIgTDMuOTkwNzk1MTQsMjIgQzIuODkxMzA5MzQsMjIgMiwyMS4xMDE3ODc2IDIsMjAuMDA5MjA0OSBMMiwzLjk5MDc5NTE0IFogTTkuMzAyNzcxMjYsMTcuOTI0NzczMyBMMTguODA4LDcuNDY5MTk2MzYgTDE3LjE5MjkzMjIsNiBMOS4yMjg1MjUzLDE0Ljc2MTg5NTcgTDYuNTQzNDQyMzEsMTIuMDc2ODEyOCBMNSwxMy42MjExMjg1IEw5LjMwMjc3MTI2LDE3LjkyNDc3MzMgWiIvPgogIDwvZGVmcz4KICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIj4KICAgIDxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgeD0iMiIgeT0iMiIvPgogICAgPG1hc2sgaWQ9ImNoZWNrYm94X29uLWIiIGZpbGw9IiNmZmYiPgogICAgICA8dXNlIHhsaW5rOmhyZWY9IiNjaGVja2JveF9vbi1hIi8+CiAgICA8L21hc2s+CiAgICA8Zy8+CiAgICA8ZyBmaWxsPSIjNzhGNEZGIiBtYXNrPSJ1cmwoI2NoZWNrYm94X29uLWIpIj4KICAgICAgPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB4PSIwIiB5PSIwIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K");opacity:1}.ui-chkbox .ui-chkbox-box .ui-chkbox-icon.pi-minus::after{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI0IDI0Ij4gIDxkZWZzPiAgICA8cGF0aCBpZD0iY2hlY2tib3hfaW5kZXRlcm1pbmF0ZS1jb3B5Mi1hIiBkPSJNMiwyLjgzMzMzMzMzIEMyLDIuMzczMDk2MDQgMi4zNzMwOTYwNCwyIDIuODMzMzMzMzMsMiBMMjEuMTY2NjY2NywyIEMyMS42MjY5MDQsMiAyMiwyLjM3MzA5NjA0IDIyLDIuODMzMzMzMzMgTDIyLDIxLjE2NjY2NjcgQzIyLDIxLjYyNjkwNCAyMS42MjY5MDQsMjIgMjEuMTY2NjY2NywyMiBMMi44MzMzMzMzMywyMiBDMi4zNzMwOTYwNCwyMiAyLDIxLjYyNjkwNCAyLDIxLjE2NjY2NjcgTDIsMi44MzMzMzMzMyBaIE0xNiwxMyBDMTYuNTUyMjg0NywxMyAxNywxMi41NTIyODQ3IDE3LDEyIEMxNywxMS40NDc3MTUzIDE2LjU1MjI4NDcsMTEgMTYsMTEgTDgsMTEgQzcuNDQ3NzE1MjUsMTEgNywxMS40NDc3MTUzIDcsMTIgQzcsMTIuNTUyMjg0NyA3LjQ0NzcxNTI1LDEzIDgsMTMgTDE2LDEzIFoiLz4gIDwvZGVmcz4gIDx1c2UgZmlsbD0iIzc4RjRGRiIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgeGxpbms6aHJlZj0iI2NoZWNrYm94X2luZGV0ZXJtaW5hdGUtY29weTItYSIvPjwvc3ZnPg==");opacity:1}.ui-chkbox .ui-chkbox-box.ui-state-active .ui-chkbox-icon.pi-check::after,.ui-chkbox .ui-chkbox-box.ui-state-active .ui-chkbox-icon.pi-minus::after{opacity:1}.ui-chkbox .ui-chkbox-box.ui-state-active{background:none}.ui-chkbox-label{vertical-align:middle}.ui-dropdown-items-wrapper .ui-dropdown-list{background:var(--colorBgLevel3)}.ui-dropdown-schedule .ui-dropdown-label{padding-right:1.5em}.ui-multiselect{display:inline-block;position:relative;width:auto;cursor:pointer;padding:6px 12px;line-height:1.6428571429;transition:all,0.3333333333s;border:1px solid rgba(0,0,0,0);border:var(--ids-theme-inuit-forms-border_outer, 1px solid transparent);border-radius:3px;font-family:inherit;font-size:14px;outline:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,0);box-shadow:var(--ids-theme-inuit-forms-border-inner, inset 0 0 0 1px transparent);box-sizing:border-box;background-color:rgba(255,255,255,.05);background-color:var(--ids-theme-inuit-forms-background, rgba(255, 255, 255, 0.05));color:#fff;color:var(--ids-theme-inuit-forms-color, #FFFFFF);-webkit-appearance:none;-webkit-tap-highlight-color:rgba(32,33,39,0);-webkit-tap-highlight-color:rgba(var(--ids-theme-input-tap-highlight-color-rgb, 32,33,39), 0);-moz-appearance:none}.ui-multiselect::placeholder{color:rgba(255,255,255,.6);color:rgba(var(--ids-theme-inuit-forms-color-rgb, 255,255,255), 0.6)}.ui-multiselect:hover{border-color:#78f4ff;border-color:var(--ids-theme-primary-rgb, #78f4ff)}.ui-multiselect:focus{border-color:#78f4ff;border-color:var(--ids-theme-inuit-forms-border_outer_focused, #78f4ff);box-shadow:0 0 7px 0px #78f4ff;box-shadow:var(--ids-theme-inuit-forms-border_inner_focused, 0 0 7px 0px #78f4ff);outline:0}.ui-multiselect[readonly],.ui-multiselect[disabled]{box-shadow:none}.ui-multiselect[readonly]{border:none;border:var(--ids-theme-inuit-forms-border_readonly, none);color:#ebebeb;color:var(--ids-theme-inuit-forms-color_readonly, #EBEBEB)}.ui-multiselect[readonly]:focus{border-color:rgba(0,0,0,0);box-shadow:none}.ui-multiselect[disabled]{border:#53555c;border:var(--ids-theme-inuit-forms-border_disabled, #53555C);box-shadow:none;background-color:#53555c;background-color:var(--ids-theme-inuit-forms-background_disabled, #53555C);color:#cdced0;color:var(--ids-theme-inuit-forms-color_disabled, #CDCED0);cursor:not-allowed}.ui-multiselect[disabled]::-webkit-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-multiselect[disabled]:-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-multiselect[disabled]::-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-multiselect[disabled]:-ms-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-multiselect .ui-multiselect-trigger{border-right:none;border-top:none;border-bottom:none;cursor:pointer;width:1.5em;height:100%;position:absolute;right:0;top:0;padding:0 .25em}.ui-multiselect .ui-multiselect-trigger .fa{margin-top:12px;margin-left:-0.125em}.ui-multiselect .ui-multiselect-label-container{overflow:hidden}.ui-multiselect .ui-multiselect-label{display:block;padding:0;width:auto;border:none;cursor:pointer;text-overflow:ellipsis;line-height:1.6428571429;font-size:13px;overflow:hidden;word-break:break-all;margin-bottom:0;border:1px solid rgba(0,0,0,0)}.ui-multiselect.ui-state-disabled .ui-multiselect-trigger{cursor:auto}.ui-multiselect.ui-state-disabled .ui-multiselect-label{cursor:auto}.ui-multiselect .ui-multiselect-panel{min-width:200px;display:none;background:#30333c}.ui-multiselect-panel{padding:6px;position:absolute;min-width:12em;background:#30333c}.ui-multiselect-panel .ui-multiselect-items-wrapper{overflow:auto;position:relative;padding:6px 0}.ui-multiselect-panel .ui-multiselect-list{border:0 none}.ui-multiselect-panel .ui-multiselect-item{border:0 none;cursor:pointer;font-weight:normal;margin:1px 0;padding:.125em 6px;text-align:left;white-space:nowrap;display:block;position:relative;margin-bottom:6px}.ui-multiselect-panel .ui-multiselect-item .ui-chkbox{display:inline-block;vertical-align:middle}.ui-multiselect-panel .ui-multiselect-item label{display:inline-block;vertical-align:middle;margin-bottom:0}.ui-multiselect-panel .ui-multiselect-item.ui-state-highlight{background:rgba(var(--ids-theme-primary-rgb, 120,244,255), 0.5);color:#fff}.ui-multiselect-header{margin-bottom:6px;padding:6px;position:relative;text-align:left;min-height:2em}.ui-multiselect-header .ui-chkbox{display:inline-block;vertical-align:middle;cursor:pointer}.ui-multiselect-header .ui-multiselect-filter-container{position:relative;display:inline-block;vertical-align:middle;width:65%}.ui-multiselect-header .ui-multiselect-filter-container .fa{position:absolute;top:12px;left:6px}.ui-multiselect-header .ui-inputtext{width:100%;padding:6px 12px;line-height:1.6428571429;transition:all,0.3333333333s;border:1px solid rgba(0,0,0,0);border:var(--ids-theme-inuit-forms-border_outer, 1px solid transparent);border-radius:3px;font-family:inherit;font-size:14px;outline:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,0);box-shadow:var(--ids-theme-inuit-forms-border-inner, inset 0 0 0 1px transparent);box-sizing:border-box;background-color:rgba(255,255,255,.05);background-color:var(--ids-theme-inuit-forms-background, rgba(255, 255, 255, 0.05));color:#fff;color:var(--ids-theme-inuit-forms-color, #FFFFFF);-webkit-appearance:none;-webkit-tap-highlight-color:rgba(32,33,39,0);-webkit-tap-highlight-color:rgba(var(--ids-theme-input-tap-highlight-color-rgb, 32,33,39), 0);-moz-appearance:none;display:inline-block;width:100%;padding-left:23px}.ui-multiselect-header .ui-inputtext::placeholder{color:rgba(255,255,255,.6);color:rgba(var(--ids-theme-inuit-forms-color-rgb, 255,255,255), 0.6)}.ui-multiselect-header .ui-inputtext:hover{border-color:#78f4ff;border-color:var(--ids-theme-primary-rgb, #78f4ff)}.ui-multiselect-header .ui-inputtext:focus{border-color:#78f4ff;border-color:var(--ids-theme-inuit-forms-border_outer_focused, #78f4ff);box-shadow:0 0 7px 0px #78f4ff;box-shadow:var(--ids-theme-inuit-forms-border_inner_focused, 0 0 7px 0px #78f4ff);outline:0}.ui-multiselect-header .ui-inputtext[readonly],.ui-multiselect-header .ui-inputtext[disabled]{box-shadow:none}.ui-multiselect-header .ui-inputtext[readonly]{border:none;border:var(--ids-theme-inuit-forms-border_readonly, none);color:#ebebeb;color:var(--ids-theme-inuit-forms-color_readonly, #EBEBEB)}.ui-multiselect-header .ui-inputtext[readonly]:focus{border-color:rgba(0,0,0,0);box-shadow:none}.ui-multiselect-header .ui-inputtext[disabled]{border:#53555c;border:var(--ids-theme-inuit-forms-border_disabled, #53555C);box-shadow:none;background-color:#53555c;background-color:var(--ids-theme-inuit-forms-background_disabled, #53555C);color:#cdced0;color:var(--ids-theme-inuit-forms-color_disabled, #CDCED0);cursor:not-allowed}.ui-multiselect-header .ui-inputtext[disabled]::-webkit-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-multiselect-header .ui-inputtext[disabled]:-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-multiselect-header .ui-inputtext[disabled]::-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-multiselect-header .ui-inputtext[disabled]:-ms-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.ui-multiselect-header .ui-multiselect-filter-container .ui-multiselect-filter-icon{top:.75em;left:.5em}.ui-multiselect-header .ui-multiselect-close{position:absolute;right:6px;top:12px;display:block;font-size:1em;border:0 none}.ui-multiselect-header .ui-multiselect-close.ui-state-hover{padding:0}.ui-multiselect-header a.ui-multiselect-all{float:left;margin-right:10px;display:block}.ui-multiselect-header a.ui-multiselect-none{float:left;margin-right:10px;display:block}.ui-multiselect-header.ui-multiselect-header-no-toggleall .ui-multiselect-filter-container{width:85%}.ui-fluid .ui-multiselect{width:100%;box-sizing:border-box}.ui-card-title{font-size:inherit;margin-bottom:0}.ui-dialog{position:fixed;padding:0;background-color:#30333c}.ui-dialog .ui-dialog-titlebar{padding:.5em .75em;position:relative;border:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em .75em;background:rgba(0,0,0,0);overflow:auto;zoom:1}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-dialog .ui-dialog-titlebar-icon{text-decoration:none;float:right;float:right;padding:.125em;cursor:pointer;border:1px solid rgba(0,0,0,0)}.ui-dialog .ui-dialog-titlebar-icon span{display:block;margin:0;font-size:20px}.ui-dialog-footer{padding:1em;border-width:1px 0 0 0;text-align:right}.ui-dialog-mask{position:fixed;width:100%;height:100%}.ui-dialog-maximized{-webkit-transition:left .3s,top .3s,width .3s,height .3s;transition:left .3s,top .3s,width .3s,height .3s}.ui-confirmdialog{width:30em}.ui-confirmdialog.ui-dialog .ui-dialog-content{padding:1em 2em}.ui-confirmdialog .ui-dialog-content .ui-confirmdialog-icon{font-size:1.5em;vertical-align:middle;margin-right:.5em}.ui-confirmdialog .ui-dialog-content .ui-confirmdialog-message{vertical-align:middle}.ui-dialog-footer .ui-button{margin-right:.25em}.ui-fluid .ui-dialog-footer .ui-button{width:auto}.ui-rtl .ui-dialog .ui-dialog-titlebar-close{float:left}.ui-rtl .ui-dialog .ui-dialog-buttonpane button{text-align:right}.ui-widget-overlay{background-color:rgba(0,0,0,.5)}@media screen and (max-width: 40em){.ui-confirmdialog{width:90%}}.ui-table{position:relative}.ui-table table{border-collapse:collapse;width:100%;table-layout:fixed}.ui-table .ui-sortable-column{cursor:pointer;position:relative;padding-right:18px !important}.ui-table .ui-sortable-column .c-sorticon a{align-self:center}.ui-table .ui-sortable-column-icon{align-self:center}.ui-table .ui-sortable-column-buttons{position:absolute;top:0;right:0;width:18px;height:100%;display:inline-flex;align-items:center}.ui-table .ui-sortable-column-buttons>a{position:absolute;top:50%;right:0;left:0;transform:translateY(-50%)}.ui-table .ui-paginator-top{border-bottom:0 none}.ui-table .ui-paginator-bottom{border-top:0 none}.ui-table .ui-column-resizer{display:block;position:absolute !important;top:0;right:-8px;margin:0;width:16px;height:100%;padding:0;z-index:1;cursor:ew-resize;border:1px solid rgba(0,0,0,0)}.ui-table .ui-column-resizer:hover:before{content:"";position:absolute;left:7px;top:2px;width:2px;height:calc(100% - 4px);background:var(--ids-theme-primary, #78f4ff)}.ui-table .ui-column-resizer-helper{width:1px;position:absolute;z-index:10;display:none}.ui-table .ui-table-scrollable-wrapper{height:calc(100% - 72px)}.ui-table .ui-table-scrollable-wrapper>div,.ui-table .ui-table-scrollable-wrapper div[ng-reflect-columns]{height:100%}.ui-table .ui-table-thead{background:rgba(255,255,255,.2)}.ui-table .ui-table-thead>tr>th{height:36px;padding:6px 12px;border:1px solid rgba(32,33,39,.5);text-align:left;min-width:100px}.ui-table .ui-table-thead>tr>th>.ui-table-thead-title{height:24px;line-height:24px;overflow:hidden;text-overflow:ellipsis;font-width:normal;font-size:13px;white-space:nowrap}.ui-table .ui-table-tbody>tr>td{padding:6px 12px;min-width:100px;white-space:nowrap}.ui-table .ui-table-tbody>tr>td.ui-editing-cell{padding:0}.ui-table .ui-table-tbody>tr>td.ui-editing-cell p-celleditor>*{width:100%}.ui-table .ui-table-tbody>tr>td>.ui-table-tbody-content{overflow:hidden;text-overflow:ellipsis;font-width:normal;font-size:13px;white-space:nowrap}.ui-table .ui-table-tbody>tr:nth-child(even)>td{position:relative}.ui-table .ui-table-tbody>tr:nth-child(even)>td::before{background:rgba(255,255,255,.1);width:100%;height:100%;position:absolute;content:" ";left:0;top:0}.ui-table .ui-table-tfoot>tr>td{padding:6px 12px}.ui-table .ui-multiselect-label{margin-bottom:0;word-break:normal}.ui-selectable-row{cursor:pointer}.ui-table.ui-table-hoverable-rows .ui-table-tbody>tr.ui-selectable-row:not(.ui-state-highlight):not(.ui-contextmenu-selected):hover{cursor:pointer}.ui-table-caption{padding:6px 0;text-align:left;font-weight:bold;border-bottom:0 none}.ui-table-summary{padding:6px 12px;text-align:center;font-weight:bold;border-top:0 none}.ui-table-scrollable-header{overflow:hidden;border:0 none}.ui-table-scrollable-header-table{margin-bottom:0}.ui-table-scrollable-footer{overflow:hidden;border:0 none}.ui-table-scrollable-body{overflow:auto;position:relative;height:calc(100% - 8px) !important;max-height:80vh !important}@media(min-width: 64em){.ui-table-scrollable-body{max-height:none !important}}.ui-table-scrollable-body>table>.ui-table-tbody>tr:first-child>td{border-top:0 none}.ui-table-expanded-header .ui-table-scrollable-body{height:calc(100% - 70px) !important}.ui-table-virtual-table{position:absolute}.ui-table-frozen-view .ui-table-scrollable-body{overflow:hidden}.ui-table-frozen-view>.ui-table-scrollable-body>table>.ui-table-tbody>tr>td:last-child{border-right:0 none}.ui-table-unfrozen-view{position:absolute;top:0}.ui-table-resizable>.ui-table-wrapper{overflow-x:auto}.ui-table-resizable .ui-table-thead>tr>th{overflow:hidden}.ui-table-resizable .ui-table-thead>tr>th.ui-resizable-column{overflow:visible}.ui-table-resizable .ui-table-tfoot>tr>td{overflow:hidden}.ui-table-resizable .ui-table-data>tr>td{overflow:hidden}.ui-resizable-column{background-clip:padding-box;position:relative}.ui-table-reorder-indicator-up{position:absolute;display:none}.ui-table-reorder-indicator-down{position:absolute;display:none}@media screen and (max-width: 40em){.ui-table-responsive .ui-table-thead>tr>th{display:none !important}.ui-table-responsive .ui-table-tfoot>tr>td{display:none !important}.ui-table-responsive .ui-table-tbody>tr>td{text-align:left;display:block;border:0 none;width:100% !important;box-sizing:border-box;float:left;clear:left}.ui-table-responsive .ui-table-tbody>tr>td .ui-column-title{padding:.4em;min-width:30%;display:inline-block;margin:-0.4em 1em -0.4em -0.4em;font-weight:bold}}.ui-table-loading{position:absolute;width:100%;height:100%;opacity:.1;z-index:1}.ui-table-loading-content{position:absolute;left:50%;top:50%;z-index:2;margin-top:-1em;margin-left:-1em}.ui-table-auto-layout>.ui-table-wrapper{overflow-x:auto}.ui-table-auto-layout>.ui-table-wrapper>table{table-layout:auto}.ui-table-resizable-fit .ui-resizable-column:last-child .ui-column-resizer{display:none}.ui-table-responsive .ui-table-tbody>tr>td .ui-column-title{display:none}.ui-steps .ui-steps-item.ui-state-highlight{border:1px solid #78f4ff}.ui-fileupload-choose input[type=file]{position:absolute;top:0;right:0;margin:0;opacity:0;min-height:100%;font-size:inherit;text-align:right;filter:alpha(opacity=0);direction:ltr;cursor:pointer;border-color:#2ca02c}.ui-tree{width:100%;background-color:rgba(0,0,0,0);border:none;padding:0}.ui-tree .ui-treenode-selectable.ui-treenode-content{cursor:pointer;position:relative}.ui-tree .ui-tree-container{height:100%;margin:0;padding:.25em;white-space:nowrap}.ui-tree-empty-message{padding:.25em}.ui-tree .ui-treenode-children{margin:0;padding:0 0 0 1em}.ui-tree .ui-treenode{background-attachment:scroll;background-color:rgba(0,0,0,0);background-image:none;background-position:0 0;background-repeat:repeat-y;list-style:none outside none;margin:0;padding:.125em 0 0 0}.ui-tree .ui-treenode .ui-treenode-content{position:relative}.ui-tree .ui-treenode-droppoint{height:4px;list-style-type:none}.ui-tree .ui-treenode-droppoint-active{border:0 none}.ui-tree .ui-tree-toggler{cursor:pointer;display:inline-block;padding:12px;padding-left:0;vertical-align:middle}.ui-tree .ui-treenode-icon{display:inline-block;vertical-align:middle}.ui-tree .ui-treenode-label{display:inline-block;padding:0 .25em;vertical-align:middle}.ui-tree .ui-treenode-label.ui-state-hover,.ui-tree .ui-treenode-label.ui-state-highlight{font-weight:normal;border:0 none}.ui-tree .ui-treenode.ui-treenode-leaf>.ui-treenode-content>.ui-tree-toggler{visibility:hidden}.ui-tree .ui-chkbox-box{cursor:pointer}.ui-tree .ui-chkbox{display:inline-block;vertical-align:middle}.ui-tree .ui-chkbox .ui-chkbox-icon{margin-left:1px}.ui-fluid .ui-tree{width:100%}.ui-tree-horizontal{width:auto;padding:.5em 0;overflow:auto}.ui-tree.ui-tree-horizontal table,.ui-tree.ui-tree-horizontal tr,.ui-tree.ui-tree-horizontal td{border-collapse:collapse;margin:0;padding:0;vertical-align:middle}.ui-tree.ui-tree-horizontal .ui-tree-toggler{vertical-align:middle;margin:0}.ui-tree-horizontal .ui-treenode-content{font-weight:normal;padding:.4em 1em .4em .2em}.ui-tree.ui-tree-horizontal .ui-tree-node-label{margin:0}.ui-tree-horizontal .ui-treenode-parent .ui-treenode-content{font-weight:normal;white-space:nowrap}.ui-tree.ui-tree-horizontal .ui-treenode{background:none;padding:.25em 2.5em}.ui-tree.ui-tree-horizontal .ui-treenode.ui-treenode-leaf,.ui-tree.ui-tree-horizontal .ui-treenode.ui-treenode-collapsed{padding-right:0}.ui-tree.ui-tree-horizontal .ui-treenode-children{padding:0;margin:0}.ui-tree.ui-tree-horizontal .ui-treenode-connector{width:1px}.ui-tree.ui-tree-horizontal .ui-treenode-connector-table{height:100%;width:1px}.ui-tree.ui-tree-horizontal .ui-treenode-connector-line{background:none;width:1px}.ui-tree.ui-tree-horizontal table{height:0}.ui-tree.ui-tree-horizontal .ui-chkbox{vertical-align:bottom;margin-right:.25em}.ui-tree.ui-tree-loading{position:relative;min-height:4em}.ui-tree .ui-tree-loading-mask{position:absolute;width:100%;height:100%;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";opacity:.1;z-index:1}.ui-tree .ui-tree-loading-content{position:absolute;left:50%;top:50%;z-index:2;margin-top:-1em;margin-left:-1em}.ui-tree .ui-tree-filter-container{padding:0}.ui-tree-filter-icon{display:none}.ui-treetable{position:relative}.ui-treetable table{border-collapse:collapse;width:100%;table-layout:fixed}.ui-treetable .ui-treetable-thead>tr>th,.ui-treetable .ui-treetable-tbody>tr>td,.ui-treetable .ui-treetable-tfoot>tr>td{padding:6px 12px}.ui-treetable .ui-treetable-thead{background:rgba(255,255,255,.2)}.ui-treetable .ui-treetable-thead>tr>th{height:36px;padding:6px 12px;border:1px solid rgba(32,33,39,.5);text-align:left;min-width:100px}.ui-treetable .ui-treetable-thead>tr>th>.ui-treetable-thead-title{height:24px;line-height:24px;overflow:hidden;text-overflow:ellipsis;font-width:normal;font-size:13px;white-space:nowrap}.ui-treetable .ui-treetable-tbody>tr>td{min-width:100px;vertical-align:middle;white-space:nowrap;border:1px solid rgba(0,0,0,0)}.ui-treetable .ui-treetable-tbody>tr>td.ui-editing-cell{padding:0}.ui-treetable .ui-treetable-tbody>tr>td.ui-editing-cell p-celleditor>*{width:100%}.ui-treetable .ui-treetable-tbody>tr>td .ui-treetable-tbody-content{display:inline-block;width:100%;vertical-align:middle;overflow:hidden;text-overflow:ellipsis;font-width:normal;font-size:13px;white-space:nowrap}.ui-treetable .ui-treetable-tbody>tr:nth-child(even)>td{background:rgba(255,255,255,.1)}.ui-treetable .ui-treetable-toggler{cursor:pointer;display:inline-block;padding:0 12px;padding-left:0;vertical-align:middle;font-size:10.5px;color:#fff}.ui-treetable .ui-treetable-tbody>tr>td>.ui-treetable-tbody-content_has-toggler{width:calc(100% - 48px)}.ui-treetable .ui-sortable-column{cursor:pointer;position:relative;padding-right:18px !important}.ui-treetable .ui-sortable-column .c-sorticon a{align-self:center}.ui-treetable-auto-layout>.ui-treetable-wrapper{overflow-x:auto}.ui-treetable-auto-layout>.ui-treetable-wrapper>table{table-layout:auto}.ui-treetable .ui-treetable-chkbox{margin:0;vertical-align:middle}.ui-treetable-caption,.ui-treetable-summary{padding:6px 0;text-align:left;font-weight:bold;border-bottom:0 none}.ui-treetable-caption{border-bottom:0 none}.ui-treetable-summary{border-top:0 none}.ui-treetable .ui-paginator-top{border-bottom:0 none}.ui-treetable .ui-paginator-bottom{border-top:0 none}.ui-treetable-scrollable-wrapper{position:relative;height:calc(100% - 72px)}.ui-treetable-scrollable-wrapper>div,.ui-treetable-scrollable-wrapper div[ng-reflect-columns]{height:100%}.ui-treetable-scrollable-header,.ui-treetable-scrollable-footer{overflow:hidden;border:0 none}.ui-treetable-scrollable-header-table{margin-bottom:0}.ui-treetable-scrollable-body{overflow:auto;position:relative;height:calc(100% - 20px) !important;max-height:80vh !important}@media(min-width: 64em){.ui-treetable-scrollable-body{max-height:none !important}}.ui-treetable-scrollable-body>table>.ui-treetable-tbody>tr:first-child>td{border-top:0 none}.ui-treetable-scrollable-body>table>.ui-treetable-tbody>tr:first-child>td{border-top:0 none}.ui-treetable-virtual-table{position:absolute}.ui-treetable-frozen-view .ui-treetable-scrollable-body{overflow:hidden}.ui-treetable-frozen-view>.ui-treetable-scrollable-body>table>.ui-treetable-tbody>tr>td:last-child{border-right:0 none}.ui-treetable-unfrozen-view{position:absolute;top:0}.ui-treetable-resizable>.ui-treetable-wrapper{overflow-x:auto}.ui-treetable-resizable .ui-treetable-thead>tr>th{overflow:hidden}.ui-treetable-resizable .ui-treetable-thead>tr>th.ui-resizable-column{overflow:visible}.ui-treetable-resizable .ui-treetable-tfoot>tr>td{overflow:hidden}.ui-treetable-resizable .ui-treetable-data>tr>td{overflow:hidden}.ui-treetable-resizable .ui-resizable-column{background-clip:padding-box;position:relative}.ui-treetable-resizable-fit .ui-resizable-column:last-child .ui-column-resizer{display:none}.ui-treetable .ui-column-resizer{display:block;position:absolute !important;top:0;right:-8px;margin:0;width:16px;height:100%;padding:0;z-index:1;cursor:ew-resize;border:1px solid rgba(0,0,0,0)}.ui-treetable .ui-column-resizer:hover:before{content:"";position:absolute;left:7px;top:2px;width:2px;height:calc(100% - 4px);background:var(--ids-theme-primary, #78f4ff)}.ui-treetable .ui-treetable-header-chkbox{margin-bottom:0}.ui-treetable .ui-column-resizer-helper{width:1px;position:absolute;z-index:10;display:none}.ui-treetable .ui-treetable-tbody>tr>td.ui-editing-cell{padding-top:0;padding-bottom:0}.ui-treetable .ui-treetable-tbody>tr>td.ui-editing-cell p-treetablecelleditor>*{width:100%}.ui-treetable-reorder-indicator-up,.ui-treetable-reorder-indicator-down{position:absolute;display:none}.ui-treetable-responsive .ui-treetable-tbody>tr>td .ui-column-title{display:none}@media screen and (max-width: 40em){.ui-treetable-responsive .ui-treetable-thead>tr>th,.ui-treetable-responsive .ui-treetable-tfoot>tr>td{display:none !important}.ui-treetable-responsive .ui-treetable-tbody>tr>td{text-align:left;display:block;border:0 none;width:100% !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;clear:left}.ui-treetable-responsive .ui-treetable-tbody>tr>td .ui-column-title{padding:.4em;min-width:30%;display:inline-block;margin:-0.4em 1em -0.4em -0.4em;font-weight:bold}}.ui-treetable-loading{position:absolute;width:100%;height:100%;opacity:.1;z-index:1}.ui-treetable-loading-content{position:absolute;left:50%;top:50%;z-index:2;margin-top:-1em;margin-left:-1em}.ui-treetable-loading-icon{font-size:2em}.ui-treetable .ui-treetable-t>tr{background-color:rgba(0,0,0,0)}.ui-treetable .ui-treetable-t>tr>td{border:none}.ui-treetable .ui-treetable-thead>tr>th{border-color:rgba(0,0,0,0)}.ui-menu{width:14em;padding:.25em;background-color:#30333c}.ui-menu-list{background-color:#30333c}.ui-menu.ui-menu-dynamic{position:absolute}.ui-menu .ui-menu-separator{border-width:1px 0 0 0}.ui-menu ul{list-style:none;margin:0;padding:0}.ui-menu .ui-submenu-header{padding:.25em .5em;margin:.125em 0}.ui-menu .ui-menuitem{margin:.125em 0}.ui-menu .ui-menuitem-link{padding:.25em;display:block;text-decoration:none;color:#fff}.ui-menu .ui-menuitem-link:hover,.ui-menu .ui-menuitem-link:focus{color:#fff;background-color:rgba(126,128,135,.8)}.ui-menu .ui-menuitem-icon{margin-right:.25em;vertical-align:middle}.ui-menu .ui-menuitem-text{vertical-align:middle}.ui-contextmenu{width:12.5em;padding:.25em;position:absolute;display:none}.ui-contextmenu .ui-menu-separator{border-width:1px 0 0 0}.ui-contextmenu ul{list-style:none;margin:0;padding:0}.ui-contextmenu .ui-submenu-list{display:none;position:absolute;width:25em;padding:.75em}.ui-contextmenu .ui-menuitem-link{padding:.25em;display:block;position:relative}.ui-contextmenu .ui-menuitem-icon{margin-right:.25em;vertical-align:middle}.ui-contextmenu .ui-menuitem-text{vertical-align:middle}.ui-contextmenu .ui-menuitem{position:relative}.ui-contextmenu .ui-menuitem-link .ui-submenu-icon{position:absolute;margin-top:-0.5em;right:0;top:50%}.ui-contextmenu .ui-menuitem-active>.ui-submenu>.ui-submenu-list{display:block !important}@media(max-height: 800px){.ui-contextmenu .ui-menuitem-active>.ui-submenu>.ui-submenu-list{max-height:18rem;overflow-y:auto}}.ui-lightbox{position:fixed;display:none}.ui-lightbox-content-wrapper{position:relative}.ui-lightbox-content{position:relative;margin:0;padding:0;background-color:#000}.ui-lightbox-nav-right,.ui-lightbox-nav-left{position:absolute;top:50%;cursor:pointer}.ui-lightbox-nav-left{left:0}.ui-lightbox-nav-right{right:0}.ui-lightbox-caption{padding:.2em .4em;display:none}.ui-lightbox-caption-text{margin:.3em 0 .1em 0;float:left}.ui-lightbox-close{float:right;margin:0;padding:.125em}.ui-lightbox-close.ui-state-hover{padding:0}.ui-lightbox-nav-left,.ui-lightbox-nav-right{opacity:.5}.ui-lightbox-nav-left:hover,.ui-lightbox-nav-right:hover{opacity:1}.ui-lightbox-link-wrapper{display:block;color:inherit;text-decoration:none;max-height:100%;overflow:hidden}.ui-lightbox-link-wrapper:hover,.ui-lightbox-link-wrapper:active,.ui-lightbox-link-wrapper:focus{color:inherit;text-decoration:none}.ui-lightbox-eye-on-hover:hover:after{content:"";display:flex;position:absolute;top:0;left:0;height:100%;width:100%;padding:0 42%;padding:0 calc(50% - 12px);align-items:center;font-family:"FontAwesome";font-size:24px;cursor:pointer;pointer-events:none}.ui-listbox .ui-listbox-header .ui-listbox-filter-container input{padding:.429em;padding-right:2em}.ui-listbox .ui-listbox-header .ui-listbox-filter-container .ui-listbox-filter-icon{top:50%;left:auto;margin-top:-0.5em;right:.5em;font-size:18px}.ui-listbox-item .ui-chkbox{vertical-align:middle;margin-bottom:0}.ui-radiobutton{display:inline-block;cursor:pointer;vertical-align:middle;margin-right:.25em;user-select:none;-moz-user-select:none;-webkit-user-select:none}.ui-radiobutton-box{border:1px solid #a6a6a6;width:20px;height:20px;line-height:20px;-moz-border-radius:100%;-webkit-border-radius:100%;border-radius:100%;text-align:center;position:relative}.ui-radiobutton-icon{border:1px solid rgba(0,0,0,0);background-color:rgba(0,0,0,0);display:block;position:absolute;left:50%;top:50%;width:10px;height:10px;margin-top:-5px;margin-left:-5px;border-radius:50%}.ui-radiobutton-icon:before{content:""}.ui-radiobutton-box.ui-state-active .ui-radiobutton-icon{border:1px solid rgba(0,0,0,0);background-color:#78f4ff}.ui-radiobutton-box.ui-state-active{border-color:#78f4ff}.ui-radiobutton,.ui-radiobutton-label{margin-bottom:0}.ui-slider{position:relative;text-align:left}.ui-slider-limit-handle{position:absolute;height:1.5em;width:1px;border:0 none;margin-top:-1em}.ui-slider-limit-handle:before{content:"";position:absolute;border:1px solid #f71800;height:20px;width:1px;top:-10%}.ui-slider-limit-handle__title{position:absolute;padding-left:4px;font-size:10px;line-height:1.5}.ui-slider{background-color:rgba(255,255,255,.05);border:0 none}.ui-slider .ui-slider-handle{position:absolute;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none;z-index:1;box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23)}.ui-slider .ui-slider-handle{background-color:#78f4ff;border:2px solid #78f4ff;border-radius:100%}.ui-slider .ui-slider-handle.ui-slider-handle-active{z-index:2}.ui-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider .ui-slider-range{background-color:rgba(120,244,255,.5)}.ui-state-disabled .ui-slider-range{background-color:rgba(120,244,255,.5);border:0 none}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-0.2em;margin-left:-0.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-0.25em;margin-left:0;margin-bottom:-0.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-slider-animate .ui-slider-handle{transition:left .3s}.ui-sidebar{overflow:auto}.ui-sidebar-close{font-size:20px}.ui-tabview .ui-tabview-panel{padding:12px 6px}.ui-datepicker{background:var(--element-background);padding:8px}.ui-datepicker a:hover{background:var(--colorBgLevel2)}.ui-calendar .ui-calendar-button{height:37px}.ui-calendar{display:inline-flex;align-items:center}.ui-calendar .ui-button-icon-only .ui-button-icon-left{margin-top:-9px}.ui-calendar .ui-button-text{vertical-align:middle}.ui-state-active{background:var(--colorBgSecondary)}.ui-state-disabled{opacity:.4}.ui-datepicker-calendar .ui-datepicker-today .ui-state-highlight{color:var(--colorText);background-color:rgba(0,0,0,0);border:1px solid var(--colorLinkInverse)}.ui-datepicker-calendar .ui-datepicker-today .ui-state-highlight.ui-state-active{background:var(--colorBgSecondary)}.ui-picklist-buttons-cell button .ui-button-text{padding:0}p-pickList{display:flex;height:100%}.ui-picklist-buttons{margin-top:10%}.ui-picklist-listwrapper{display:block;height:100%}.ui-picklist.ui-picklist-responsive{height:100%;display:inline-flex;flex-wrap:nowrap}.ui-picklist .ui-picklist-buttons{height:12.5em;padding:0 12px}.ui-picklist.ui-picklist-responsive .ui-picklist-list{height:600px;background:var(--ids-theme-webkit-scrollbar-track-bg, #202127)}.ui-picklist .ui-picklist-filter-container{position:relative;width:100%;padding:.5em 0em;border-bottom:0 none}.ui-picklist .ui-picklist-filter-container .ui-picklist-filter-icon{left:.5em}.theme-contrast .ui-state-highlight{border-color:#78f4ff;background-color:#78f4ff;color:#fff}.theme-contrast .ui-hovering:hover{background:var(--card-background-selected)}.theme-contrast .ui-button{border:none;border-radius:3px;color:#fff;background-color:var(--colorBg)}.theme-contrast .ui-button:hover{background-color:#1a1b1e}.theme-contrast .ui-button:active{background-color:#000}.theme-contrast .ui-button:disabled{cursor:default;color:rgba(255,255,255,.4);background-color:#494c55}.theme-contrast .ui-button.ui-state-active{border-color:#78f4ff;background-color:#78f4ff;color:#fff}.theme-contrast .ui-button-primary{border-color:rgba(0,0,0,0);box-shadow:none;background-color:#78f4ff}.theme-contrast .ui-button-primary,.theme-contrast .ui-button-primary:link,.theme-contrast .ui-button-primary:visited,.theme-contrast .ui-button-primary:hover,.theme-contrast .ui-button-primary:active{color:#30333c}.theme-contrast .ui-button-primary:hover{border-color:rgba(0,0,0,0);background-color:#12ecff}.theme-contrast .ui-button-primary:active{border-color:rgba(0,0,0,0);background-color:#009dab}.theme-contrast .ui-button-primary:disabled{background-color:#ebebeb;color:rgba(32,33,39,.4)}.theme-contrast .ui-button-secondary{border-color:rgba(0,0,0,0);box-shadow:none;background-color:#387382}.theme-contrast .ui-button-secondary,.theme-contrast .ui-button-secondary:link,.theme-contrast .ui-button-secondary:visited,.theme-contrast .ui-button-secondary:hover,.theme-contrast .ui-button-secondary:active{color:#fff}.theme-contrast .ui-button-secondary:hover{border-color:rgba(0,0,0,0);background-color:#19343b}.theme-contrast .ui-button-secondary:active{border-color:rgba(0,0,0,0);background-color:#000}.theme-contrast .ui-button-tertiary{border-color:rgba(0,0,0,0);box-shadow:none;background-color:#494c55}.theme-contrast .ui-button-tertiary,.theme-contrast .ui-button-tertiary:link,.theme-contrast .ui-button-tertiary:visited,.theme-contrast .ui-button-tertiary:hover,.theme-contrast .ui-button-tertiary:active{color:#fff}.theme-contrast .ui-button-tertiary:hover{border-color:rgba(0,0,0,0);background-color:#1a1b1e}.theme-contrast .ui-button-tertiary:active{border-color:rgba(0,0,0,0);background-color:#000}.theme-contrast .ui-button-dashed{border:4px dashed #fff;border:4px dashed var(--ids-theme-text-color, #FFFFFF)}.theme-contrast .ui-inputtext{padding:6px 12px;line-height:1.6428571429;transition:all,0.3333333333s;border:1px solid rgba(0,0,0,0);border:var(--ids-theme-inuit-forms-border_outer, 1px solid transparent);border-radius:3px;font-family:inherit;font-size:14px;outline:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,0);box-shadow:var(--ids-theme-inuit-forms-border-inner, inset 0 0 0 1px transparent);box-sizing:border-box;background-color:rgba(255,255,255,.05);background-color:var(--ids-theme-inuit-forms-background, rgba(255, 255, 255, 0.05));color:#fff;color:var(--ids-theme-inuit-forms-color, #FFFFFF);-webkit-appearance:none;-webkit-tap-highlight-color:rgba(32,33,39,0);-webkit-tap-highlight-color:rgba(var(--ids-theme-input-tap-highlight-color-rgb, 32,33,39), 0);-moz-appearance:none}.theme-contrast .ui-inputtext::placeholder{color:rgba(255,255,255,.6);color:rgba(var(--ids-theme-inuit-forms-color-rgb, 255,255,255), 0.6)}.theme-contrast .ui-inputtext:hover{border-color:#78f4ff;border-color:var(--ids-theme-primary-rgb, #78f4ff)}.theme-contrast .ui-inputtext:focus{border-color:#78f4ff;border-color:var(--ids-theme-inuit-forms-border_outer_focused, #78f4ff);box-shadow:0 0 7px 0px #78f4ff;box-shadow:var(--ids-theme-inuit-forms-border_inner_focused, 0 0 7px 0px #78f4ff);outline:0}.theme-contrast .ui-inputtext[readonly],.theme-contrast .ui-inputtext[disabled]{box-shadow:none}.theme-contrast .ui-inputtext[readonly]{border:none;border:var(--ids-theme-inuit-forms-border_readonly, none);color:#ebebeb;color:var(--ids-theme-inuit-forms-color_readonly, #EBEBEB)}.theme-contrast .ui-inputtext[readonly]:focus{border-color:rgba(0,0,0,0);box-shadow:none}.theme-contrast .ui-inputtext[disabled]{border:#53555c;border:var(--ids-theme-inuit-forms-border_disabled, #53555C);box-shadow:none;background-color:#53555c;background-color:var(--ids-theme-inuit-forms-background_disabled, #53555C);color:#cdced0;color:var(--ids-theme-inuit-forms-color_disabled, #CDCED0);cursor:not-allowed}.theme-contrast .ui-inputtext[disabled]::-webkit-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-contrast .ui-inputtext[disabled]:-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-contrast .ui-inputtext[disabled]::-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-contrast .ui-inputtext[disabled]:-ms-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-contrast .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::before,.theme-contrast .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::after{border:2px solid #fff}.theme-contrast .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::after{border:0 none;opacity:0}.theme-contrast .ui-chkbox .ui-chkbox-box .ui-chkbox-icon.pi-check::after{background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMjQgMjQiPiAgPHRpdGxlPiAgICBJY29uL2NoZWNrYm94X29uICA8L3RpdGxlPiAgPGRlc2M+ICAgIENyZWF0ZWQgd2l0aCBTa2V0Y2guICA8L2Rlc2M+ICA8ZGVmcz4gICAgPHBhdGggaWQ9ImNoZWNrYm94X29uLWEiIGQ9Ik0yLDMuOTkwNzk1MTQgQzIsMi44OTEzMDkzNCAyLjg5ODIxMjM4LDIgMy45OTA3OTUxNCwyIEwyMC4wMDkyMDQ5LDIgQzIxLjEwODY5MDcsMiAyMiwyLjg5ODIxMjM4IDIyLDMuOTkwNzk1MTQgTDIyLDIwLjAwOTIwNDkgQzIyLDIxLjEwODY5MDcgMjEuMTAxNzg3NiwyMiAyMC4wMDkyMDQ5LDIyIEwzLjk5MDc5NTE0LDIyIEMyLjg5MTMwOTM0LDIyIDIsMjEuMTAxNzg3NiAyLDIwLjAwOTIwNDkgTDIsMy45OTA3OTUxNCBaIE05LjMwMjc3MTI2LDE3LjkyNDc3MzMgTDE4LjgwOCw3LjQ2OTE5NjM2IEwxNy4xOTI5MzIyLDYgTDkuMjI4NTI1MywxNC43NjE4OTU3IEw2LjU0MzQ0MjMxLDEyLjA3NjgxMjggTDUsMTMuNjIxMTI4NSBMOS4zMDI3NzEyNiwxNy45MjQ3NzMzIFoiLz4gIDwvZGVmcz4gIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiPiAgICA8cmVjdCB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHg9IjIiIHk9IjIiLz4gICAgPG1hc2sgaWQ9ImNoZWNrYm94X29uLWIiIGZpbGw9IiNmZmYiPiAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2NoZWNrYm94X29uLWEiLz4gICAgPC9tYXNrPiAgICA8Zy8+ICAgIDxnIGZpbGw9IiMzODczODIiIG1hc2s9InVybCgjY2hlY2tib3hfb24tYikiPiAgICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgeD0iMCIgeT0iMCIvPiAgICA8L2c+ICA8L2c+PC9zdmc+");opacity:1}.theme-contrast .ui-chkbox .ui-chkbox-box .ui-chkbox-icon.pi-minus::after{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI0IDI0Ij4gIDxkZWZzPiAgICA8cGF0aCBpZD0iY2hlY2tib3hfaW5kZXRlcm1pbmF0ZS1jb3B5LWEiIGQ9Ik0yLDIuODMzMzMzMzMgQzIsMi4zNzMwOTYwNCAyLjM3MzA5NjA0LDIgMi44MzMzMzMzMywyIEwyMS4xNjY2NjY3LDIgQzIxLjYyNjkwNCwyIDIyLDIuMzczMDk2MDQgMjIsMi44MzMzMzMzMyBMMjIsMjEuMTY2NjY2NyBDMjIsMjEuNjI2OTA0IDIxLjYyNjkwNCwyMiAyMS4xNjY2NjY3LDIyIEwyLjgzMzMzMzMzLDIyIEMyLjM3MzA5NjA0LDIyIDIsMjEuNjI2OTA0IDIsMjEuMTY2NjY2NyBMMiwyLjgzMzMzMzMzIFogTTE2LDEzIEMxNi41NTIyODQ3LDEzIDE3LDEyLjU1MjI4NDcgMTcsMTIgQzE3LDExLjQ0NzcxNTMgMTYuNTUyMjg0NywxMSAxNiwxMSBMOCwxMSBDNy40NDc3MTUyNSwxMSA3LDExLjQ0NzcxNTMgNywxMiBDNywxMi41NTIyODQ3IDcuNDQ3NzE1MjUsMTMgOCwxMyBMMTYsMTMgWiIvPiAgPC9kZWZzPiAgPHVzZSBmaWxsPSIjMzg3MzgyIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiB4bGluazpocmVmPSIjY2hlY2tib3hfaW5kZXRlcm1pbmF0ZS1jb3B5LWEiLz48L3N2Zz4=");opacity:1}.theme-contrast .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::before,.theme-contrast .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::after{border:2px solid currentColor}.theme-contrast .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::after{border:0 none;opacity:0}.theme-contrast .ui-multiselect{display:inline-block;position:relative;width:auto;cursor:pointer}.theme-contrast .ui-multiselect .ui-multiselect-panel{background:#30333c}.theme-contrast .ui-multiselect-panel{background:#30333c}.theme-contrast .ui-multiselect-header .ui-inputtext{width:100%;padding:6px 12px;line-height:1.6428571429;transition:all,0.3333333333s;border:1px solid rgba(0,0,0,0);border:var(--ids-theme-inuit-forms-border_outer, 1px solid transparent);border-radius:3px;font-family:inherit;font-size:14px;outline:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,0);box-shadow:var(--ids-theme-inuit-forms-border-inner, inset 0 0 0 1px transparent);box-sizing:border-box;background-color:rgba(255,255,255,.05);background-color:var(--ids-theme-inuit-forms-background, rgba(255, 255, 255, 0.05));color:#fff;color:var(--ids-theme-inuit-forms-color, #FFFFFF);-webkit-appearance:none;-webkit-tap-highlight-color:rgba(32,33,39,0);-webkit-tap-highlight-color:rgba(var(--ids-theme-input-tap-highlight-color-rgb, 32,33,39), 0);-moz-appearance:none;display:inline-block;width:100%;padding-left:23px}.theme-contrast .ui-multiselect-header .ui-inputtext::placeholder{color:rgba(255,255,255,.6);color:rgba(var(--ids-theme-inuit-forms-color-rgb, 255,255,255), 0.6)}.theme-contrast .ui-multiselect-header .ui-inputtext:hover{border-color:#78f4ff;border-color:var(--ids-theme-primary-rgb, #78f4ff)}.theme-contrast .ui-multiselect-header .ui-inputtext:focus{border-color:#78f4ff;border-color:var(--ids-theme-inuit-forms-border_outer_focused, #78f4ff);box-shadow:0 0 7px 0px #78f4ff;box-shadow:var(--ids-theme-inuit-forms-border_inner_focused, 0 0 7px 0px #78f4ff);outline:0}.theme-contrast .ui-multiselect-header .ui-inputtext[readonly],.theme-contrast .ui-multiselect-header .ui-inputtext[disabled]{box-shadow:none}.theme-contrast .ui-multiselect-header .ui-inputtext[readonly]{border:none;border:var(--ids-theme-inuit-forms-border_readonly, none);color:#ebebeb;color:var(--ids-theme-inuit-forms-color_readonly, #EBEBEB)}.theme-contrast .ui-multiselect-header .ui-inputtext[readonly]:focus{border-color:rgba(0,0,0,0);box-shadow:none}.theme-contrast .ui-multiselect-header .ui-inputtext[disabled]{border:#53555c;border:var(--ids-theme-inuit-forms-border_disabled, #53555C);box-shadow:none;background-color:#53555c;background-color:var(--ids-theme-inuit-forms-background_disabled, #53555C);color:#cdced0;color:var(--ids-theme-inuit-forms-color_disabled, #CDCED0);cursor:not-allowed}.theme-contrast .ui-multiselect-header .ui-inputtext[disabled]::-webkit-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-contrast .ui-multiselect-header .ui-inputtext[disabled]:-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-contrast .ui-multiselect-header .ui-inputtext[disabled]::-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-contrast .ui-multiselect-header .ui-inputtext[disabled]:-ms-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-contrast .ui-card{background-color:var(--card-background)}.theme-contrast .ui-dialog{background-color:#30333c}.theme-contrast .ui-table.ui-table-hoverable-rows .ui-table-tbody>tr.ui-selectable-row:not(.ui-state-highlight):not(.ui-contextmenu-selected):hover{background-color:rgba(120,244,255,.6);color:#fff}.theme-contrast .ui-table .ui-table-thead>tr>th{background:rgba(255,255,255,.2);border:1px solid rgba(32,33,39,.5)}.theme-contrast .ui-table .ui-table-thead>tr>th{background:rgba(255,255,255,.2);border:1px solid rgba(32,33,39,.5)}.theme-contrast .ui-table-thead>tr>th.ui-state-highlight{background:rgba(255,255,255,.2);color:var(--ids-theme-text-color, #FFFFFF)}.theme-contrast .ui-table-thead>tr>th.ui-state-highlight .ui-sortable-column-icon{color:var(--ids-theme-primary, #78f4ff)}.theme-contrast .ui-table-tbody>tr:nth-child(even)>td::before{background:rgba(255,255,255,.1);width:100%;height:100%;position:absolute;content:" ";left:0;top:0}.theme-contrast .ui-table .ui-table-thead>tr.row_hover_highlight>th{border-color:#78f4ff;background-color:rgba(56,115,130,.4);color:#fff}.theme-contrast .ui-table .row:hover{background-color:rgba(120,244,255,.3)}.theme-contrast .ui-table .row:hover .cell-content_hover{color:#fff}.theme-contrast .ui-table .row.row_active,.theme-contrast .ui-table .row.ui-state-highlight{background-color:rgba(56,115,130,.2);color:#78f4ff;color:var(--ids-theme-primary, #78f4ff)}.theme-contrast .ui-table .row_active{background:rgba(56,115,130,.2);background:rgba(var(--ids-theme-secondary, #387382), 0.2)}.theme-contrast .ui-table .row_active.ui-state-highlight>td{color:#202127;background:rgba(56,115,130,.2)}.theme-contrast .ui-steps .ui-steps-item.ui-state-highlight{border:1px solid #78f4ff;background:none}.theme-contrast .ui-toast .ui-toast-message,.theme-contrast .ui-toast .ui-toast-message.ui-toast-message-info{background-color:#1f85ff;border:0 none;color:#fff}.theme-contrast .ui-toast .ui-toast-message .ui-toast-close-icon,.theme-contrast .ui-toast .ui-toast-message.ui-toast-message-info .ui-toast-close-icon{color:#fff}.theme-contrast .ui-toast .ui-toast-message.ui-toast-message-success{background-color:#31ac51;border:0 none;color:#fff}.theme-contrast .ui-toast .ui-toast-message.ui-toast-message-success .ui-toast-close-icon{color:#fff}.theme-contrast .ui-toast .ui-toast-message.ui-toast-message-warn{background-color:#ee9946;border:0 none;color:#fff}.theme-contrast .ui-toast .ui-toast-message.ui-toast-message-warn .ui-toast-close-icon{color:#fff}.theme-contrast .ui-toast .ui-toast-message.ui-toast-message-error{background-color:#f95c5d;border:0 none;color:#fff}.theme-contrast .ui-toast .ui-toast-message.ui-toast-message-error .ui-toast-close-icon{color:#fff}.theme-contrast .ui-radiobutton-box.ui-state-active .ui-radiobutton-icon{border:1px solid rgba(0,0,0,0);background-color:#78f4ff;background-color:var(--ids-theme-primary, #78f4ff)}.theme-contrast .ui-radiobutton-box.ui-state-active{border-color:#78f4ff;border-color:var(--ids-theme-primary, #78f4ff)}.theme-contrast .ui-treetable .ui-treetable-thead{background:rgba(255,255,255,.2)}.theme-contrast .ui-treetable .ui-treetable-thead>tr>th{border:1px solid rgba(32,33,39,.5)}.theme-contrast .ui-treetable .ui-treetable-thead>tr>th.ui-state-highlight{background:rgba(0,0,0,0);color:var(--ids-theme-text-color, #FFFFFF)}.theme-contrast .ui-treetable .ui-treetable-thead>tr>th.ui-state-highlight .ui-sortable-column-icon{color:var(--ids-theme-primary, #78f4ff)}.theme-contrast .ui-treetable .ui-table-tbody>tr:nth-child(even)>td::before{background:rgba(255,255,255,.1);width:100%;height:100%;position:absolute;content:" ";left:0;top:0}.theme-contrast .ui-treetable .ui-treetable-toggler{color:#fff}.theme-contrast .ui-treetable .ui-state-highlight .ui-treetable-toggler{color:#fff}.theme-contrast .ui-lightbox-eye-on-hover:hover:after{background:rgba(255,255,255,.7)}.theme-contrast .ui-lightbox-content{background-color:#30333c}.theme-contrast .ui-slider-limit-handle:before{border:1px solid #f71800}.theme-contrast .ui-slider{background-color:rgba(32,33,39,.1);border:0 none}.theme-contrast .ui-slider .ui-slider-handle{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23)}.theme-contrast .ui-slider .ui-slider-handle{background-color:var(--ids-theme-primary, #78f4ff);border:2px solid var(--ids-theme-primary, #78f4ff)}.theme-contrast .ui-slider .ui-slider-range{background-color:rgba(var(--ids-theme-primary-rgb, 120,244,255), 0.5)}.theme-contrast .ui-state-disabled .ui-slider-range{background-color:rgba(var(--ids-theme-primary-rgb, 120,244,255), 0.5);border:0 none}.theme-contrast .ui-listbox .ui-listbox-header .ui-listbox-filter-container .ui-listbox-filter-icon{color:#fff;color:var(--ids-theme-text-color, #FFFFFF)}.theme-contrast .ui-sidebar{background:#202127}.theme-contrast .content-tabview .ui-tabview-selected,.theme-contrast .content-tabview .ui-tabview-panel{background:rgba(32,33,39,.1)}.theme-contrast .ui-tabview .ui-tabview-selected{background:rgba(0,0,0,.2)}.theme-light .ui-state-highlight{border-color:#78f4ff;background-color:#387382;color:#fff}.theme-light .ui-hovering:hover{background:var(--card-background-selected)}.theme-light .ui-button{border:none;border:var(--ids-theme-btn-default-border, none);border-radius:3px;color:#fff;color:var(--ids-theme-btn-default-color, #FFFFFF);background-color:var(--colorBg)}.theme-light .ui-button:hover{background-color:#1a1b1e}.theme-light .ui-button:active{background-color:#000}.theme-light .ui-button:disabled{cursor:default;color:rgba(255,255,255,.4);background-color:#494c55}.theme-light .ui-button.ui-state-active{border-color:#78f4ff;background-color:#78f4ff;color:#fff}.theme-light .ui-button-primary{border-color:rgba(0,0,0,0);border-color:var(--ids-theme-btn-primary-border-color, transparent);box-shadow:none;background-color:#78f4ff;background-color:var(--ids-theme-btn-primary-background, #78f4ff)}.theme-light .ui-button-primary,.theme-light .ui-button-primary:link,.theme-light .ui-button-primary:visited,.theme-light .ui-button-primary:hover,.theme-light .ui-button-primary:active{color:#30333c}.theme-light .ui-button-primary:hover{border-color:rgba(0,0,0,0);background-color:#12ecff}.theme-light .ui-button-primary:active{border-color:rgba(0,0,0,0);background-color:#009dab}.theme-light .ui-button-primary:disabled{background-color:#ebebeb;color:rgba(32,33,39,.4)}.theme-light .ui-button-secondary{border-color:rgba(0,0,0,0);box-shadow:none;background-color:#387382}.theme-light .ui-button-secondary,.theme-light .ui-button-secondary:link,.theme-light .ui-button-secondary:visited,.theme-light .ui-button-secondary:hover,.theme-light .ui-button-secondary:active{color:#fff}.theme-light .ui-button-secondary:hover{border-color:rgba(0,0,0,0);background-color:#19343b}.theme-light .ui-button-secondary:active{border-color:rgba(0,0,0,0);background-color:#000}.theme-light .ui-button-tertiary{border-color:rgba(0,0,0,0);box-shadow:none;background-color:#494c55}.theme-light .ui-button-tertiary,.theme-light .ui-button-tertiary:link,.theme-light .ui-button-tertiary:visited,.theme-light .ui-button-tertiary:hover,.theme-light .ui-button-tertiary:active{color:#fff}.theme-light .ui-button-tertiary:hover{border-color:rgba(0,0,0,0);background-color:#1a1b1e}.theme-light .ui-button-tertiary:active{border-color:rgba(0,0,0,0);background-color:#000}.theme-light .ui-button-dashed{border:4px dashed #fff;border:4px dashed var(--ids-theme-text-color, #FFFFFF)}.theme-light .ui-inputtext{padding:6px 12px;line-height:1.6428571429;transition:all,0.3333333333s;border:1px solid rgba(0,0,0,0);border:var(--ids-theme-inuit-forms-border_outer, 1px solid transparent);border-radius:3px;font-family:inherit;font-size:14px;outline:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,0);box-shadow:var(--ids-theme-inuit-forms-border-inner, inset 0 0 0 1px transparent);box-sizing:border-box;background-color:rgba(255,255,255,.05);background-color:var(--ids-theme-inuit-forms-background, rgba(255, 255, 255, 0.05));color:#fff;color:var(--ids-theme-inuit-forms-color, #FFFFFF);-webkit-appearance:none;-webkit-tap-highlight-color:rgba(32,33,39,0);-webkit-tap-highlight-color:rgba(var(--ids-theme-input-tap-highlight-color-rgb, 32,33,39), 0);-moz-appearance:none}.theme-light .ui-inputtext::placeholder{color:rgba(255,255,255,.6);color:rgba(var(--ids-theme-inuit-forms-color-rgb, 255,255,255), 0.6)}.theme-light .ui-inputtext:hover{border-color:#78f4ff;border-color:var(--ids-theme-primary-rgb, #78f4ff)}.theme-light .ui-inputtext:focus{border-color:#78f4ff;border-color:var(--ids-theme-inuit-forms-border_outer_focused, #78f4ff);box-shadow:0 0 7px 0px #78f4ff;box-shadow:var(--ids-theme-inuit-forms-border_inner_focused, 0 0 7px 0px #78f4ff);outline:0}.theme-light .ui-inputtext[readonly],.theme-light .ui-inputtext[disabled]{box-shadow:none}.theme-light .ui-inputtext[readonly]{border:none;border:var(--ids-theme-inuit-forms-border_readonly, none);color:#ebebeb;color:var(--ids-theme-inuit-forms-color_readonly, #EBEBEB)}.theme-light .ui-inputtext[readonly]:focus{border-color:rgba(0,0,0,0);box-shadow:none}.theme-light .ui-inputtext[disabled]{border:#53555c;border:var(--ids-theme-inuit-forms-border_disabled, #53555C);box-shadow:none;background-color:#53555c;background-color:var(--ids-theme-inuit-forms-background_disabled, #53555C);color:#cdced0;color:var(--ids-theme-inuit-forms-color_disabled, #CDCED0);cursor:not-allowed}.theme-light .ui-inputtext[disabled]::-webkit-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-light .ui-inputtext[disabled]:-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-light .ui-inputtext[disabled]::-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-light .ui-inputtext[disabled]:-ms-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-light .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::before,.theme-light .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::after{border:2px solid #000}.theme-light .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::after{border:0 none;opacity:0}.theme-light .ui-chkbox .ui-chkbox-box .ui-chkbox-icon.pi-check::after{background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMjQgMjQiPiAgPHRpdGxlPiAgICBJY29uL2NoZWNrYm94X29uICA8L3RpdGxlPiAgPGRlc2M+ICAgIENyZWF0ZWQgd2l0aCBTa2V0Y2guICA8L2Rlc2M+ICA8ZGVmcz4gICAgPHBhdGggaWQ9ImNoZWNrYm94X29uLWEiIGQ9Ik0yLDMuOTkwNzk1MTQgQzIsMi44OTEzMDkzNCAyLjg5ODIxMjM4LDIgMy45OTA3OTUxNCwyIEwyMC4wMDkyMDQ5LDIgQzIxLjEwODY5MDcsMiAyMiwyLjg5ODIxMjM4IDIyLDMuOTkwNzk1MTQgTDIyLDIwLjAwOTIwNDkgQzIyLDIxLjEwODY5MDcgMjEuMTAxNzg3NiwyMiAyMC4wMDkyMDQ5LDIyIEwzLjk5MDc5NTE0LDIyIEMyLjg5MTMwOTM0LDIyIDIsMjEuMTAxNzg3NiAyLDIwLjAwOTIwNDkgTDIsMy45OTA3OTUxNCBaIE05LjMwMjc3MTI2LDE3LjkyNDc3MzMgTDE4LjgwOCw3LjQ2OTE5NjM2IEwxNy4xOTI5MzIyLDYgTDkuMjI4NTI1MywxNC43NjE4OTU3IEw2LjU0MzQ0MjMxLDEyLjA3NjgxMjggTDUsMTMuNjIxMTI4NSBMOS4zMDI3NzEyNiwxNy45MjQ3NzMzIFoiLz4gIDwvZGVmcz4gIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiPiAgICA8cmVjdCB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHg9IjIiIHk9IjIiLz4gICAgPG1hc2sgaWQ9ImNoZWNrYm94X29uLWIiIGZpbGw9IiNmZmYiPiAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2NoZWNrYm94X29uLWEiLz4gICAgPC9tYXNrPiAgICA8Zy8+ICAgIDxnIGZpbGw9IiMzODczODIiIG1hc2s9InVybCgjY2hlY2tib3hfb24tYikiPiAgICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgeD0iMCIgeT0iMCIvPiAgICA8L2c+ICA8L2c+PC9zdmc+");opacity:1}.theme-light .ui-chkbox .ui-chkbox-box .ui-chkbox-icon.pi-minus::after{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI0IDI0Ij4gIDxkZWZzPiAgICA8cGF0aCBpZD0iY2hlY2tib3hfaW5kZXRlcm1pbmF0ZS1jb3B5LWEiIGQ9Ik0yLDIuODMzMzMzMzMgQzIsMi4zNzMwOTYwNCAyLjM3MzA5NjA0LDIgMi44MzMzMzMzMywyIEwyMS4xNjY2NjY3LDIgQzIxLjYyNjkwNCwyIDIyLDIuMzczMDk2MDQgMjIsMi44MzMzMzMzMyBMMjIsMjEuMTY2NjY2NyBDMjIsMjEuNjI2OTA0IDIxLjYyNjkwNCwyMiAyMS4xNjY2NjY3LDIyIEwyLjgzMzMzMzMzLDIyIEMyLjM3MzA5NjA0LDIyIDIsMjEuNjI2OTA0IDIsMjEuMTY2NjY2NyBMMiwyLjgzMzMzMzMzIFogTTE2LDEzIEMxNi41NTIyODQ3LDEzIDE3LDEyLjU1MjI4NDcgMTcsMTIgQzE3LDExLjQ0NzcxNTMgMTYuNTUyMjg0NywxMSAxNiwxMSBMOCwxMSBDNy40NDc3MTUyNSwxMSA3LDExLjQ0NzcxNTMgNywxMiBDNywxMi41NTIyODQ3IDcuNDQ3NzE1MjUsMTMgOCwxMyBMMTYsMTMgWiIvPiAgPC9kZWZzPiAgPHVzZSBmaWxsPSIjMzg3MzgyIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiB4bGluazpocmVmPSIjY2hlY2tib3hfaW5kZXRlcm1pbmF0ZS1jb3B5LWEiLz48L3N2Zz4=");opacity:1}.theme-light .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::before,.theme-light .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::after{border:2px solid currentColor}.theme-light .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::after{border:0 none;opacity:0}.theme-light .ui-multiselect{display:inline-block;position:relative;width:auto;cursor:pointer}.theme-light .ui-multiselect .ui-multiselect-panel{background:#30333c}.theme-light .ui-multiselect-panel{background:#30333c}.theme-light .ui-multiselect-header .ui-inputtext{width:100%;padding:6px 12px;line-height:1.6428571429;transition:all,0.3333333333s;border:1px solid rgba(0,0,0,0);border:var(--ids-theme-inuit-forms-border_outer, 1px solid transparent);border-radius:3px;font-family:inherit;font-size:14px;outline:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,0);box-shadow:var(--ids-theme-inuit-forms-border-inner, inset 0 0 0 1px transparent);box-sizing:border-box;background-color:rgba(255,255,255,.05);background-color:var(--ids-theme-inuit-forms-background, rgba(255, 255, 255, 0.05));color:#fff;color:var(--ids-theme-inuit-forms-color, #FFFFFF);-webkit-appearance:none;-webkit-tap-highlight-color:rgba(32,33,39,0);-webkit-tap-highlight-color:rgba(var(--ids-theme-input-tap-highlight-color-rgb, 32,33,39), 0);-moz-appearance:none;display:inline-block;width:100%;padding-left:23px}.theme-light .ui-multiselect-header .ui-inputtext::placeholder{color:rgba(255,255,255,.6);color:rgba(var(--ids-theme-inuit-forms-color-rgb, 255,255,255), 0.6)}.theme-light .ui-multiselect-header .ui-inputtext:hover{border-color:#78f4ff;border-color:var(--ids-theme-primary-rgb, #78f4ff)}.theme-light .ui-multiselect-header .ui-inputtext:focus{border-color:#78f4ff;border-color:var(--ids-theme-inuit-forms-border_outer_focused, #78f4ff);box-shadow:0 0 7px 0px #78f4ff;box-shadow:var(--ids-theme-inuit-forms-border_inner_focused, 0 0 7px 0px #78f4ff);outline:0}.theme-light .ui-multiselect-header .ui-inputtext[readonly],.theme-light .ui-multiselect-header .ui-inputtext[disabled]{box-shadow:none}.theme-light .ui-multiselect-header .ui-inputtext[readonly]{border:none;border:var(--ids-theme-inuit-forms-border_readonly, none);color:#ebebeb;color:var(--ids-theme-inuit-forms-color_readonly, #EBEBEB)}.theme-light .ui-multiselect-header .ui-inputtext[readonly]:focus{border-color:rgba(0,0,0,0);box-shadow:none}.theme-light .ui-multiselect-header .ui-inputtext[disabled]{border:#53555c;border:var(--ids-theme-inuit-forms-border_disabled, #53555C);box-shadow:none;background-color:#53555c;background-color:var(--ids-theme-inuit-forms-background_disabled, #53555C);color:#cdced0;color:var(--ids-theme-inuit-forms-color_disabled, #CDCED0);cursor:not-allowed}.theme-light .ui-multiselect-header .ui-inputtext[disabled]::-webkit-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-light .ui-multiselect-header .ui-inputtext[disabled]:-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-light .ui-multiselect-header .ui-inputtext[disabled]::-moz-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-light .ui-multiselect-header .ui-inputtext[disabled]:-ms-input-placeholder{color:#cdced0;color:var(--ids-theme-inuit-forms-color_placeholder, #CDCED0);font-weight:normal}.theme-light .ui-card{background-color:var(--card-background)}.theme-light .ui-dialog{background-color:#30333c}.theme-light .ui-table.ui-table-hoverable-rows .ui-table-tbody>tr.ui-selectable-row:not(.ui-state-highlight):not(.ui-contextmenu-selected):hover{background-color:rgba(120,244,255,.6);color:#fff}.theme-light .ui-table .ui-table-thead>tr>th{background:rgba(255,255,255,.2);border:1px solid rgba(32,33,39,.5)}.theme-light .ui-table-thead>tr>th.ui-state-highlight{background:rgba(255,255,255,.2);color:var(--ids-theme-text-color, #FFFFFF)}.theme-light .ui-table-thead>tr>th.ui-state-highlight .ui-sortable-column-icon{color:var(--ids-theme-primary, #78f4ff)}.theme-light .ui-table-tbody>tr:nth-child(even)>td::before{background:rgba(255,255,255,.1);width:100%;height:100%;position:absolute;content:" ";left:0;top:0}.theme-light .ui-table .ui-table-thead>tr.row_hover_highlight>th{border-color:#78f4ff;background-color:rgba(56,115,130,.4);color:#fff}.theme-light .ui-table .row:hover{background-color:rgba(120,244,255,.2)}.theme-light .ui-table .row:hover .cell-content_hover{color:#fff}.theme-light .ui-table .row.row_active,.theme-light .ui-table .row.ui-state-highlight{background-color:rgba(56,115,130,.2);color:#78f4ff;color:var(--ids-theme-primary, #78f4ff)}.theme-light .ui-table .row_active{background:rgba(56,115,130,.2);background:rgba(var(--ids-theme-secondary, #387382), 0.2)}.theme-light .ui-table .row_active.ui-state-highlight>td{color:#202127;background:rgba(56,115,130,.2)}.theme-light .ui-steps .ui-steps-item.ui-state-highlight{border:1px solid #78f4ff;background:none}.theme-light .ui-radiobutton-box.ui-state-active .ui-radiobutton-icon{border:1px solid rgba(0,0,0,0);background-color:#78f4ff;background-color:var(--ids-theme-primary, #78f4ff)}.theme-light .ui-radiobutton-box.ui-state-active{border-color:#78f4ff;border-color:var(--ids-theme-primary, #78f4ff)}.theme-light .ui-toast .ui-toast-message,.theme-light .ui-toast .ui-toast-message.ui-toast-message-info{background-color:#1f85ff;border:0 none;color:#fff}.theme-light .ui-toast .ui-toast-message .ui-toast-close-icon,.theme-light .ui-toast .ui-toast-message.ui-toast-message-info .ui-toast-close-icon{color:#fff}.theme-light .ui-toast .ui-toast-message.ui-toast-message-success{background-color:#31ac51;border:0 none;color:#fff}.theme-light .ui-toast .ui-toast-message.ui-toast-message-success .ui-toast-close-icon{color:#fff}.theme-light .ui-toast .ui-toast-message.ui-toast-message-warn{background-color:#ee9946;border:0 none;color:#fff}.theme-light .ui-toast .ui-toast-message.ui-toast-message-warn .ui-toast-close-icon{color:#fff}.theme-light .ui-toast .ui-toast-message.ui-toast-message-error{background-color:#f95c5d;border:0 none;color:#fff}.theme-light .ui-toast .ui-toast-message.ui-toast-message-error .ui-toast-close-icon{color:#fff}.theme-light .ui-treetable .ui-treetable-thead{background:rgba(255,255,255,.2)}.theme-light .ui-treetable .ui-treetable-thead>tr>th{border:1px solid rgba(32,33,39,.5)}.theme-light .ui-treetable .ui-treetable-thead>tr>th.ui-state-highlight{background:rgba(0,0,0,0);color:var(--ids-theme-text-color, #FFFFFF)}.theme-light .ui-treetable .ui-treetable-thead>tr>th.ui-state-highlight .ui-sortable-column-icon{color:var(--ids-theme-primary, #78f4ff)}.theme-light .ui-treetable .ui-treetable-toggler{color:#fff}.theme-light .ui-treetable .ui-treetable-tbody>tr:nth-child(even)>td{background:rgba(255,255,255,.1)}.theme-light .ui-treetable .ui-state-highlight .ui-treetable-toggler{color:#fff}.theme-light .ui-menu{background-color:#30333c}.theme-light .ui-menu-list{background-color:#30333c}.theme-light .ui-menu .ui-menuitem-link{color:#fff}.theme-light .ui-menu .ui-menuitem-link:hover,.theme-light .ui-menu .ui-menuitem-link:focus{color:#fff;background-color:rgba(126,128,135,.8)}.theme-light .ui-slider-limit-handle:before{border:1px solid #f71800}.theme-light .ui-slider{background-color:rgba(32,33,39,.1);border:0 none}.theme-light .ui-slider .ui-slider-handle{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23)}.theme-light .ui-slider .ui-slider-handle{background-color:var(--ids-theme-primary, #78f4ff);border:2px solid var(--ids-theme-primary, #78f4ff)}.theme-light .ui-slider .ui-slider-range{background-color:rgba(var(--ids-theme-primary-rgb, 120,244,255), 0.5)}.theme-light .ui-state-disabled .ui-slider-range{background-color:rgba(var(--ids-theme-primary-rgb, 120,244,255), 0.5);border:0 none}.theme-light .ui-lightbox-eye-on-hover:hover:after{background:rgba(255,255,255,.7)}.theme-light .ui-lightbox-content{background-color:#30333c}.theme-light .ui-listbox .ui-listbox-header .ui-listbox-filter-container .ui-listbox-filter-icon{color:#fff;color:var(--ids-theme-text-color, #FFFFFF)}.theme-light .ui-sidebar{background:#202127}.theme-light .content-tabview .ui-tabview-selected,.theme-light .content-tabview .ui-tabview-panel{background:rgba(32,33,39,.1)}.theme-light .ui-tabview .ui-tabview-selected{background:rgba(0,0,0,.2)}.theme-dark{--selected-element-background: rgba(255, 255, 255, .1);--element-background: #53555C;--main-background: #494C55;--input-background: #3B3D45;--input-border: 1px solid #333;--body-background: #202127;--card-background: rgba(0, 0, 0, 0.3);--card-background-selected: rgba(0, 0, 0, 0.2);--contrast-text-color: #fff;--muffled-text-color: #888;--text-color: #aaa;--button-hover-background: rgba(255, 255, 255, .1)}.theme-dark .ui-state-highlight{border-color:rgba(120,244,255,.5);background-color:rgba(120,244,255,.5);color:#202127}.theme-dark .ui-hovering:hover{background:var(--card-background-selected)}.theme-dark .ui-button{background-color:var(--colorBgLevel4);color:#fff}.theme-dark .ui-button:hover{background-color:#1a1b1e}.theme-dark .ui-button:active{background-color:#000}.theme-dark .ui-button:disabled{cursor:default;color:rgba(255,255,255,.4);background-color:#494c55}.theme-dark .ui-button.ui-state-active{border-color:#78f4ff;background-color:#78f4ff;color:#202127}.theme-dark .ui-button-primary{border-color:rgba(0,0,0,0);box-shadow:none;background-color:#78f4ff}.theme-dark .ui-button-primary,.theme-dark .ui-button-primary:link,.theme-dark .ui-button-primary:visited,.theme-dark .ui-button-primary:hover,.theme-dark .ui-button-primary:active{color:#30333c}.theme-dark .ui-button-primary:hover{border-color:rgba(0,0,0,0);background-color:#12ecff}.theme-dark .ui-button-primary:active{border-color:rgba(0,0,0,0);background-color:#009dab}.theme-dark .ui-button-primary:disabled{background-color:#ebebeb;color:rgba(32,33,39,.4)}.theme-dark .ui-button-secondary{border-color:rgba(0,0,0,0);box-shadow:none;background-color:#387382}.theme-dark .ui-button-secondary,.theme-dark .ui-button-secondary:link,.theme-dark .ui-button-secondary:visited,.theme-dark .ui-button-secondary:hover,.theme-dark .ui-button-secondary:active{color:#fff}.theme-dark .ui-button-secondary:hover{border-color:rgba(0,0,0,0);background-color:#19343b}.theme-dark .ui-button-secondary:active{border-color:rgba(0,0,0,0);background-color:#000}.theme-dark .ui-button-tertiary{border-color:rgba(0,0,0,0);box-shadow:none;background-color:#494c55}.theme-dark .ui-button-tertiary,.theme-dark .ui-button-tertiary:link,.theme-dark .ui-button-tertiary:visited,.theme-dark .ui-button-tertiary:hover,.theme-dark .ui-button-tertiary:active{color:#fff}.theme-dark .ui-button-tertiary:hover{border-color:rgba(0,0,0,0);background-color:#1a1b1e}.theme-dark .ui-button-tertiary:active{border-color:rgba(0,0,0,0);background-color:#000}.theme-dark .ui-button-dashed{border:4px dashed #fff;border:4px dashed var(--ids-theme-text-color, #FFFFFF)}.theme-dark .ui-fieldset,.theme-dark .ui-fieldset .ui-fieldset-legend{padding:6px 0;margin-bottom:0}.theme-dark .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::before,.theme-dark .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::after{border:2px solid #fff}.theme-dark .ui-chkbox .ui-chkbox-box .ui-chkbox-icon::after{border:0 none;opacity:0}.theme-dark .ui-chkbox .ui-chkbox-box .ui-chkbox-icon.pi-check::after{background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI0IDI0Ij4KPCEtLUdlbmVyYXRvcjogU2tldGNoIDQ1LjIgKDQzNTE0KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaC0tPgogIDx0aXRsZT4KICAgIEljb24vY2hlY2tib3hfb24KICA8L3RpdGxlPgogIDxkZXNjPgogICAgQ3JlYXRlZCB3aXRoIFNrZXRjaC4KICA8L2Rlc2M+CiAgPGRlZnM+CiAgICA8cGF0aCBpZD0iY2hlY2tib3hfb24tYSIgZD0iTTIsMy45OTA3OTUxNCBDMiwyLjg5MTMwOTM0IDIuODk4MjEyMzgsMiAzLjk5MDc5NTE0LDIgTDIwLjAwOTIwNDksMiBDMjEuMTA4NjkwNywyIDIyLDIuODk4MjEyMzggMjIsMy45OTA3OTUxNCBMMjIsMjAuMDA5MjA0OSBDMjIsMjEuMTA4NjkwNyAyMS4xMDE3ODc2LDIyIDIwLjAwOTIwNDksMjIgTDMuOTkwNzk1MTQsMjIgQzIuODkxMzA5MzQsMjIgMiwyMS4xMDE3ODc2IDIsMjAuMDA5MjA0OSBMMiwzLjk5MDc5NTE0IFogTTkuMzAyNzcxMjYsMTcuOTI0NzczMyBMMTguODA4LDcuNDY5MTk2MzYgTDE3LjE5MjkzMjIsNiBMOS4yMjg1MjUzLDE0Ljc2MTg5NTcgTDYuNTQzNDQyMzEsMTIuMDc2ODEyOCBMNSwxMy42MjExMjg1IEw5LjMwMjc3MTI2LDE3LjkyNDc3MzMgWiIvPgogIDwvZGVmcz4KICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIj4KICAgIDxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgeD0iMiIgeT0iMiIvPgogICAgPG1hc2sgaWQ9ImNoZWNrYm94X29uLWIiIGZpbGw9IiNmZmYiPgogICAgICA8dXNlIHhsaW5rOmhyZWY9IiNjaGVja2JveF9vbi1hIi8+CiAgICA8L21hc2s+CiAgICA8Zy8+CiAgICA8ZyBmaWxsPSIjNzhGNEZGIiBtYXNrPSJ1cmwoI2NoZWNrYm94X29uLWIpIj4KICAgICAgPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB4PSIwIiB5PSIwIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K");opacity:1}.theme-dark .ui-chkbox .ui-chkbox-box .ui-chkbox-icon.pi-minus::after{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI0IDI0Ij4gIDxkZWZzPiAgICA8cGF0aCBpZD0iY2hlY2tib3hfaW5kZXRlcm1pbmF0ZS1jb3B5Mi1hIiBkPSJNMiwyLjgzMzMzMzMzIEMyLDIuMzczMDk2MDQgMi4zNzMwOTYwNCwyIDIuODMzMzMzMzMsMiBMMjEuMTY2NjY2NywyIEMyMS42MjY5MDQsMiAyMiwyLjM3MzA5NjA0IDIyLDIuODMzMzMzMzMgTDIyLDIxLjE2NjY2NjcgQzIyLDIxLjYyNjkwNCAyMS42MjY5MDQsMjIgMjEuMTY2NjY2NywyMiBMMi44MzMzMzMzMywyMiBDMi4zNzMwOTYwNCwyMiAyLDIxLjYyNjkwNCAyLDIxLjE2NjY2NjcgTDIsMi44MzMzMzMzMyBaIE0xNiwxMyBDMTYuNTUyMjg0NywxMyAxNywxMi41NTIyODQ3IDE3LDEyIEMxNywxMS40NDc3MTUzIDE2LjU1MjI4NDcsMTEgMTYsMTEgTDgsMTEgQzcuNDQ3NzE1MjUsMTEgNywxMS40NDc3MTUzIDcsMTIgQzcsMTIuNTUyMjg0NyA3LjQ0NzcxNTI1LDEzIDgsMTMgTDE2LDEzIFoiLz4gIDwvZGVmcz4gIDx1c2UgZmlsbD0iIzc4RjRGRiIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgeGxpbms6aHJlZj0iI2NoZWNrYm94X2luZGV0ZXJtaW5hdGUtY29weTItYSIvPjwvc3ZnPg==");opacity:1}.theme-dark .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::before,.theme-dark .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::after{border:2px solid currentColor}.theme-dark .ui-chkbox_icon_currentcolor .ui-chkbox-box .ui-chkbox-icon::after{border:0 none;opacity:0}.theme-dark .ui-card{background-color:var(--card-background)}.theme-dark .ui-table.ui-table-hoverable-rows .ui-table-tbody>tr.ui-selectable-row:not(.ui-state-highlight):not(.ui-contextmenu-selected):hover{background-color:rgba(120,244,255,.6);color:#fff}.theme-dark .ui-table .row:hover{background-color:rgba(120,244,255,.3)}.theme-dark .ui-table .row:hover .cell-content_hover{color:#202127}.theme-dark .ui-table .row:hover{background-color:rgba(120,244,255,.6)}.theme-dark .ui-table .row:hover .cell-content_hover{color:#fff}.theme-dark .ui-table .row.row_active,.theme-dark .ui-table .row.ui-state-highlight{background-color:rgba(56,115,130,.2);color:#78f4ff;color:var(--ids-theme-primary, #78f4ff)}.theme-dark .ui-table-thead>tr>th.ui-state-highlight{background:rgba(0,0,0,0);color:var(--ids-theme-text-color, #FFFFFF)}.theme-dark .ui-table-thead>tr>th.ui-state-highlight .ui-sortable-column-icon{color:var(--ids-theme-primary, #78f4ff)}.theme-dark .ui-table .row_active.ui-state-highlight>td{color:#fff;background:rgba(120,244,255,.2)}.theme-dark .ui-steps .ui-steps-item.ui-state-highlight{border:1px solid #78f4ff;background:none}.theme-dark .ui-toast .ui-toast-message,.theme-dark .ui-toast .ui-toast-message.ui-toast-message-info{background-color:#1f85ff;border:0 none}.theme-dark .ui-toast .ui-toast-message.ui-toast-message-success{background-color:#31ac51;border:0 none}.theme-dark .ui-toast .ui-toast-message.ui-toast-message-warn{background-color:#ee9946;border:0 none}.theme-dark .ui-toast .ui-toast-message.ui-toast-message-error{background-color:#f95c5d;border:0 none}.theme-dark .ui-treetable .ui-treetable-thead>tr>th.ui-state-highlight{background:rgba(0,0,0,0);color:var(--ids-theme-text-color, #FFFFFF)}.theme-dark .ui-treetable .ui-treetable-thead>tr>th.ui-state-highlight .ui-sortable-column-icon{color:var(--ids-theme-primary, #78f4ff)}.theme-dark .ui-treetable .ui-treetable-t>tr{background-color:rgba(0,0,0,0)}.theme-dark .ui-treetable .ui-treetable-t>tr>td{border:none}.theme-dark .ui-treetable .ui-treetable-thead>tr>th{border-color:rgba(0,0,0,0)}.theme-dark .ui-treetable .ui-state-highlight .ui-treetable-toggler{color:#202127}.theme-dark .ui-lightbox-eye-on-hover:hover:after{background:rgba(32,33,39,.7)}.theme-dark .ui-lightbox-content{background-color:#30333c}.theme-dark .ui-listbox .ui-listbox-header .ui-listbox-filter-container .ui-listbox-filter-icon{color:#fff}.theme-dark .ui-sidebar{background:#202127}.theme-dark .content-tabview .ui-tabview-selected,.theme-dark .content-tabview .ui-tabview-panel{background:rgba(32,33,39,.4)}.theme-dark .ui-tabview .ui-tabview-selected{background:rgba(255,255,255,.5)}
|