coer-elements 1.0.18 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +63 -1
- package/components/index.d.ts +5 -0
- package/components/lib/coer-accordion/coer-accordion.component.d.ts +32 -0
- package/components/lib/coer-button/coer-button.component.d.ts +46 -0
- package/components/lib/coer-checkbox/coer-checkbox.component.d.ts +29 -0
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +58 -0
- package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +69 -0
- package/components/lib/coer-filebox/coer-filebox.component.d.ts +36 -0
- package/components/lib/coer-form/coer-form.component.d.ts +36 -0
- package/components/lib/coer-grid/coer-grid.component.d.ts +53 -0
- package/components/lib/coer-grid/coer-grid.extension.d.ts +111 -0
- package/components/lib/coer-list/coer-list.component.d.ts +57 -0
- package/components/lib/coer-modal/coer-modal.component.d.ts +38 -0
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +56 -0
- package/components/lib/coer-page-title/coer-page-title.component.d.ts +14 -0
- package/components/lib/coer-selectbox/coer-selectbox.component.d.ts +79 -0
- package/components/lib/coer-sidenav/coer-menu-option/coer-menu-option.component.d.ts +22 -0
- package/components/lib/coer-sidenav/coer-sidenav.component.d.ts +49 -0
- package/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +32 -0
- package/components/lib/coer-sidenav/coer-tree-accordion/coer-tree-accordion.component.d.ts +43 -0
- package/components/lib/coer-switch/coer-switch.component.d.ts +32 -0
- package/components/lib/coer-tab/coer-tab.component.d.ts +36 -0
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +52 -0
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +66 -0
- package/components/lib/components.module.d.ts +46 -0
- package/components/public-api.d.ts +21 -0
- package/directives/index.d.ts +5 -0
- package/directives/lib/coer-ref.directive.d.ts +14 -0
- package/directives/lib/directives.module.d.ts +8 -0
- package/directives/lib/life-cycle.directive.d.ts +16 -0
- package/directives/public-api.d.ts +3 -0
- package/extensions/index.d.ts +5 -0
- package/extensions/lib/object.extension.d.ts +1 -0
- package/extensions/lib/string.extension.d.ts +19 -0
- package/extensions/public-api.d.ts +2 -0
- package/fesm2022/coer-elements-components.mjs +4040 -0
- package/fesm2022/coer-elements-components.mjs.map +1 -0
- package/fesm2022/coer-elements-directives.mjs +84 -0
- package/fesm2022/coer-elements-directives.mjs.map +1 -0
- package/fesm2022/coer-elements-extensions.mjs +68 -0
- package/fesm2022/coer-elements-extensions.mjs.map +1 -0
- package/fesm2022/coer-elements-guards.mjs +28 -0
- package/fesm2022/coer-elements-guards.mjs.map +1 -0
- package/fesm2022/coer-elements-interceptors.mjs +64 -0
- package/fesm2022/coer-elements-interceptors.mjs.map +1 -0
- package/fesm2022/coer-elements-interfaces.mjs +6 -0
- package/fesm2022/coer-elements-interfaces.mjs.map +1 -0
- package/fesm2022/coer-elements-pages.mjs +441 -0
- package/fesm2022/coer-elements-pages.mjs.map +1 -0
- package/fesm2022/coer-elements-pipes.mjs +87 -0
- package/fesm2022/coer-elements-pipes.mjs.map +1 -0
- package/fesm2022/coer-elements-signals.mjs +35 -0
- package/fesm2022/coer-elements-signals.mjs.map +1 -0
- package/fesm2022/coer-elements-tools.mjs +1960 -0
- package/fesm2022/coer-elements-tools.mjs.map +1 -0
- package/fesm2022/coer-elements.mjs +68 -0
- package/fesm2022/coer-elements.mjs.map +1 -0
- package/guards/index.d.ts +5 -0
- package/guards/lib/login.guard.d.ts +2 -0
- package/guards/lib/page.guard.d.ts +2 -0
- package/guards/public-api.d.ts +2 -0
- package/images/loading.gif +0 -0
- package/images/no-image.png +0 -0
- package/images/no-user.png +0 -0
- package/index.d.ts +12 -0
- package/interceptors/index.d.ts +5 -0
- package/interceptors/lib/user.interceptor.d.ts +8 -0
- package/interceptors/lib/utc-offset.interceptor.d.ts +8 -0
- package/interceptors/public-api.d.ts +1 -0
- package/interfaces/index.d.ts +5 -0
- package/interfaces/lib/app-source.interface.d.ts +4 -0
- package/interfaces/lib/box-button.interface.d.ts +6 -0
- package/interfaces/lib/bulk-load.interface.d.ts +5 -0
- package/interfaces/lib/coer-filebox/file-image.interface.d.ts +14 -0
- package/interfaces/lib/coer-filebox/file.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-button-by-row.interface.d.ts +6 -0
- package/interfaces/lib/coer-grid/grid-checkbox.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-coer-numberbox.interface.d.ts +12 -0
- package/interfaces/lib/coer-grid/grid-coer-selectbox.interface.d.ts +9 -0
- package/interfaces/lib/coer-grid/grid-coer-switch.interface.d.ts +6 -0
- package/interfaces/lib/coer-grid/grid-coer-textbox.interface.d.ts +11 -0
- package/interfaces/lib/coer-grid/grid-column.interface.d.ts +24 -0
- package/interfaces/lib/coer-grid/grid-data-source.interface.d.ts +6 -0
- package/interfaces/lib/coer-grid/grid-header-button.interface.d.ts +8 -0
- package/interfaces/lib/coer-grid/grid-header-export-button.interface.d.ts +10 -0
- package/interfaces/lib/coer-grid/grid-header.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-import.interface.d.ts +4 -0
- package/interfaces/lib/coer-grid/grid-input-checkbox.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-input-switch-change.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-input-textbox.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-item.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-keyup-enter.interface.d.ts +6 -0
- package/interfaces/lib/coer-grid/grid-length.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-search.interface.d.ts +5 -0
- package/interfaces/lib/coer-grid/grid-sort.interface.d.ts +5 -0
- package/interfaces/lib/coer-menu/menu-access.interface.d.ts +7 -0
- package/interfaces/lib/coer-menu/menu-option-selected.interface.d.ts +9 -0
- package/interfaces/lib/coer-menu/menu-selected.interface.d.ts +10 -0
- package/interfaces/lib/coer-menu/menu.interface.d.ts +10 -0
- package/interfaces/lib/coer-ref.interface.d.ts +10 -0
- package/interfaces/lib/image.interface.d.ts +11 -0
- package/interfaces/lib/login-response.interface.d.ts +10 -0
- package/interfaces/lib/login.interface.d.ts +4 -0
- package/interfaces/lib/page-title/breadcrumb.interface.d.ts +6 -0
- package/interfaces/lib/page-title/go-back.interface.d.ts +6 -0
- package/interfaces/lib/page-title/information.interface.d.ts +4 -0
- package/interfaces/lib/screen-size.interface.d.ts +5 -0
- package/interfaces/lib/service/http-request.interface.d.ts +12 -0
- package/interfaces/lib/service/http-response.interface.d.ts +6 -0
- package/interfaces/lib/service/patch.interface.d.ts +5 -0
- package/interfaces/lib/toolbar-menu.interface.d.ts +5 -0
- package/interfaces/public-api.d.ts +41 -0
- package/package.json +67 -38
- package/pages/index.d.ts +5 -0
- package/pages/lib/coer-loading/loading.component.d.ts +5 -0
- package/pages/lib/coer-menu/coer-menu.component.d.ts +12 -0
- package/pages/lib/coer-system/coer-system.component.d.ts +64 -0
- package/pages/lib/coer-system/login/login.component.d.ts +31 -0
- package/pages/lib/home/home.component.d.ts +7 -0
- package/pages/lib/pages.module.d.ts +18 -0
- package/pages/public-api.d.ts +5 -0
- package/pipes/index.d.ts +5 -0
- package/pipes/lib/html.pipe.d.ts +10 -0
- package/pipes/lib/no-image.pipe.d.ts +7 -0
- package/pipes/lib/numeric-format.pipe.d.ts +7 -0
- package/pipes/lib/pipes.module.d.ts +9 -0
- package/pipes/public-api.d.ts +4 -0
- package/signals/index.d.ts +5 -0
- package/signals/lib/breakpoint.signal.d.ts +1 -0
- package/signals/lib/is-loading.signal.d.ts +1 -0
- package/signals/lib/is-menu-open.signal.d.ts +1 -0
- package/signals/lib/is-modal-open.signal.d.ts +1 -0
- package/signals/lib/menu-selected.signal.d.ts +2 -0
- package/signals/lib/navigation.signal.d.ts +2 -0
- package/signals/public-api.d.ts +6 -0
- package/styles/angular-material.scss +20 -0
- package/styles/animations.scss +11 -0
- package/styles/bootstrap.scss +1 -14
- package/styles/coer-elements.css +2054 -0
- package/styles/colors.scss +90 -49
- package/styles/containers.scss +44 -0
- package/styles/cursores.scss +19 -0
- package/styles/index.scss +58 -0
- package/styles/layout.scss +49 -0
- package/styles/position.scss +7 -0
- package/styles/scroll-bar.scss +20 -0
- package/tools/index.d.ts +5 -0
- package/tools/lib/breadcrumbs.class.d.ts +18 -0
- package/tools/lib/coer-alert/coer-alert.component.d.ts +23 -0
- package/tools/lib/coer-grid.templates.d.ts +11 -0
- package/tools/lib/colors.class.d.ts +21 -0
- package/tools/lib/control-value.class.d.ts +25 -0
- package/tools/lib/date-time.class.d.ts +21 -0
- package/tools/lib/elements-html.class.d.ts +8 -0
- package/tools/lib/files.class.d.ts +16 -0
- package/tools/lib/filters.class.d.ts +11 -0
- package/tools/lib/menu.class.d.ts +9 -0
- package/tools/lib/page.class.d.ts +83 -0
- package/tools/lib/screen.class.d.ts +13 -0
- package/tools/lib/section.class.d.ts +33 -0
- package/tools/lib/service.class.d.ts +42 -0
- package/tools/lib/source.class.d.ts +20 -0
- package/tools/lib/tools.d.ts +42 -0
- package/tools/lib/user.class.d.ts +11 -0
- package/tools/public-api.d.ts +17 -0
- package/Signals/index.ts +0 -7
- package/Tools/Breadcrumbs.class.ts +0 -84
- package/Tools/ControlValue.ts +0 -63
- package/Tools/DateTime.class.ts +0 -27
- package/Tools/Files.class.ts +0 -119
- package/Tools/Page.class.ts +0 -197
- package/Tools/Screen.class.ts +0 -50
- package/Tools/Source.class.ts +0 -107
- package/Tools/Tools.ts +0 -212
- package/components/coer-alert/coer-alert.component.html +0 -56
- package/components/coer-alert/coer-alert.component.scss +0 -100
- package/components/coer-alert/coer-alert.component.ts +0 -249
- package/components/index.ts +0 -96
- package/dist_browser/Tools/Breadcrumbs.class.js +0 -66
- package/dist_browser/Tools/ControlValue.js +0 -49
- package/dist_browser/Tools/DateTime.class.js +0 -25
- package/dist_browser/Tools/Files.class.js +0 -99
- package/dist_browser/Tools/Page.class.js +0 -213
- package/dist_browser/Tools/Screen.class.js +0 -68
- package/dist_browser/Tools/Source.class.js +0 -83
- package/dist_browser/Tools/Tools.js +0 -227
- package/dist_browser/components/coer-alert/coer-alert.component.js +0 -314
- package/dist_browser/index.js +0 -8
- package/dist_node/Tools/Breadcrumbs.class.js +0 -69
- package/dist_node/Tools/ControlValue.js +0 -53
- package/dist_node/Tools/DateTime.class.js +0 -28
- package/dist_node/Tools/Files.class.js +0 -102
- package/dist_node/Tools/Page.class.js +0 -216
- package/dist_node/Tools/Screen.class.js +0 -71
- package/dist_node/Tools/Source.class.js +0 -86
- package/dist_node/Tools/Tools.js +0 -230
- package/dist_node/components/coer-alert/coer-alert.component.js +0 -317
- package/dist_node/index.js +0 -24
- package/dist_node/interfaces/index.js +0 -2
- package/index.ts +0 -8
- package/interfaces/index.ts +0 -47
- package/styles/coer.scss +0 -95
- package/tsconfig.json +0 -29
@@ -0,0 +1,2054 @@
|
|
1
|
+
/********** COER styles **********/
|
2
|
+
mat-expansion-panel.coer-accordion {
|
3
|
+
overflow: visible !important;
|
4
|
+
}
|
5
|
+
mat-expansion-panel.coer-accordion mat-expansion-panel-header {
|
6
|
+
height: 35px !important;
|
7
|
+
background-color: whitesmoke !important;
|
8
|
+
padding-left: 12px !important;
|
9
|
+
}
|
10
|
+
mat-expansion-panel.coer-accordion mat-expansion-panel-header span {
|
11
|
+
color: black !important;
|
12
|
+
font-size: 16px !important;
|
13
|
+
}
|
14
|
+
mat-expansion-panel.coer-accordion mat-expansion-panel-header mat-panel-title {
|
15
|
+
display: flex;
|
16
|
+
align-items: center;
|
17
|
+
gap: 5px;
|
18
|
+
}
|
19
|
+
mat-expansion-panel.coer-accordion div.mat-expansion-panel-body {
|
20
|
+
padding: 0px !important;
|
21
|
+
color: #ffd106;
|
22
|
+
}
|
23
|
+
|
24
|
+
:root {
|
25
|
+
--blue: #0d6efd;
|
26
|
+
--gray: #6c757d;
|
27
|
+
--green: #198754;
|
28
|
+
--yellow: #ffc107;
|
29
|
+
--red: #dc3545;
|
30
|
+
--white: #f5f5f5;
|
31
|
+
--black: #252525;
|
32
|
+
--orange: #fd6031;
|
33
|
+
--purple: #a615bc;
|
34
|
+
}
|
35
|
+
|
36
|
+
.text-blue {
|
37
|
+
color: var(--blue) !important;
|
38
|
+
}
|
39
|
+
|
40
|
+
.text-blue-bold {
|
41
|
+
color: var(--blue) !important;
|
42
|
+
font-weight: bold !important;
|
43
|
+
}
|
44
|
+
|
45
|
+
.background-blue {
|
46
|
+
background-color: var(--blue) !important;
|
47
|
+
}
|
48
|
+
|
49
|
+
.background-border-blue {
|
50
|
+
background-color: var(--blue) !important;
|
51
|
+
border-color: var(--blue) !important;
|
52
|
+
}
|
53
|
+
|
54
|
+
.border-blue {
|
55
|
+
border-color: var(--blue) !important;
|
56
|
+
}
|
57
|
+
|
58
|
+
.text-gray {
|
59
|
+
color: var(--gray) !important;
|
60
|
+
}
|
61
|
+
|
62
|
+
.text-gray-bold {
|
63
|
+
color: var(--gray) !important;
|
64
|
+
font-weight: bold !important;
|
65
|
+
}
|
66
|
+
|
67
|
+
.background-gray {
|
68
|
+
background-color: var(--gray) !important;
|
69
|
+
}
|
70
|
+
|
71
|
+
.background-border-gray {
|
72
|
+
background-color: var(--gray) !important;
|
73
|
+
border-color: var(--gray) !important;
|
74
|
+
}
|
75
|
+
|
76
|
+
.border-gray {
|
77
|
+
border-color: var(--gray) !important;
|
78
|
+
}
|
79
|
+
|
80
|
+
.text-green {
|
81
|
+
color: var(--green) !important;
|
82
|
+
}
|
83
|
+
|
84
|
+
.text-green-bold {
|
85
|
+
color: var(--green) !important;
|
86
|
+
font-weight: bold !important;
|
87
|
+
}
|
88
|
+
|
89
|
+
.background-green {
|
90
|
+
background-color: var(--green) !important;
|
91
|
+
}
|
92
|
+
|
93
|
+
.background-border-green {
|
94
|
+
background-color: var(--green) !important;
|
95
|
+
border-color: var(--green) !important;
|
96
|
+
}
|
97
|
+
|
98
|
+
.border-green {
|
99
|
+
border-color: var(--green) !important;
|
100
|
+
}
|
101
|
+
|
102
|
+
.text-yellow {
|
103
|
+
color: var(--yellow) !important;
|
104
|
+
}
|
105
|
+
|
106
|
+
.text-yellow-bold {
|
107
|
+
color: var(--yellow) !important;
|
108
|
+
font-weight: bold !important;
|
109
|
+
}
|
110
|
+
|
111
|
+
.background-yellow {
|
112
|
+
background-color: var(--yellow) !important;
|
113
|
+
}
|
114
|
+
|
115
|
+
.background-border-yellow {
|
116
|
+
background-color: var(--yellow) !important;
|
117
|
+
border-color: var(--yellow) !important;
|
118
|
+
}
|
119
|
+
|
120
|
+
.border-yellow {
|
121
|
+
border-color: var(--yellow) !important;
|
122
|
+
}
|
123
|
+
|
124
|
+
.text-red {
|
125
|
+
color: var(--red) !important;
|
126
|
+
}
|
127
|
+
|
128
|
+
.text-red-bold {
|
129
|
+
color: var(--red) !important;
|
130
|
+
font-weight: bold !important;
|
131
|
+
}
|
132
|
+
|
133
|
+
.background-red {
|
134
|
+
background-color: var(--red) !important;
|
135
|
+
}
|
136
|
+
|
137
|
+
.background-border-red {
|
138
|
+
background-color: var(--red) !important;
|
139
|
+
border-color: var(--red) !important;
|
140
|
+
}
|
141
|
+
|
142
|
+
.border-red {
|
143
|
+
border-color: var(--red) !important;
|
144
|
+
}
|
145
|
+
|
146
|
+
.text-white {
|
147
|
+
color: var(--white) !important;
|
148
|
+
}
|
149
|
+
|
150
|
+
.text-white-bold {
|
151
|
+
color: var(--white) !important;
|
152
|
+
font-weight: bold !important;
|
153
|
+
}
|
154
|
+
|
155
|
+
.background-white {
|
156
|
+
background-color: var(--white) !important;
|
157
|
+
}
|
158
|
+
|
159
|
+
.background-border-white {
|
160
|
+
background-color: var(--white) !important;
|
161
|
+
border-color: var(--white) !important;
|
162
|
+
}
|
163
|
+
|
164
|
+
.border-white {
|
165
|
+
border-color: var(--white) !important;
|
166
|
+
}
|
167
|
+
|
168
|
+
.text-black {
|
169
|
+
color: var(--black) !important;
|
170
|
+
}
|
171
|
+
|
172
|
+
.text-black-bold {
|
173
|
+
color: var(--black) !important;
|
174
|
+
font-weight: bold !important;
|
175
|
+
}
|
176
|
+
|
177
|
+
.background-black {
|
178
|
+
background-color: var(--black) !important;
|
179
|
+
}
|
180
|
+
|
181
|
+
.background-border-black {
|
182
|
+
background-color: var(--black) !important;
|
183
|
+
border-color: var(--black) !important;
|
184
|
+
}
|
185
|
+
|
186
|
+
.border-black {
|
187
|
+
border-color: var(--black) !important;
|
188
|
+
}
|
189
|
+
|
190
|
+
.text-orange {
|
191
|
+
color: var(--orange) !important;
|
192
|
+
}
|
193
|
+
|
194
|
+
.text-orange-bold {
|
195
|
+
color: var(--orange) !important;
|
196
|
+
font-weight: bold !important;
|
197
|
+
}
|
198
|
+
|
199
|
+
.background-orange {
|
200
|
+
background-color: var(--orange) !important;
|
201
|
+
}
|
202
|
+
|
203
|
+
.background-border-orange {
|
204
|
+
background-color: var(--orange) !important;
|
205
|
+
border-color: var(--orange) !important;
|
206
|
+
}
|
207
|
+
|
208
|
+
.border-orange {
|
209
|
+
border-color: var(--orange) !important;
|
210
|
+
}
|
211
|
+
|
212
|
+
.text-transparent {
|
213
|
+
color: transparent !important;
|
214
|
+
}
|
215
|
+
|
216
|
+
.background-transparent {
|
217
|
+
background-color: transparent !important;
|
218
|
+
}
|
219
|
+
|
220
|
+
.border-transparent {
|
221
|
+
border-color: transparent !important;
|
222
|
+
}
|
223
|
+
|
224
|
+
coer-button {
|
225
|
+
display: contents !important;
|
226
|
+
}
|
227
|
+
|
228
|
+
div.coer-button {
|
229
|
+
display: contents !important;
|
230
|
+
}
|
231
|
+
div.coer-button a {
|
232
|
+
display: inline-block !important;
|
233
|
+
height: fit-content !important;
|
234
|
+
}
|
235
|
+
div.coer-button a.animate__disabled {
|
236
|
+
animation-duration: 0s !important;
|
237
|
+
}
|
238
|
+
div.coer-button button {
|
239
|
+
font-size: 17px !important;
|
240
|
+
white-space: nowrap !important;
|
241
|
+
overflow: hidden !important;
|
242
|
+
text-overflow: ellipsis !important;
|
243
|
+
}
|
244
|
+
div.coer-button .slot {
|
245
|
+
width: 100px !important;
|
246
|
+
display: flex !important;
|
247
|
+
align-items: center !important;
|
248
|
+
justify-content: center !important;
|
249
|
+
overflow: visible !important;
|
250
|
+
}
|
251
|
+
div.coer-button button.primary-filled {
|
252
|
+
background-color: var(--blue) !important;
|
253
|
+
color: var(--white) !important;
|
254
|
+
}
|
255
|
+
div.coer-button button.secondary-filled {
|
256
|
+
background-color: var(--gray) !important;
|
257
|
+
color: var(--white) !important;
|
258
|
+
}
|
259
|
+
div.coer-button button.success-filled {
|
260
|
+
background-color: var(--green) !important;
|
261
|
+
color: var(--white) !important;
|
262
|
+
}
|
263
|
+
div.coer-button button.warning-filled {
|
264
|
+
background-color: var(--yellow) !important;
|
265
|
+
color: var(--black) !important;
|
266
|
+
}
|
267
|
+
div.coer-button button.danger-filled {
|
268
|
+
background-color: var(--red) !important;
|
269
|
+
color: var(--white) !important;
|
270
|
+
}
|
271
|
+
div.coer-button button.navigation-filled {
|
272
|
+
background-color: var(--orange) !important;
|
273
|
+
color: var(--white) !important;
|
274
|
+
}
|
275
|
+
div.coer-button button.dark-filled {
|
276
|
+
background-color: var(--black) !important;
|
277
|
+
color: var(--white) !important;
|
278
|
+
}
|
279
|
+
div.coer-button button.primary-outline {
|
280
|
+
background-color: white !important;
|
281
|
+
border: 1px solid var(--blue) !important;
|
282
|
+
color: var(--blue) !important;
|
283
|
+
}
|
284
|
+
div.coer-button button.secondary-outline {
|
285
|
+
background-color: white !important;
|
286
|
+
border: 1px solid var(--gray) !important;
|
287
|
+
color: var(--gray) !important;
|
288
|
+
}
|
289
|
+
div.coer-button button.success-outline {
|
290
|
+
background-color: white !important;
|
291
|
+
border: 1px solid var(--green) !important;
|
292
|
+
color: var(--green) !important;
|
293
|
+
}
|
294
|
+
div.coer-button button.warning-outline {
|
295
|
+
background-color: white !important;
|
296
|
+
border: 1px solid var(--yellow) !important;
|
297
|
+
color: var(--yellow) !important;
|
298
|
+
}
|
299
|
+
div.coer-button button.danger-outline {
|
300
|
+
background-color: white !important;
|
301
|
+
border: 1px solid var(--red) !important;
|
302
|
+
color: var(--red) !important;
|
303
|
+
}
|
304
|
+
div.coer-button button.navigation-outline {
|
305
|
+
background-color: white !important;
|
306
|
+
border: 1px solid var(--orange) !important;
|
307
|
+
color: var(--orange) !important;
|
308
|
+
}
|
309
|
+
div.coer-button button.dark-outline {
|
310
|
+
background-color: white !important;
|
311
|
+
border: 1px solid var(--black) !important;
|
312
|
+
color: var(--black) !important;
|
313
|
+
}
|
314
|
+
div.coer-button button.primary-filled:not(.readonly):hover, div.coer-button button.primary-filled:not(.readonly):focus,
|
315
|
+
div.coer-button button.primary-outline:not(.readonly):hover, div.coer-button button.primary-outline:not(.readonly):focus,
|
316
|
+
div.coer-button button.secondary-filled:not(.readonly):hover, div.coer-button button.secondary-filled:not(.readonly):focus,
|
317
|
+
div.coer-button button.secondary-outline:not(.readonly):hover, div.coer-button button.secondary-outline:not(.readonly):focus,
|
318
|
+
div.coer-button button.success-filled:not(.readonly):hover, div.coer-button button.success-filled:not(.readonly):focus,
|
319
|
+
div.coer-button button.success-outline:not(.readonly):hover, div.coer-button button.success-outline:not(.readonly):focus,
|
320
|
+
div.coer-button button.warning-filled:not(.readonly):hover, div.coer-button button.warning-filled:not(.readonly):focus,
|
321
|
+
div.coer-button button.warning-outline:not(.readonly):hover, div.coer-button button.warning-outline:not(.readonly):focus,
|
322
|
+
div.coer-button button.danger-filled:not(.readonly):hover, div.coer-button button.danger-filled:not(.readonly):focus,
|
323
|
+
div.coer-button button.danger-outline:not(.readonly):hover, div.coer-button button.danger-outline:not(.readonly):focus,
|
324
|
+
div.coer-button button.navigation-filled:not(.readonly):hover, div.coer-button button.navigation-filled:not(.readonly):focus,
|
325
|
+
div.coer-button button.navigation-outline:not(.readonly):hover, div.coer-button button.navigation-outline:not(.readonly):focus,
|
326
|
+
div.coer-button button.dark-filled:not(.readonly):hover, div.coer-button button.dark-filled:not(.readonly):focus,
|
327
|
+
div.coer-button button.dark-outline:not(.readonly):hover, div.coer-button button.dark-outline:not(.readonly):focus {
|
328
|
+
filter: brightness(1.1) !important;
|
329
|
+
}
|
330
|
+
div.coer-button button.primary-filled:not(.readonly):focus,
|
331
|
+
div.coer-button button.primary-outline:not(.readonly):focus {
|
332
|
+
box-shadow: 0px 0px 20px var(--blue) !important;
|
333
|
+
}
|
334
|
+
div.coer-button button.secondary-filled:not(.readonly):focus,
|
335
|
+
div.coer-button button.secondary-outline:not(.readonly):focus {
|
336
|
+
box-shadow: 0px 0px 20px var(--gray) !important;
|
337
|
+
}
|
338
|
+
div.coer-button button.success-filled:not(.readonly):focus,
|
339
|
+
div.coer-button button.success-outline:not(.readonly):focus {
|
340
|
+
box-shadow: 0px 0px 20px var(--green) !important;
|
341
|
+
}
|
342
|
+
div.coer-button button.warning-filled:not(.readonly):focus,
|
343
|
+
div.coer-button button.warning-outline:not(.readonly):focus {
|
344
|
+
box-shadow: 0px 0px 20px var(--yellow) !important;
|
345
|
+
}
|
346
|
+
div.coer-button button.danger-filled:not(.readonly):focus,
|
347
|
+
div.coer-button button.danger-outline:not(.readonly):focus {
|
348
|
+
box-shadow: 0px 0px 20px var(--red) !important;
|
349
|
+
}
|
350
|
+
div.coer-button button.navigation-filled:not(.readonly):focus,
|
351
|
+
div.coer-button button.navigation-outline:not(.readonly):focus {
|
352
|
+
box-shadow: 0px 0px 20px var(--orange) !important;
|
353
|
+
}
|
354
|
+
div.coer-button button.dark-filled:not(.readonly):focus,
|
355
|
+
div.coer-button button.dark-outline:not(.readonly):focus {
|
356
|
+
box-shadow: 0px 0px 20px var(--black) !important;
|
357
|
+
}
|
358
|
+
div.coer-button button.mdc-icon-button.mat-mdc-icon-button {
|
359
|
+
width: 40px !important;
|
360
|
+
height: 40px !important;
|
361
|
+
padding: 0px !important;
|
362
|
+
}
|
363
|
+
div.coer-button button.mdc-icon-button.mat-mdc-icon-button.icon-no-border {
|
364
|
+
width: 25px !important;
|
365
|
+
height: 25px !important;
|
366
|
+
background-color: transparent !important;
|
367
|
+
border: none !important;
|
368
|
+
overflow: visible !important;
|
369
|
+
}
|
370
|
+
div.coer-button button.mdc-icon-button.mat-mdc-icon-button.icon-no-border * {
|
371
|
+
font-size: medium !important;
|
372
|
+
}
|
373
|
+
div.coer-button button.mdc-icon-button.mat-mdc-icon-button.icon-no-border i.bi-box-arrow-left,
|
374
|
+
div.coer-button button.mdc-icon-button.mat-mdc-icon-button.icon-no-border i.bi-box-arrow-in-right {
|
375
|
+
font-size: 20px !important;
|
376
|
+
}
|
377
|
+
div.coer-button button.readonly,
|
378
|
+
div.coer-button button.readonly:hover,
|
379
|
+
div.coer-button button.readonly:focus {
|
380
|
+
background-color: rgb(223, 222, 222) !important;
|
381
|
+
border-color: rgb(223, 222, 222) !important;
|
382
|
+
color: white !important;
|
383
|
+
}
|
384
|
+
div.coer-button coer-button[ishidden=true],
|
385
|
+
div.coer-button coer-button[ng-reflect-invisible=true] {
|
386
|
+
position: relative !important;
|
387
|
+
top: 10000vh;
|
388
|
+
left: 10000vw;
|
389
|
+
}
|
390
|
+
div.coer-button a.loading {
|
391
|
+
cursor: wait !important;
|
392
|
+
}
|
393
|
+
div.coer-button i {
|
394
|
+
vertical-align: middle !important;
|
395
|
+
}
|
396
|
+
div.coer-button i.spinner-border {
|
397
|
+
width: 15px !important;
|
398
|
+
height: 15px !important;
|
399
|
+
font-size: 16px !important;
|
400
|
+
}
|
401
|
+
div.coer-button span {
|
402
|
+
font-weight: bold !important;
|
403
|
+
}
|
404
|
+
div.coer-button .mat-mdc-button-touch-target {
|
405
|
+
width: 0px !important;
|
406
|
+
height: 0px !important;
|
407
|
+
}
|
408
|
+
|
409
|
+
div.coer-checkbox {
|
410
|
+
display: inline-flex !important;
|
411
|
+
}
|
412
|
+
div.coer-checkbox mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox {
|
413
|
+
padding: 10px !important;
|
414
|
+
}
|
415
|
+
div.coer-checkbox mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mdc-checkbox__background {
|
416
|
+
background-color: var(--white) !important;
|
417
|
+
border-radius: 5px !important;
|
418
|
+
}
|
419
|
+
div.coer-checkbox mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mdc-checkbox__ripple {
|
420
|
+
width: 30px !important;
|
421
|
+
height: 30px !important;
|
422
|
+
top: 5px !important;
|
423
|
+
left: 5px !important;
|
424
|
+
}
|
425
|
+
div.coer-checkbox mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mat-ripple.mat-mdc-checkbox-ripple.mat-mdc-focus-indicator * {
|
426
|
+
display: none !important;
|
427
|
+
}
|
428
|
+
div.coer-checkbox mat-checkbox div.mdc-form-field.mat-internal-form-field label.mdc-label {
|
429
|
+
padding-top: 3px !important;
|
430
|
+
padding-left: 0px !important;
|
431
|
+
}
|
432
|
+
div.coer-checkbox mat-checkbox div.mdc-form-field.mat-internal-form-field label.mdc-label::selection {
|
433
|
+
background-color: transparent !important;
|
434
|
+
}
|
435
|
+
div.coer-checkbox mat-checkbox.mat-mdc-checkbox-checked div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mdc-checkbox__background {
|
436
|
+
background-color: var(--orange) !important;
|
437
|
+
border-color: var(--orange) !important;
|
438
|
+
}
|
439
|
+
|
440
|
+
coer-grid table tbody tr td.check-box mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox,
|
441
|
+
coer-grid table tbody tr td.check-box mat-checkbox.mat-mdc-checkbox-checked div.mdc-form-field.mat-internal-form-field div.mdc-checkbox {
|
442
|
+
padding: 0px !important;
|
443
|
+
}
|
444
|
+
coer-grid table tbody tr td.check-box mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mat-mdc-checkbox-touch-target,
|
445
|
+
coer-grid table tbody tr td.check-box mat-checkbox.mat-mdc-checkbox-checked div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mat-mdc-checkbox-touch-target {
|
446
|
+
top: 8px !important;
|
447
|
+
width: 39px !important;
|
448
|
+
height: 30px !important;
|
449
|
+
}
|
450
|
+
coer-grid table tbody tr td.check-box mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox input,
|
451
|
+
coer-grid table tbody tr td.check-box mat-checkbox.mat-mdc-checkbox-checked div.mdc-form-field.mat-internal-form-field div.mdc-checkbox input {
|
452
|
+
display: none !important;
|
453
|
+
}
|
454
|
+
coer-grid table tbody tr td.check-box mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mdc-checkbox__ripple,
|
455
|
+
coer-grid table tbody tr td.check-box mat-checkbox.mat-mdc-checkbox-checked div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mdc-checkbox__ripple {
|
456
|
+
top: -7px !important;
|
457
|
+
left: -6px !important;
|
458
|
+
}
|
459
|
+
coer-grid table tbody tr td.check-box mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mdc-checkbox__background,
|
460
|
+
coer-grid table tbody tr td.check-box mat-checkbox.mat-mdc-checkbox-checked div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mdc-checkbox__background {
|
461
|
+
transform: translate(0px, -1px) !important;
|
462
|
+
position: static !important;
|
463
|
+
}
|
464
|
+
coer-grid table tbody tr td.check-box mat-checkbox div.mdc-form-field.mat-internal-form-field label.mdc-label,
|
465
|
+
coer-grid table tbody tr td.check-box mat-checkbox.mat-mdc-checkbox-checked div.mdc-form-field.mat-internal-form-field label.mdc-label {
|
466
|
+
display: none !important;
|
467
|
+
}
|
468
|
+
|
469
|
+
div.coer-date-box {
|
470
|
+
display: flex;
|
471
|
+
align-items: center;
|
472
|
+
}
|
473
|
+
div.coer-date-box mat-form-field {
|
474
|
+
position: relative !important;
|
475
|
+
}
|
476
|
+
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex {
|
477
|
+
height: 40px !important;
|
478
|
+
}
|
479
|
+
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
480
|
+
width: 100% !important;
|
481
|
+
height: 40px !important;
|
482
|
+
padding: 0px !important;
|
483
|
+
}
|
484
|
+
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label {
|
485
|
+
overflow: visible !important;
|
486
|
+
position: absolute !important;
|
487
|
+
top: 20px !important;
|
488
|
+
}
|
489
|
+
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
490
|
+
color: var(--orange);
|
491
|
+
font-weight: bold;
|
492
|
+
position: relative;
|
493
|
+
left: -10px;
|
494
|
+
top: 2px;
|
495
|
+
}
|
496
|
+
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input {
|
497
|
+
font-weight: normal !important;
|
498
|
+
font-size: 17px !important;
|
499
|
+
color: var(--black) !important;
|
500
|
+
}
|
501
|
+
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
502
|
+
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
503
|
+
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
504
|
+
border-bottom-color: var(--orange) !important;
|
505
|
+
}
|
506
|
+
div.coer-date-box mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
507
|
+
height: 0px !important;
|
508
|
+
}
|
509
|
+
div.coer-date-box mat-form-field span.icon-container {
|
510
|
+
position: absolute !important;
|
511
|
+
top: 1px !important;
|
512
|
+
right: -14px !important;
|
513
|
+
z-index: 5 !important;
|
514
|
+
width: 30px;
|
515
|
+
height: 40px;
|
516
|
+
display: flex;
|
517
|
+
align-items: center;
|
518
|
+
justify-content: center;
|
519
|
+
}
|
520
|
+
div.coer-date-box mat-form-field span.icon-container i {
|
521
|
+
font-size: 20px !important;
|
522
|
+
}
|
523
|
+
div.coer-date-box mat-form-field span.icon-container i.fa-solid.fa-xmark,
|
524
|
+
div.coer-date-box mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass {
|
525
|
+
color: rgb(202.1566523605, 205.9613733906, 209.3433476395) !important;
|
526
|
+
cursor: pointer !important;
|
527
|
+
}
|
528
|
+
div.coer-date-box mat-form-field span.icon-container i.fa-solid.fa-xmark:hover,
|
529
|
+
div.coer-date-box mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass:hover {
|
530
|
+
color: rgb(107.976360515, 116.9743905579, 124.972639485) !important;
|
531
|
+
}
|
532
|
+
div.coer-date-box mat-form-field span.icon-container i.fa-solid.fa-circle-check {
|
533
|
+
color: var(--green) !important;
|
534
|
+
}
|
535
|
+
div.coer-date-box mat-form-field span.icon-container i.fa-solid.fa-circle-exclamation {
|
536
|
+
color: var(--red) !important;
|
537
|
+
}
|
538
|
+
div.coer-date-box mat-form-field span.placeholder {
|
539
|
+
width: calc(100% + 32px) !important;
|
540
|
+
height: 40px !important;
|
541
|
+
position: absolute !important;
|
542
|
+
z-index: 1 !important;
|
543
|
+
top: 0px !important;
|
544
|
+
left: -16px !important;
|
545
|
+
cursor: wait !important;
|
546
|
+
}
|
547
|
+
div.coer-date-box mat-form-field .placeholder, div.coer-date-box mat-form-field .placeholder *,
|
548
|
+
div.coer-date-box mat-form-field .placeholder-glow, div.coer-date-box mat-form-field .placeholder-glow * {
|
549
|
+
cursor: wait !important;
|
550
|
+
}
|
551
|
+
div.coer-date-box mat-form-field.readonly div.mat-mdc-text-field-wrapper.mdc-text-field {
|
552
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
553
|
+
}
|
554
|
+
div.coer-date-box div.button-container {
|
555
|
+
width: 40px !important;
|
556
|
+
height: 40px !important;
|
557
|
+
display: flex !important;
|
558
|
+
align-items: center !important;
|
559
|
+
justify-content: center !important;
|
560
|
+
background-color: rgb(229.517167382, 231.3519313305, 232.982832618) !important;
|
561
|
+
}
|
562
|
+
div.coer-date-box .mat-datepicker-toggle-active * {
|
563
|
+
color: var(--orange) !important;
|
564
|
+
}
|
565
|
+
|
566
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field {
|
567
|
+
background-color: transparent !important;
|
568
|
+
padding-left: 9px !important;
|
569
|
+
padding-right: 9px !important;
|
570
|
+
}
|
571
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple,
|
572
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple::before,
|
573
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple::after {
|
574
|
+
border-bottom-color: transparent !important;
|
575
|
+
}
|
576
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex {
|
577
|
+
height: 28px !important;
|
578
|
+
}
|
579
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
580
|
+
height: 28px !important;
|
581
|
+
}
|
582
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input {
|
583
|
+
margin-top: 3px !important;
|
584
|
+
font-size: 14px !important;
|
585
|
+
}
|
586
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field span.icon-container {
|
587
|
+
transform: translate(-5px, -6px) !important;
|
588
|
+
}
|
589
|
+
|
590
|
+
div.coer-grid header {
|
591
|
+
align-items: flex-end;
|
592
|
+
justify-content: flex-end;
|
593
|
+
padding-right: 8px;
|
594
|
+
margin: 0px;
|
595
|
+
}
|
596
|
+
div.coer-grid header > div {
|
597
|
+
padding: 0px 0px 10px 10px;
|
598
|
+
display: flex;
|
599
|
+
align-items: baseline;
|
600
|
+
}
|
601
|
+
div.coer-grid header > div a {
|
602
|
+
height: 40px !important;
|
603
|
+
}
|
604
|
+
div.coer-grid table {
|
605
|
+
table-layout: auto;
|
606
|
+
border-collapse: separate;
|
607
|
+
border-spacing: 1px 0px;
|
608
|
+
margin: 0px;
|
609
|
+
font-size: 14px;
|
610
|
+
}
|
611
|
+
div.coer-grid table thead tr th {
|
612
|
+
position: sticky !important;
|
613
|
+
z-index: 100 !important;
|
614
|
+
top: 0 !important;
|
615
|
+
background-color: var(--gray) !important;
|
616
|
+
color: var(--white) !important;
|
617
|
+
padding: 5px !important;
|
618
|
+
vertical-align: middle !important;
|
619
|
+
overflow: hidden;
|
620
|
+
text-overflow: ellipsis;
|
621
|
+
word-wrap: break-word;
|
622
|
+
min-width: 50px !important;
|
623
|
+
white-space: nowrap !important;
|
624
|
+
}
|
625
|
+
div.coer-grid table tbody {
|
626
|
+
border: 0px !important;
|
627
|
+
}
|
628
|
+
div.coer-grid table tbody tr:not(.row-focus):hover td {
|
629
|
+
color: black !important;
|
630
|
+
background-color: rgb(240.618852459, 246.3831967213, 254.881147541);
|
631
|
+
}
|
632
|
+
div.coer-grid table tbody tr td {
|
633
|
+
border: 0px !important;
|
634
|
+
padding: 5px !important;
|
635
|
+
vertical-align: middle !important;
|
636
|
+
white-space: break-spaces;
|
637
|
+
text-overflow: ellipsis;
|
638
|
+
overflow: hidden;
|
639
|
+
min-height: 31px !important;
|
640
|
+
}
|
641
|
+
div.coer-grid table tbody tr.row-focus td {
|
642
|
+
background-color: rgb(205.2114754098, 225.1680327869, 254.5885245902);
|
643
|
+
}
|
644
|
+
div.coer-grid table tbody tr td.coer-textbox,
|
645
|
+
div.coer-grid table tbody tr td.coer-numberbox,
|
646
|
+
div.coer-grid table tbody tr td.coer-selectbox {
|
647
|
+
padding: 0px !important;
|
648
|
+
overflow: visible !important;
|
649
|
+
}
|
650
|
+
div.coer-grid table tbody tr td.default-cell {
|
651
|
+
cursor: pointer !important;
|
652
|
+
}
|
653
|
+
div.coer-grid table thead tr th.action-button,
|
654
|
+
div.coer-grid table thead tr td.action-button,
|
655
|
+
div.coer-grid table thead tr th.check-box,
|
656
|
+
div.coer-grid table thead tr td.check-box,
|
657
|
+
div.coer-grid table tbody tr th.action-button,
|
658
|
+
div.coer-grid table tbody tr td.action-button,
|
659
|
+
div.coer-grid table tbody tr th.check-box table tbody tr td.check-box {
|
660
|
+
text-align: center !important;
|
661
|
+
cursor: default !important;
|
662
|
+
min-width: 40px !important;
|
663
|
+
max-width: 40px !important;
|
664
|
+
width: 40px !important;
|
665
|
+
padding: 0px !important;
|
666
|
+
}
|
667
|
+
div.coer-grid footer.grid-footer {
|
668
|
+
display: flex;
|
669
|
+
align-items: center;
|
670
|
+
justify-content: space-between;
|
671
|
+
font-size: small;
|
672
|
+
color: #999999;
|
673
|
+
padding-top: 5px;
|
674
|
+
}
|
675
|
+
div.coer-grid section.grid-container {
|
676
|
+
position: relative;
|
677
|
+
overflow: auto;
|
678
|
+
}
|
679
|
+
div.coer-grid div.loading,
|
680
|
+
div.coer-grid div.no-data {
|
681
|
+
position: absolute;
|
682
|
+
display: flex;
|
683
|
+
align-items: center;
|
684
|
+
justify-content: center;
|
685
|
+
width: 100%;
|
686
|
+
height: 100%;
|
687
|
+
font-size: 25px;
|
688
|
+
color: gray;
|
689
|
+
}
|
690
|
+
div.coer-grid div.loading {
|
691
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
692
|
+
flex-direction: column !important;
|
693
|
+
gap: 10px !important;
|
694
|
+
z-index: 1;
|
695
|
+
}
|
696
|
+
div.coer-grid div.loading span.fa-fade {
|
697
|
+
position: relative !important;
|
698
|
+
top: 50px !important;
|
699
|
+
}
|
700
|
+
div.coer-grid tr.loading {
|
701
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
702
|
+
}
|
703
|
+
div.coer-grid div.loading i.spinner-border {
|
704
|
+
color: var(--orange) !important;
|
705
|
+
width: 70px !important;
|
706
|
+
height: 70px !important;
|
707
|
+
font-size: 20px !important;
|
708
|
+
position: absolute !important;
|
709
|
+
}
|
710
|
+
div.coer-grid td.check-box div.spinner-border-container {
|
711
|
+
position: absolute;
|
712
|
+
transform: translate(7px, -19px);
|
713
|
+
}
|
714
|
+
div.coer-grid td.check-box div.spinner-border-container i.spinner-border {
|
715
|
+
width: 15px !important;
|
716
|
+
height: 15px !important;
|
717
|
+
color: var(--orange) !important;
|
718
|
+
}
|
719
|
+
div.coer-grid table thead tr th.check-box > div,
|
720
|
+
div.coer-grid table tbody tr td.check-box > div {
|
721
|
+
display: flex;
|
722
|
+
align-items: center;
|
723
|
+
justify-content: center;
|
724
|
+
cursor: default !important;
|
725
|
+
}
|
726
|
+
div.coer-grid input.form-check-input {
|
727
|
+
box-shadow: none !important;
|
728
|
+
margin: 0px;
|
729
|
+
}
|
730
|
+
div.coer-grid input[type=checkbox] {
|
731
|
+
cursor: pointer !important;
|
732
|
+
}
|
733
|
+
div.coer-grid td.group {
|
734
|
+
padding: 0px !important;
|
735
|
+
margin: 0px !important;
|
736
|
+
}
|
737
|
+
div.coer-grid td.group > * {
|
738
|
+
border-top: 1px solid var(--gray) !important;
|
739
|
+
border-bottom: 1px solid var(--gray) !important;
|
740
|
+
padding: 0px !important;
|
741
|
+
margin: 0px !important;
|
742
|
+
}
|
743
|
+
div.coer-grid .template,
|
744
|
+
div.coer-grid .template div {
|
745
|
+
white-space: nowrap !important;
|
746
|
+
display: flex !important;
|
747
|
+
align-items: center !important;
|
748
|
+
cursor: pointer !important;
|
749
|
+
gap: 5px !important;
|
750
|
+
width: 100%;
|
751
|
+
}
|
752
|
+
|
753
|
+
div.coer-list header {
|
754
|
+
align-items: center;
|
755
|
+
justify-content: flex-end;
|
756
|
+
padding-right: 10px;
|
757
|
+
margin: 0px;
|
758
|
+
}
|
759
|
+
div.coer-list header h6 {
|
760
|
+
display: flex;
|
761
|
+
align-items: center;
|
762
|
+
gap: 10px;
|
763
|
+
min-height: 40px;
|
764
|
+
max-height: 40px;
|
765
|
+
margin-top: 5px;
|
766
|
+
margin-bottom: 5px;
|
767
|
+
}
|
768
|
+
div.coer-list header > div {
|
769
|
+
display: flex;
|
770
|
+
align-items: baseline;
|
771
|
+
position: relative;
|
772
|
+
z-index: 1;
|
773
|
+
}
|
774
|
+
div.coer-list ul.coer-list {
|
775
|
+
width: 100%;
|
776
|
+
border: solid 1px #ccc;
|
777
|
+
display: block;
|
778
|
+
background: white;
|
779
|
+
border-radius: 4px;
|
780
|
+
overflow: auto;
|
781
|
+
}
|
782
|
+
div.coer-list li.coer-list-box {
|
783
|
+
padding: 10px 10px;
|
784
|
+
border-bottom: solid 1px #ccc;
|
785
|
+
color: rgba(0, 0, 0, 0.87);
|
786
|
+
display: flex;
|
787
|
+
flex-direction: row;
|
788
|
+
align-items: center;
|
789
|
+
justify-content: space-between;
|
790
|
+
box-sizing: border-box;
|
791
|
+
background: white;
|
792
|
+
font-size: 14px;
|
793
|
+
}
|
794
|
+
div.coer-list li.coer-list-box div.coer-list-content {
|
795
|
+
width: 100%;
|
796
|
+
display: flex;
|
797
|
+
align-items: center;
|
798
|
+
justify-content: space-between;
|
799
|
+
}
|
800
|
+
div.coer-list .cdk-drag-preview {
|
801
|
+
box-sizing: border-box;
|
802
|
+
border-radius: 4px;
|
803
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
804
|
+
}
|
805
|
+
div.coer-list .cdk-drag-animating {
|
806
|
+
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
807
|
+
}
|
808
|
+
div.coer-list .coer-list-box:last-child {
|
809
|
+
border: none;
|
810
|
+
}
|
811
|
+
div.coer-list .coer-list.cdk-drop-list-dragging .coer-list-box:not(.cdk-drag-placeholder) {
|
812
|
+
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
813
|
+
}
|
814
|
+
div.coer-list div.coer-list-placeholder {
|
815
|
+
background: #ccc;
|
816
|
+
border: dotted 3px #999;
|
817
|
+
min-height: 40px;
|
818
|
+
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
819
|
+
}
|
820
|
+
div.coer-list div.cdk-drag-placeholder,
|
821
|
+
div.coer-list ul.cdk-drop-list-dragging,
|
822
|
+
div.coer-list ul.cdk-drop-list-dragging * {
|
823
|
+
cursor: grabbing;
|
824
|
+
}
|
825
|
+
div.coer-list div.loading,
|
826
|
+
div.coer-list div.no-data {
|
827
|
+
position: absolute;
|
828
|
+
display: flex;
|
829
|
+
align-items: center;
|
830
|
+
justify-content: center;
|
831
|
+
width: 100%;
|
832
|
+
height: 100%;
|
833
|
+
font-size: 25px;
|
834
|
+
color: gray;
|
835
|
+
z-index: 1;
|
836
|
+
}
|
837
|
+
div.coer-list div.loading {
|
838
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
839
|
+
flex-direction: column !important;
|
840
|
+
gap: 10px !important;
|
841
|
+
}
|
842
|
+
div.coer-list div.loading span.fa-fade {
|
843
|
+
position: relative !important;
|
844
|
+
}
|
845
|
+
|
846
|
+
.modal-dialog {
|
847
|
+
margin: auto !important;
|
848
|
+
height: 100vh;
|
849
|
+
}
|
850
|
+
|
851
|
+
.modal-header {
|
852
|
+
padding: 8px 16px !important;
|
853
|
+
}
|
854
|
+
|
855
|
+
.modal-title {
|
856
|
+
font-weight: bold !important;
|
857
|
+
font-size: 17px !important;
|
858
|
+
}
|
859
|
+
|
860
|
+
.modal-body {
|
861
|
+
padding-top: 16px !important;
|
862
|
+
padding-bottom: 0px !important;
|
863
|
+
min-width: 60px !important;
|
864
|
+
}
|
865
|
+
|
866
|
+
div.coer-filebox .modal-body {
|
867
|
+
padding: 0px !important;
|
868
|
+
}
|
869
|
+
|
870
|
+
.modal-footer {
|
871
|
+
border: none !important;
|
872
|
+
display: flex !important;
|
873
|
+
align-items: flex-end !important;
|
874
|
+
justify-content: flex-end !important;
|
875
|
+
max-height: 64px !important;
|
876
|
+
min-height: 64px !important;
|
877
|
+
gap: 10px !important;
|
878
|
+
}
|
879
|
+
|
880
|
+
.btn-close:focus {
|
881
|
+
box-shadow: none !important;
|
882
|
+
}
|
883
|
+
|
884
|
+
div.modal-backdrop {
|
885
|
+
z-index: 0 !important;
|
886
|
+
}
|
887
|
+
|
888
|
+
aside.modal div.backdrop {
|
889
|
+
width: 100vw;
|
890
|
+
height: 100vh;
|
891
|
+
position: fixed;
|
892
|
+
top: 0px;
|
893
|
+
left: 0px;
|
894
|
+
background-color: rgba(0, 0, 0, 0.3568627451);
|
895
|
+
z-index: 1500;
|
896
|
+
}
|
897
|
+
|
898
|
+
div.modal-content {
|
899
|
+
z-index: 1501;
|
900
|
+
overflow: auto !important;
|
901
|
+
}
|
902
|
+
|
903
|
+
div.coer-number-box mat-form-field {
|
904
|
+
position: relative !important;
|
905
|
+
}
|
906
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex {
|
907
|
+
height: 40px !important;
|
908
|
+
}
|
909
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
910
|
+
width: 100% !important;
|
911
|
+
height: 40px !important;
|
912
|
+
padding: 0px !important;
|
913
|
+
}
|
914
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label {
|
915
|
+
overflow: visible !important;
|
916
|
+
position: absolute !important;
|
917
|
+
top: 20px !important;
|
918
|
+
}
|
919
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
920
|
+
color: var(--orange);
|
921
|
+
font-weight: bold;
|
922
|
+
position: relative;
|
923
|
+
left: -10px;
|
924
|
+
top: 2px;
|
925
|
+
}
|
926
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input {
|
927
|
+
font-weight: normal !important;
|
928
|
+
font-size: 17px !important;
|
929
|
+
color: var(--black) !important;
|
930
|
+
}
|
931
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input.caret-none {
|
932
|
+
caret-color: transparent !important;
|
933
|
+
}
|
934
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
935
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
936
|
+
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
937
|
+
border-bottom-color: var(--orange) !important;
|
938
|
+
}
|
939
|
+
div.coer-number-box mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
940
|
+
height: 0px !important;
|
941
|
+
}
|
942
|
+
div.coer-number-box mat-form-field span.icon-container {
|
943
|
+
position: absolute !important;
|
944
|
+
top: 1px !important;
|
945
|
+
right: -14px !important;
|
946
|
+
z-index: 5 !important;
|
947
|
+
width: 30px;
|
948
|
+
height: 40px;
|
949
|
+
display: flex;
|
950
|
+
align-items: center;
|
951
|
+
justify-content: center;
|
952
|
+
}
|
953
|
+
div.coer-number-box mat-form-field span.icon-container i {
|
954
|
+
font-size: 20px !important;
|
955
|
+
}
|
956
|
+
div.coer-number-box mat-form-field span.icon-container i.fa-solid.fa-xmark,
|
957
|
+
div.coer-number-box mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass {
|
958
|
+
color: rgb(202.1566523605, 205.9613733906, 209.3433476395) !important;
|
959
|
+
cursor: pointer !important;
|
960
|
+
}
|
961
|
+
div.coer-number-box mat-form-field span.icon-container i.fa-solid.fa-xmark:hover,
|
962
|
+
div.coer-number-box mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass:hover {
|
963
|
+
color: rgb(107.976360515, 116.9743905579, 124.972639485) !important;
|
964
|
+
}
|
965
|
+
div.coer-number-box mat-form-field span.icon-container i.fa-solid.fa-circle-check {
|
966
|
+
color: var(--green) !important;
|
967
|
+
}
|
968
|
+
div.coer-number-box mat-form-field span.icon-container i.fa-solid.fa-circle-exclamation {
|
969
|
+
color: var(--red) !important;
|
970
|
+
}
|
971
|
+
div.coer-number-box mat-form-field span.placeholder {
|
972
|
+
width: calc(100% + 32px) !important;
|
973
|
+
height: 40px !important;
|
974
|
+
position: absolute !important;
|
975
|
+
z-index: 1 !important;
|
976
|
+
top: 0px !important;
|
977
|
+
left: -16px !important;
|
978
|
+
}
|
979
|
+
div.coer-number-box mat-form-field .placeholder, div.coer-number-box mat-form-field .placeholder *,
|
980
|
+
div.coer-number-box mat-form-field .placeholder-glow, div.coer-number-box mat-form-field .placeholder-glow * {
|
981
|
+
cursor: wait !important;
|
982
|
+
}
|
983
|
+
div.coer-number-box mat-form-field.readonly div.mat-mdc-text-field-wrapper.mdc-text-field {
|
984
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
985
|
+
}
|
986
|
+
|
987
|
+
coer-grid table tbody tr td.coer-numberbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field {
|
988
|
+
background-color: transparent !important;
|
989
|
+
padding-left: 9px !important;
|
990
|
+
padding-right: 9px !important;
|
991
|
+
}
|
992
|
+
coer-grid table tbody tr td.coer-numberbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple,
|
993
|
+
coer-grid table tbody tr td.coer-numberbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple::before,
|
994
|
+
coer-grid table tbody tr td.coer-numberbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple::after {
|
995
|
+
border-bottom-color: transparent !important;
|
996
|
+
}
|
997
|
+
coer-grid table tbody tr td.coer-numberbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex {
|
998
|
+
height: 28px !important;
|
999
|
+
}
|
1000
|
+
coer-grid table tbody tr td.coer-numberbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
1001
|
+
height: 28px !important;
|
1002
|
+
}
|
1003
|
+
coer-grid table tbody tr td.coer-numberbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input {
|
1004
|
+
margin-top: 3px !important;
|
1005
|
+
font-size: 14px !important;
|
1006
|
+
}
|
1007
|
+
coer-grid table tbody tr td.coer-numberbox mat-form-field span.icon-container {
|
1008
|
+
transform: translate(-5px, -6px) !important;
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
header.coer-page-title {
|
1012
|
+
margin: 15px 30px 0px 30px;
|
1013
|
+
}
|
1014
|
+
header.coer-page-title h2 {
|
1015
|
+
margin: 0px 0px 10px 0px;
|
1016
|
+
display: flex;
|
1017
|
+
align-items: center;
|
1018
|
+
justify-content: space-between;
|
1019
|
+
height: 20px;
|
1020
|
+
font-size: 20px;
|
1021
|
+
}
|
1022
|
+
header.coer-page-title h2 span {
|
1023
|
+
font-size: 20px !important;
|
1024
|
+
}
|
1025
|
+
header.coer-page-title nav {
|
1026
|
+
height: auto;
|
1027
|
+
min-height: 25px;
|
1028
|
+
font-size: small;
|
1029
|
+
background-color: whitesmoke;
|
1030
|
+
display: flex;
|
1031
|
+
align-items: center;
|
1032
|
+
justify-content: space-between;
|
1033
|
+
}
|
1034
|
+
header.coer-page-title nav a.go-back-button {
|
1035
|
+
min-width: 60px;
|
1036
|
+
}
|
1037
|
+
header.coer-page-title ol, header.coer-page-title a {
|
1038
|
+
margin: 0px;
|
1039
|
+
padding-left: 5px;
|
1040
|
+
text-decoration: none;
|
1041
|
+
color: var(--blue) !important;
|
1042
|
+
font-weight: normal !important;
|
1043
|
+
cursor: pointer !important;
|
1044
|
+
}
|
1045
|
+
header.coer-page-title ol::selection, header.coer-page-title a::selection {
|
1046
|
+
background-color: transparent !important;
|
1047
|
+
}
|
1048
|
+
header.coer-page-title li {
|
1049
|
+
border: none;
|
1050
|
+
}
|
1051
|
+
header.coer-page-title li.list-group-item a {
|
1052
|
+
color: var(--orange) !important;
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
div.coer-dropdown {
|
1056
|
+
position: relative !important;
|
1057
|
+
width: fit-content !important;
|
1058
|
+
display: inline-block !important;
|
1059
|
+
}
|
1060
|
+
div.coer-dropdown .btn-group {
|
1061
|
+
position: absolute !important;
|
1062
|
+
top: 40px;
|
1063
|
+
left: 0px !important;
|
1064
|
+
width: 100% !important;
|
1065
|
+
}
|
1066
|
+
div.coer-dropdown ul.dropdown-menu {
|
1067
|
+
background-color: white !important;
|
1068
|
+
border-top-left-radius: 0px !important;
|
1069
|
+
border-top-right-radius: 0px !important;
|
1070
|
+
max-height: 205px !important;
|
1071
|
+
width: 100%;
|
1072
|
+
overflow: auto !important;
|
1073
|
+
padding: 0px !important;
|
1074
|
+
}
|
1075
|
+
div.coer-dropdown .dropdown-divider {
|
1076
|
+
margin: 0px !important;
|
1077
|
+
background-color: white !important;
|
1078
|
+
}
|
1079
|
+
div.coer-dropdown ul.dropdown-menu li:not(.no-options):hover,
|
1080
|
+
div.coer-dropdown ul.dropdown-menu li > div:not(.no-options):hover,
|
1081
|
+
div.coer-dropdown ul.dropdown-menu li:not(.dropdown-item-focus):hover,
|
1082
|
+
div.coer-dropdown ul.dropdown-menu li > div:not(.dropdown-item-focus):hover {
|
1083
|
+
color: black !important;
|
1084
|
+
background-color: rgb(240.618852459, 246.3831967213, 254.881147541) !important;
|
1085
|
+
}
|
1086
|
+
div.coer-dropdown ul.dropdown-menu li:last-child hr.dropdown-divider,
|
1087
|
+
div.coer-dropdown ul.dropdown-menu li:last-child hr.dropdown-divider:hover {
|
1088
|
+
width: 0px !important;
|
1089
|
+
border: none !important;
|
1090
|
+
}
|
1091
|
+
div.coer-dropdown ul.dropdown-menu li div {
|
1092
|
+
display: flex !important;
|
1093
|
+
align-items: center !important;
|
1094
|
+
height: 40px !important;
|
1095
|
+
}
|
1096
|
+
div.coer-dropdown ul.dropdown-menu li.no-options * {
|
1097
|
+
color: lightgray !important;
|
1098
|
+
}
|
1099
|
+
div.coer-dropdown div.dropdown-item-focus {
|
1100
|
+
background-color: rgb(205.2114754098, 225.1680327869, 254.5885245902) !important;
|
1101
|
+
}
|
1102
|
+
div.coer-dropdown mat-form-field.readonly div.mat-mdc-text-field-wrapper.mdc-text-field {
|
1103
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
div.coer-select-box {
|
1107
|
+
position: relative !important;
|
1108
|
+
}
|
1109
|
+
div.coer-select-box mat-form-field {
|
1110
|
+
position: relative !important;
|
1111
|
+
}
|
1112
|
+
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex {
|
1113
|
+
height: 40px !important;
|
1114
|
+
}
|
1115
|
+
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
1116
|
+
width: 100% !important;
|
1117
|
+
height: 40px !important;
|
1118
|
+
padding: 0px !important;
|
1119
|
+
}
|
1120
|
+
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label {
|
1121
|
+
overflow: visible !important;
|
1122
|
+
position: absolute !important;
|
1123
|
+
top: 20px !important;
|
1124
|
+
}
|
1125
|
+
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
1126
|
+
color: var(--orange);
|
1127
|
+
font-weight: bold;
|
1128
|
+
position: relative;
|
1129
|
+
left: -10px;
|
1130
|
+
top: 2px;
|
1131
|
+
}
|
1132
|
+
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input {
|
1133
|
+
font-weight: normal !important;
|
1134
|
+
font-size: 17px !important;
|
1135
|
+
color: var(--black) !important;
|
1136
|
+
}
|
1137
|
+
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
1138
|
+
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
1139
|
+
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
1140
|
+
border-bottom-color: var(--orange) !important;
|
1141
|
+
}
|
1142
|
+
div.coer-select-box mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
1143
|
+
height: 0px !important;
|
1144
|
+
}
|
1145
|
+
div.coer-select-box mat-form-field span.icon-container {
|
1146
|
+
position: absolute !important;
|
1147
|
+
top: 1px !important;
|
1148
|
+
right: -14px !important;
|
1149
|
+
z-index: 5 !important;
|
1150
|
+
height: 40px;
|
1151
|
+
display: flex;
|
1152
|
+
align-items: center;
|
1153
|
+
justify-content: center;
|
1154
|
+
gap: 5px;
|
1155
|
+
}
|
1156
|
+
div.coer-select-box mat-form-field span.icon-container i {
|
1157
|
+
font-size: 20px !important;
|
1158
|
+
}
|
1159
|
+
div.coer-select-box mat-form-field span.icon-container i.fa-solid.fa-xmark,
|
1160
|
+
div.coer-select-box mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass {
|
1161
|
+
color: rgb(202.1566523605, 205.9613733906, 209.3433476395) !important;
|
1162
|
+
cursor: pointer !important;
|
1163
|
+
}
|
1164
|
+
div.coer-select-box mat-form-field span.icon-container i.fa-solid.fa-xmark:hover,
|
1165
|
+
div.coer-select-box mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass:hover {
|
1166
|
+
color: rgb(107.976360515, 116.9743905579, 124.972639485) !important;
|
1167
|
+
}
|
1168
|
+
div.coer-select-box mat-form-field span.icon-container i.fa-solid.fa-circle-check {
|
1169
|
+
color: var(--green) !important;
|
1170
|
+
}
|
1171
|
+
div.coer-select-box mat-form-field span.icon-container i.fa-solid.fa-circle-exclamation {
|
1172
|
+
color: var(--red) !important;
|
1173
|
+
}
|
1174
|
+
div.coer-select-box mat-form-field span.icon-container i.fa-solid.fa-xmark {
|
1175
|
+
font-size: 22px !important;
|
1176
|
+
padding: 2px !important;
|
1177
|
+
}
|
1178
|
+
div.coer-select-box mat-form-field span.placeholder {
|
1179
|
+
width: calc(100% + 32px) !important;
|
1180
|
+
height: 40px !important;
|
1181
|
+
position: absolute !important;
|
1182
|
+
z-index: 1 !important;
|
1183
|
+
top: 0px !important;
|
1184
|
+
left: -16px !important;
|
1185
|
+
cursor: wait !important;
|
1186
|
+
}
|
1187
|
+
div.coer-select-box mat-form-field .placeholder, div.coer-select-box mat-form-field .placeholder *,
|
1188
|
+
div.coer-select-box mat-form-field .placeholder-glow, div.coer-select-box mat-form-field .placeholder-glow * {
|
1189
|
+
cursor: wait !important;
|
1190
|
+
}
|
1191
|
+
div.coer-select-box .btn-group {
|
1192
|
+
position: absolute !important;
|
1193
|
+
top: 40px;
|
1194
|
+
left: 0px !important;
|
1195
|
+
width: 100% !important;
|
1196
|
+
}
|
1197
|
+
div.coer-select-box ul.dropdown-menu {
|
1198
|
+
background-color: white !important;
|
1199
|
+
border-top-left-radius: 0px !important;
|
1200
|
+
border-top-right-radius: 0px !important;
|
1201
|
+
max-height: 205px !important;
|
1202
|
+
overflow: auto !important;
|
1203
|
+
padding: 0px !important;
|
1204
|
+
}
|
1205
|
+
div.coer-select-box .dropdown-divider {
|
1206
|
+
margin: 0px !important;
|
1207
|
+
background-color: white !important;
|
1208
|
+
}
|
1209
|
+
div.coer-select-box ul.dropdown-menu li:not(.dropdown-item-focus):hover,
|
1210
|
+
div.coer-select-box ul.dropdown-menu li > div:not(.dropdown-item-focus):hover {
|
1211
|
+
color: black !important;
|
1212
|
+
background-color: rgb(240.618852459, 246.3831967213, 254.881147541) !important;
|
1213
|
+
}
|
1214
|
+
div.coer-select-box ul.dropdown-menu li:last-child hr.dropdown-divider,
|
1215
|
+
div.coer-select-box ul.dropdown-menu li:last-child hr.dropdown-divider:hover {
|
1216
|
+
width: 0px !important;
|
1217
|
+
border: none !important;
|
1218
|
+
}
|
1219
|
+
div.coer-select-box ul.dropdown-menu li div {
|
1220
|
+
display: flex !important;
|
1221
|
+
align-items: center !important;
|
1222
|
+
height: 40px !important;
|
1223
|
+
}
|
1224
|
+
div.coer-select-box div.dropdown-item-focus {
|
1225
|
+
background-color: rgb(205.2114754098, 225.1680327869, 254.5885245902) !important;
|
1226
|
+
}
|
1227
|
+
div.coer-select-box mat-form-field.readonly div.mat-mdc-text-field-wrapper.mdc-text-field {
|
1228
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field {
|
1232
|
+
background-color: transparent !important;
|
1233
|
+
padding-left: 9px !important;
|
1234
|
+
padding-right: 9px !important;
|
1235
|
+
}
|
1236
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple,
|
1237
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple::before,
|
1238
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple::after {
|
1239
|
+
border-bottom-color: transparent !important;
|
1240
|
+
}
|
1241
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex {
|
1242
|
+
height: 28px !important;
|
1243
|
+
}
|
1244
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
1245
|
+
height: 28px !important;
|
1246
|
+
}
|
1247
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input {
|
1248
|
+
margin-top: 3px !important;
|
1249
|
+
font-size: 14px !important;
|
1250
|
+
}
|
1251
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box mat-form-field span.icon-container {
|
1252
|
+
transform: translate(-5px, -6px) !important;
|
1253
|
+
}
|
1254
|
+
coer-grid table tbody tr td.coer-selectbox div.coer-select-box .btn-group {
|
1255
|
+
top: 28px !important;
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
aside.modal .modal-content ul.dropdown-menu {
|
1259
|
+
position: fixed !important;
|
1260
|
+
}
|
1261
|
+
|
1262
|
+
mat-drawer-container {
|
1263
|
+
height: calc(100vh - 45px) !important;
|
1264
|
+
}
|
1265
|
+
mat-drawer-container .margin-left-40px {
|
1266
|
+
margin-left: 40px !important;
|
1267
|
+
}
|
1268
|
+
mat-drawer-container mat-drawer {
|
1269
|
+
width: auto;
|
1270
|
+
min-width: 200px;
|
1271
|
+
background-color: var(--black) !important;
|
1272
|
+
}
|
1273
|
+
mat-drawer-container mat-drawer div.mat-drawer-inner-container::-webkit-scrollbar {
|
1274
|
+
width: 1px !important;
|
1275
|
+
}
|
1276
|
+
mat-drawer-container mat-drawer div.mat-drawer-inner-container::-webkit-scrollbar-thumb {
|
1277
|
+
background-color: var(--gray) !important;
|
1278
|
+
border-radius: 5px !important;
|
1279
|
+
}
|
1280
|
+
mat-drawer-container mat-drawer div.mat-drawer-inner-container::-webkit-scrollbar-thumb:hover {
|
1281
|
+
background-color: var(--gray) !important;
|
1282
|
+
}
|
1283
|
+
mat-drawer-container mat-drawer div.mat-drawer-inner-container::-webkit-scrollbar-thumb:active {
|
1284
|
+
background-color: var(--white) !important;
|
1285
|
+
}
|
1286
|
+
mat-drawer-container mat-drawer i {
|
1287
|
+
font-size: 16px !important;
|
1288
|
+
}
|
1289
|
+
mat-drawer-container mat-drawer div.separator {
|
1290
|
+
border: 0.5px solid rgba(245, 245, 245, 0.041) !important;
|
1291
|
+
}
|
1292
|
+
mat-drawer-container mat-drawer-content {
|
1293
|
+
margin-right: 0px !important;
|
1294
|
+
}
|
1295
|
+
mat-drawer-container mat-drawer-content aside.side-nav {
|
1296
|
+
background-color: var(--black) !important;
|
1297
|
+
width: 40px !important;
|
1298
|
+
position: fixed !important;
|
1299
|
+
left: 0px !important;
|
1300
|
+
top: 45px !important;
|
1301
|
+
bottom: 0px !important;
|
1302
|
+
cursor: pointer !important;
|
1303
|
+
}
|
1304
|
+
mat-drawer-container mat-drawer-content aside.side-nav span.icon-container {
|
1305
|
+
width: 100% !important;
|
1306
|
+
height: 49.6px !important;
|
1307
|
+
display: flex !important;
|
1308
|
+
align-items: center !important;
|
1309
|
+
justify-content: center !important;
|
1310
|
+
font-size: 16px !important;
|
1311
|
+
border-bottom: 1px solid rgba(245, 245, 245, 0.041) !important;
|
1312
|
+
color: var(--white);
|
1313
|
+
}
|
1314
|
+
mat-drawer-container mat-drawer-content aside.side-nav span.icon-container:hover {
|
1315
|
+
background-color: rgb(47.2, 47.2, 47.2) !important;
|
1316
|
+
}
|
1317
|
+
mat-drawer-container mat-drawer-content aside.side-nav span.icon-container.active-link {
|
1318
|
+
color: var(--orange) !important;
|
1319
|
+
}
|
1320
|
+
mat-drawer-container div.backdrop {
|
1321
|
+
position: absolute !important;
|
1322
|
+
top: 0px !important;
|
1323
|
+
left: 0px !important;
|
1324
|
+
right: 0px !important;
|
1325
|
+
bottom: 0px !important;
|
1326
|
+
background-color: rgba(0, 0, 0, 0.3568627451) !important;
|
1327
|
+
z-index: 1500 !important;
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
mat-nav-list.coer-menu-option {
|
1331
|
+
padding: 0px !important;
|
1332
|
+
}
|
1333
|
+
mat-nav-list.coer-menu-option div, mat-nav-list.coer-menu-option span {
|
1334
|
+
font-size: 16px !important;
|
1335
|
+
font-family: sans-serif !important;
|
1336
|
+
font-weight: bold;
|
1337
|
+
}
|
1338
|
+
mat-nav-list.coer-menu-option mat-list-item {
|
1339
|
+
padding: 0px 35px 0px 10px !important;
|
1340
|
+
display: inline-flex !important;
|
1341
|
+
height: 48px !important;
|
1342
|
+
color: var(--white);
|
1343
|
+
}
|
1344
|
+
mat-nav-list.coer-menu-option mat-list-item span.icon-container {
|
1345
|
+
display: inline-flex !important;
|
1346
|
+
align-items: center !important;
|
1347
|
+
justify-content: center !important;
|
1348
|
+
height: 48px !important;
|
1349
|
+
min-width: 20px !important;
|
1350
|
+
max-width: 20px !important;
|
1351
|
+
color: var(--white);
|
1352
|
+
}
|
1353
|
+
mat-nav-list.coer-menu-option mat-list-item span.icon-container i {
|
1354
|
+
min-height: 16px !important;
|
1355
|
+
}
|
1356
|
+
mat-nav-list.coer-menu-option mat-list-item span.label-container {
|
1357
|
+
justify-content: flex-start !important;
|
1358
|
+
display: inline-flex !important;
|
1359
|
+
height: auto !important;
|
1360
|
+
margin-left: 10px !important;
|
1361
|
+
color: var(--white);
|
1362
|
+
}
|
1363
|
+
mat-nav-list.coer-menu-option mat-list-item span.icon-container.active-link,
|
1364
|
+
mat-nav-list.coer-menu-option mat-list-item span.label-container.active-link {
|
1365
|
+
color: var(--orange) !important;
|
1366
|
+
}
|
1367
|
+
mat-nav-list.coer-menu-option mat-list-item:hover {
|
1368
|
+
background-color: rgb(47.2, 47.2, 47.2) !important;
|
1369
|
+
}
|
1370
|
+
|
1371
|
+
mat-accordion.coer-tree-accordion div, mat-accordion.coer-tree-accordion span {
|
1372
|
+
font-size: 16px !important;
|
1373
|
+
font-family: sans-serif !important;
|
1374
|
+
font-weight: bold;
|
1375
|
+
}
|
1376
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel {
|
1377
|
+
background-color: var(--black) !important;
|
1378
|
+
box-shadow: none !important;
|
1379
|
+
border-radius: 0px !important;
|
1380
|
+
}
|
1381
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel div.mat-expansion-panel-body {
|
1382
|
+
padding: 0px !important;
|
1383
|
+
}
|
1384
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel div.separator {
|
1385
|
+
border: 0.5px solid rgba(245, 245, 245, 0.041) !important;
|
1386
|
+
}
|
1387
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel span::selection {
|
1388
|
+
background-color: transparent !important;
|
1389
|
+
}
|
1390
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header {
|
1391
|
+
padding: 0px 10px;
|
1392
|
+
height: 48px !important;
|
1393
|
+
}
|
1394
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header span.mat-expansion-indicator {
|
1395
|
+
width: 10px !important;
|
1396
|
+
margin-left: 15px !important;
|
1397
|
+
}
|
1398
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header span.mat-expansion-indicator::after {
|
1399
|
+
color: var(--white) !important;
|
1400
|
+
}
|
1401
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header mat-panel-description {
|
1402
|
+
margin-right: 0px !important;
|
1403
|
+
}
|
1404
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header mat-panel-description span.icon-container {
|
1405
|
+
height: 48px !important;
|
1406
|
+
min-width: 20px !important;
|
1407
|
+
max-width: 20px !important;
|
1408
|
+
display: flex !important;
|
1409
|
+
align-items: center !important;
|
1410
|
+
justify-content: center !important;
|
1411
|
+
color: var(--white);
|
1412
|
+
}
|
1413
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header mat-panel-description span.label-container {
|
1414
|
+
height: 48px !important;
|
1415
|
+
margin-left: 10px !important;
|
1416
|
+
display: flex !important;
|
1417
|
+
align-items: center !important;
|
1418
|
+
color: var(--white);
|
1419
|
+
}
|
1420
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header.text-orange span.mat-expansion-indicator::after {
|
1421
|
+
color: var(--orange) !important;
|
1422
|
+
}
|
1423
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header:not(.background-orange):hover {
|
1424
|
+
background-color: rgb(47.2, 47.2, 47.2) !important;
|
1425
|
+
}
|
1426
|
+
|
1427
|
+
div.coer-switch {
|
1428
|
+
height: 40px;
|
1429
|
+
display: flex !important;
|
1430
|
+
align-items: center !important;
|
1431
|
+
position: relative !important;
|
1432
|
+
}
|
1433
|
+
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button .mdc-switch__track::after {
|
1434
|
+
background-color: var(--orange) !important;
|
1435
|
+
filter: opacity(0.6) !important;
|
1436
|
+
}
|
1437
|
+
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button .mdc-switch__handle-track .mdc-switch__ripple {
|
1438
|
+
width: 30px !important;
|
1439
|
+
height: 30px !important;
|
1440
|
+
}
|
1441
|
+
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button.mdc-switch.mdc-switch--selected.mdc-switch--checked .mdc-switch__handle-track .mdc-switch__handle .mdc-switch__icons {
|
1442
|
+
background-color: var(--orange) !important;
|
1443
|
+
border-radius: 20px !important;
|
1444
|
+
}
|
1445
|
+
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field label,
|
1446
|
+
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field label::selection {
|
1447
|
+
font-weight: normal;
|
1448
|
+
background-color: transparent !important;
|
1449
|
+
font-size: 17px !important;
|
1450
|
+
}
|
1451
|
+
div.coer-switch .placeholder {
|
1452
|
+
display: flex !important;
|
1453
|
+
height: 27px !important;
|
1454
|
+
}
|
1455
|
+
div.coer-switch .placeholder, div.coer-switch .placeholder *,
|
1456
|
+
div.coer-switch .placeholder-glow, div.coer-switch .placeholder-glow * {
|
1457
|
+
cursor: wait !important;
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
coer-grid div.coer-switch {
|
1461
|
+
height: 20px !important;
|
1462
|
+
justify-content: center !important;
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
div.coer-tab mat-tab-group mat-tab-header.mat-mdc-tab-header {
|
1466
|
+
background-color: rgba(245, 245, 245, 0.384) !important;
|
1467
|
+
border-bottom: 1px solid whitesmoke !important;
|
1468
|
+
}
|
1469
|
+
div.coer-tab mat-tab-group mat-tab-header.mat-mdc-tab-header div.mat-mdc-tab-label-container div.mat-mdc-tab-list div.mat-mdc-tab-labels div.mdc-tab.mat-mdc-tab {
|
1470
|
+
padding: 0px !important;
|
1471
|
+
height: 35px !important;
|
1472
|
+
}
|
1473
|
+
div.coer-tab mat-tab-group mat-tab-header.mat-mdc-tab-header div.mat-mdc-tab-label-container div.mat-mdc-tab-list div.mat-mdc-tab-labels div.mdc-tab--active.mdc-tab-indicator--active * {
|
1474
|
+
color: var(--orange) !important;
|
1475
|
+
border-color: var(--orange) !important;
|
1476
|
+
}
|
1477
|
+
div.coer-tab mat-tab-group mat-tab-header.mat-mdc-tab-header span.tab {
|
1478
|
+
padding: 10px 20px !important;
|
1479
|
+
}
|
1480
|
+
div.coer-tab mat-tab-group div.mat-mdc-tab-body-wrapper {
|
1481
|
+
overflow: visible !important;
|
1482
|
+
}
|
1483
|
+
div.coer-tab mat-tab-group div.mat-mdc-tab-body-wrapper mat-tab-body {
|
1484
|
+
overflow: visible !important;
|
1485
|
+
}
|
1486
|
+
div.coer-tab mat-tab-group div.mat-mdc-tab-body-wrapper mat-tab-body div.mat-mdc-tab-body-content {
|
1487
|
+
width: auto !important;
|
1488
|
+
overflow: visible !important;
|
1489
|
+
}
|
1490
|
+
div.coer-tab mat-tab-group div.mat-mdc-tab-body-wrapper mat-tab-body div.mat-mdc-tab-body-content div.tab-content {
|
1491
|
+
padding: 5px;
|
1492
|
+
}
|
1493
|
+
|
1494
|
+
div.coer-textarea mat-form-field {
|
1495
|
+
position: relative !important;
|
1496
|
+
}
|
1497
|
+
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
1498
|
+
width: 100% !important;
|
1499
|
+
padding: 0px !important;
|
1500
|
+
}
|
1501
|
+
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label {
|
1502
|
+
overflow: visible !important;
|
1503
|
+
position: absolute !important;
|
1504
|
+
top: 20px !important;
|
1505
|
+
}
|
1506
|
+
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
1507
|
+
color: var(--orange);
|
1508
|
+
font-weight: bold;
|
1509
|
+
position: relative;
|
1510
|
+
left: -10px;
|
1511
|
+
top: 2px;
|
1512
|
+
}
|
1513
|
+
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix textarea {
|
1514
|
+
font-weight: normal !important;
|
1515
|
+
font-size: 17px !important;
|
1516
|
+
color: var(--black) !important;
|
1517
|
+
min-height: 80px;
|
1518
|
+
}
|
1519
|
+
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
1520
|
+
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
1521
|
+
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
1522
|
+
border-bottom-color: var(--orange) !important;
|
1523
|
+
}
|
1524
|
+
div.coer-textarea mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
1525
|
+
height: 0px !important;
|
1526
|
+
}
|
1527
|
+
div.coer-textarea mat-form-field span.icon-container {
|
1528
|
+
position: absolute !important;
|
1529
|
+
top: 1px !important;
|
1530
|
+
right: -14px !important;
|
1531
|
+
z-index: 5 !important;
|
1532
|
+
width: 30px;
|
1533
|
+
height: 40px;
|
1534
|
+
display: flex;
|
1535
|
+
align-items: center;
|
1536
|
+
justify-content: center;
|
1537
|
+
}
|
1538
|
+
div.coer-textarea mat-form-field span.icon-container i {
|
1539
|
+
font-size: 20px !important;
|
1540
|
+
}
|
1541
|
+
div.coer-textarea mat-form-field span.icon-container i.fa-solid.fa-xmark,
|
1542
|
+
div.coer-textarea mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass {
|
1543
|
+
color: rgb(202.1566523605, 205.9613733906, 209.3433476395) !important;
|
1544
|
+
cursor: pointer !important;
|
1545
|
+
}
|
1546
|
+
div.coer-textarea mat-form-field span.icon-container i.fa-solid.fa-xmark:hover,
|
1547
|
+
div.coer-textarea mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass:hover {
|
1548
|
+
color: rgb(107.976360515, 116.9743905579, 124.972639485) !important;
|
1549
|
+
}
|
1550
|
+
div.coer-textarea mat-form-field span.icon-container i.fa-solid.fa-circle-check {
|
1551
|
+
color: var(--green) !important;
|
1552
|
+
}
|
1553
|
+
div.coer-textarea mat-form-field span.icon-container i.fa-solid.fa-circle-exclamation {
|
1554
|
+
color: var(--red) !important;
|
1555
|
+
}
|
1556
|
+
div.coer-textarea mat-form-field span.placeholder {
|
1557
|
+
width: calc(100% + 32px) !important;
|
1558
|
+
height: 100% !important;
|
1559
|
+
position: absolute !important;
|
1560
|
+
z-index: 1 !important;
|
1561
|
+
top: 0px !important;
|
1562
|
+
left: -16px !important;
|
1563
|
+
cursor: wait !important;
|
1564
|
+
}
|
1565
|
+
div.coer-textarea mat-form-field .placeholder, div.coer-textarea mat-form-field .placeholder *,
|
1566
|
+
div.coer-textarea mat-form-field .placeholder-glow, div.coer-textarea mat-form-field .placeholder-glow * {
|
1567
|
+
cursor: wait !important;
|
1568
|
+
}
|
1569
|
+
div.coer-textarea footer {
|
1570
|
+
padding-top: 2px;
|
1571
|
+
text-align: right;
|
1572
|
+
font-size: 10px;
|
1573
|
+
color: var(--gray);
|
1574
|
+
}
|
1575
|
+
div.coer-textarea mat-form-field.readonly div.mat-mdc-text-field-wrapper.mdc-text-field {
|
1576
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
1577
|
+
}
|
1578
|
+
|
1579
|
+
div.coer-text-box {
|
1580
|
+
display: flex;
|
1581
|
+
align-items: center;
|
1582
|
+
}
|
1583
|
+
div.coer-text-box mat-form-field {
|
1584
|
+
position: relative !important;
|
1585
|
+
}
|
1586
|
+
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex {
|
1587
|
+
height: 40px !important;
|
1588
|
+
}
|
1589
|
+
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
1590
|
+
width: 100% !important;
|
1591
|
+
height: 40px !important;
|
1592
|
+
padding: 0px !important;
|
1593
|
+
}
|
1594
|
+
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label {
|
1595
|
+
overflow: visible !important;
|
1596
|
+
position: absolute !important;
|
1597
|
+
top: 20px !important;
|
1598
|
+
}
|
1599
|
+
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
1600
|
+
color: var(--orange);
|
1601
|
+
font-weight: bold;
|
1602
|
+
position: relative;
|
1603
|
+
left: -10px;
|
1604
|
+
top: 2px;
|
1605
|
+
}
|
1606
|
+
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input {
|
1607
|
+
font-weight: normal !important;
|
1608
|
+
font-size: 17px !important;
|
1609
|
+
color: var(--black) !important;
|
1610
|
+
}
|
1611
|
+
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
1612
|
+
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
1613
|
+
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
1614
|
+
border-bottom-color: var(--orange) !important;
|
1615
|
+
}
|
1616
|
+
div.coer-text-box mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
1617
|
+
height: 0px !important;
|
1618
|
+
}
|
1619
|
+
div.coer-text-box mat-form-field span.icon-container {
|
1620
|
+
position: absolute !important;
|
1621
|
+
top: 1px !important;
|
1622
|
+
right: -14px !important;
|
1623
|
+
z-index: 5 !important;
|
1624
|
+
width: 30px;
|
1625
|
+
height: 40px;
|
1626
|
+
display: flex;
|
1627
|
+
align-items: center;
|
1628
|
+
justify-content: center;
|
1629
|
+
}
|
1630
|
+
div.coer-text-box mat-form-field span.icon-container i {
|
1631
|
+
font-size: 20px !important;
|
1632
|
+
}
|
1633
|
+
div.coer-text-box mat-form-field span.icon-container i.fa-solid.fa-xmark,
|
1634
|
+
div.coer-text-box mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass {
|
1635
|
+
color: rgb(202.1566523605, 205.9613733906, 209.3433476395) !important;
|
1636
|
+
cursor: pointer !important;
|
1637
|
+
}
|
1638
|
+
div.coer-text-box mat-form-field span.icon-container i.fa-solid.fa-xmark:hover,
|
1639
|
+
div.coer-text-box mat-form-field span.icon-container i.fa-solid.fa-magnifying-glass:hover {
|
1640
|
+
color: rgb(107.976360515, 116.9743905579, 124.972639485) !important;
|
1641
|
+
}
|
1642
|
+
div.coer-text-box mat-form-field span.icon-container i.fa-solid.fa-circle-check {
|
1643
|
+
color: var(--green) !important;
|
1644
|
+
}
|
1645
|
+
div.coer-text-box mat-form-field span.icon-container i.fa-solid.fa-circle-exclamation {
|
1646
|
+
color: var(--red) !important;
|
1647
|
+
}
|
1648
|
+
div.coer-text-box mat-form-field span.placeholder {
|
1649
|
+
width: calc(100% + 32px) !important;
|
1650
|
+
height: 40px !important;
|
1651
|
+
position: absolute !important;
|
1652
|
+
z-index: 1 !important;
|
1653
|
+
top: 0px !important;
|
1654
|
+
left: -16px !important;
|
1655
|
+
cursor: wait !important;
|
1656
|
+
}
|
1657
|
+
div.coer-text-box mat-form-field .placeholder, div.coer-text-box mat-form-field .placeholder *,
|
1658
|
+
div.coer-text-box mat-form-field .placeholder-glow, div.coer-text-box mat-form-field .placeholder-glow * {
|
1659
|
+
cursor: wait !important;
|
1660
|
+
}
|
1661
|
+
div.coer-text-box mat-form-field.readonly div.mat-mdc-text-field-wrapper.mdc-text-field {
|
1662
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
1663
|
+
}
|
1664
|
+
div.coer-text-box div.button-container {
|
1665
|
+
width: 40px !important;
|
1666
|
+
height: 40px !important;
|
1667
|
+
display: flex !important;
|
1668
|
+
align-items: center !important;
|
1669
|
+
justify-content: center !important;
|
1670
|
+
background-color: rgb(229.517167382, 231.3519313305, 232.982832618) !important;
|
1671
|
+
}
|
1672
|
+
|
1673
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field {
|
1674
|
+
background-color: transparent !important;
|
1675
|
+
padding-left: 9px !important;
|
1676
|
+
padding-right: 9px !important;
|
1677
|
+
}
|
1678
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple,
|
1679
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple::before,
|
1680
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple::after {
|
1681
|
+
border-bottom-color: transparent !important;
|
1682
|
+
}
|
1683
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex {
|
1684
|
+
height: 28px !important;
|
1685
|
+
}
|
1686
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix {
|
1687
|
+
height: 28px !important;
|
1688
|
+
}
|
1689
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix input {
|
1690
|
+
margin-top: 3px !important;
|
1691
|
+
font-size: 14px !important;
|
1692
|
+
}
|
1693
|
+
coer-grid table tbody tr td.coer-textbox mat-form-field span.icon-container {
|
1694
|
+
transform: translate(-5px, -6px) !important;
|
1695
|
+
}
|
1696
|
+
|
1697
|
+
aside.toast-container {
|
1698
|
+
position: fixed;
|
1699
|
+
bottom: 0px;
|
1700
|
+
right: 0px;
|
1701
|
+
padding: 15px !important;
|
1702
|
+
z-index: 2000 !important;
|
1703
|
+
}
|
1704
|
+
aside.toast-container i, aside.toast-container svg {
|
1705
|
+
display: flex;
|
1706
|
+
align-items: center;
|
1707
|
+
}
|
1708
|
+
aside.toast-container strong {
|
1709
|
+
margin: 0px auto 0px 5px;
|
1710
|
+
}
|
1711
|
+
aside.toast-container div.toast,
|
1712
|
+
aside.toast-container div.toast-header {
|
1713
|
+
border-top-left-radius: 10px;
|
1714
|
+
border-top-right-radius: 10px;
|
1715
|
+
color: var(--white);
|
1716
|
+
}
|
1717
|
+
aside.toast-container div.toast,
|
1718
|
+
aside.toast-container div.toast-body {
|
1719
|
+
border-bottom-left-radius: 10px;
|
1720
|
+
border-bottom-right-radius: 10px;
|
1721
|
+
width: auto !important;
|
1722
|
+
min-width: 350px !important;
|
1723
|
+
max-width: 470px !important;
|
1724
|
+
color: var(--white);
|
1725
|
+
}
|
1726
|
+
aside.toast-container div.toast-body {
|
1727
|
+
min-height: 36px;
|
1728
|
+
}
|
1729
|
+
aside.toast-container pre {
|
1730
|
+
font-family: Roboto, RobotoFallback, "Noto Kufi Arabic", Helvetica, Arial, sans-serif;
|
1731
|
+
white-space: pre-wrap;
|
1732
|
+
font-size: medium;
|
1733
|
+
}
|
1734
|
+
aside.toast-container button {
|
1735
|
+
margin: 0px 2px !important;
|
1736
|
+
width: 10px !important;
|
1737
|
+
height: 10px !important;
|
1738
|
+
box-shadow: none !important;
|
1739
|
+
outline: none !important;
|
1740
|
+
border: none !important;
|
1741
|
+
}
|
1742
|
+
aside.toast-container div#alert-success div.toast-header,
|
1743
|
+
aside.toast-container div#alert-success div.toast-body {
|
1744
|
+
background-color: var(--green);
|
1745
|
+
}
|
1746
|
+
aside.toast-container div#alert-info div.toast-header,
|
1747
|
+
aside.toast-container div#alert-info div.toast-body {
|
1748
|
+
background-color: var(--blue);
|
1749
|
+
}
|
1750
|
+
aside.toast-container div#alert-error div.toast-header,
|
1751
|
+
aside.toast-container div#alert-error div.toast-body {
|
1752
|
+
background-color: var(--red);
|
1753
|
+
}
|
1754
|
+
aside.toast-container div#alert-warning div.toast-header,
|
1755
|
+
aside.toast-container div#alert-warning div.toast-body {
|
1756
|
+
background-color: var(--yellow);
|
1757
|
+
border-color: var(--black);
|
1758
|
+
color: var(--black);
|
1759
|
+
}
|
1760
|
+
aside.toast-container div#alert-success:hover,
|
1761
|
+
aside.toast-container div#alert-info:hover,
|
1762
|
+
aside.toast-container div#alert-error:hover,
|
1763
|
+
aside.toast-container div#alert-warning:hover {
|
1764
|
+
transform: scale(1.01);
|
1765
|
+
box-shadow: 2px 2px 10px lightslategray;
|
1766
|
+
cursor: default;
|
1767
|
+
}
|
1768
|
+
|
1769
|
+
button.sweet-alert-button {
|
1770
|
+
width: 100px !important;
|
1771
|
+
height: 40px !important;
|
1772
|
+
display: flex !important;
|
1773
|
+
align-items: center !important;
|
1774
|
+
justify-content: center !important;
|
1775
|
+
margin: 0px 5px !important;
|
1776
|
+
outline: none !important;
|
1777
|
+
border: none !important;
|
1778
|
+
box-shadow: none !important;
|
1779
|
+
}
|
1780
|
+
|
1781
|
+
aside.toast-container > * {
|
1782
|
+
border: none !important;
|
1783
|
+
z-index: 2000 !important;
|
1784
|
+
margin: 15px 0px 0px 0px !important;
|
1785
|
+
}
|
1786
|
+
|
1787
|
+
.tooltip-inner {
|
1788
|
+
min-width: 125px;
|
1789
|
+
max-width: 250px;
|
1790
|
+
min-height: 35px;
|
1791
|
+
display: flex;
|
1792
|
+
align-items: center;
|
1793
|
+
justify-content: center;
|
1794
|
+
word-break: break-word;
|
1795
|
+
}
|
1796
|
+
|
1797
|
+
@keyframes fadeIn {
|
1798
|
+
from {
|
1799
|
+
opacity: 0;
|
1800
|
+
}
|
1801
|
+
to {
|
1802
|
+
opacity: 1;
|
1803
|
+
}
|
1804
|
+
}
|
1805
|
+
.coer-container {
|
1806
|
+
margin: 15px 30px 0px 30px;
|
1807
|
+
padding: 10px;
|
1808
|
+
box-shadow: 0px 0px 10px -10px black;
|
1809
|
+
border-radius: 8px;
|
1810
|
+
background-color: white;
|
1811
|
+
animation-name: fadeIn;
|
1812
|
+
animation-duration: 1.5s;
|
1813
|
+
animation-iteration-count: 1;
|
1814
|
+
min-height: 60px;
|
1815
|
+
}
|
1816
|
+
|
1817
|
+
.coer-container-accordion {
|
1818
|
+
margin: 15px 30px 0px 30px;
|
1819
|
+
padding: 10px;
|
1820
|
+
box-shadow: 0px 0px 10px -10px black;
|
1821
|
+
border-radius: 8px;
|
1822
|
+
background-color: white;
|
1823
|
+
animation-name: fadeIn;
|
1824
|
+
animation-duration: 1.5s;
|
1825
|
+
animation-iteration-count: 1;
|
1826
|
+
min-height: 60px;
|
1827
|
+
min-height: 55px;
|
1828
|
+
}
|
1829
|
+
|
1830
|
+
.coer-container-tab {
|
1831
|
+
margin: 15px 30px 0px 30px;
|
1832
|
+
padding: 10px;
|
1833
|
+
box-shadow: 0px 0px 10px -10px black;
|
1834
|
+
border-radius: 8px;
|
1835
|
+
background-color: white;
|
1836
|
+
animation-name: fadeIn;
|
1837
|
+
animation-duration: 1.5s;
|
1838
|
+
animation-iteration-count: 1;
|
1839
|
+
min-height: 60px;
|
1840
|
+
padding: 0px;
|
1841
|
+
}
|
1842
|
+
.coer-container-tab .row {
|
1843
|
+
margin: 12px 0px;
|
1844
|
+
}
|
1845
|
+
|
1846
|
+
.coer-container-grid {
|
1847
|
+
margin: 15px 30px 0px 30px;
|
1848
|
+
padding: 10px;
|
1849
|
+
box-shadow: 0px 0px 10px -10px black;
|
1850
|
+
border-radius: 8px;
|
1851
|
+
background-color: white;
|
1852
|
+
animation-name: fadeIn;
|
1853
|
+
animation-duration: 1.5s;
|
1854
|
+
animation-iteration-count: 1;
|
1855
|
+
min-height: 60px;
|
1856
|
+
padding-bottom: 5px;
|
1857
|
+
}
|
1858
|
+
|
1859
|
+
.coer-container-list {
|
1860
|
+
margin: 15px 30px 0px 30px;
|
1861
|
+
padding: 10px;
|
1862
|
+
box-shadow: 0px 0px 10px -10px black;
|
1863
|
+
border-radius: 8px;
|
1864
|
+
background-color: white;
|
1865
|
+
animation-name: fadeIn;
|
1866
|
+
animation-duration: 1.5s;
|
1867
|
+
animation-iteration-count: 1;
|
1868
|
+
min-height: 60px;
|
1869
|
+
padding: 0px;
|
1870
|
+
}
|
1871
|
+
|
1872
|
+
.cursor-default {
|
1873
|
+
cursor: default !important;
|
1874
|
+
}
|
1875
|
+
|
1876
|
+
.cursor-pointer {
|
1877
|
+
cursor: pointer !important;
|
1878
|
+
}
|
1879
|
+
|
1880
|
+
.cursor-wait {
|
1881
|
+
cursor: wait !important;
|
1882
|
+
}
|
1883
|
+
|
1884
|
+
.cursor-grab {
|
1885
|
+
cursor: grab !important;
|
1886
|
+
}
|
1887
|
+
|
1888
|
+
.cursor-grabbing {
|
1889
|
+
cursor: grabbing !important;
|
1890
|
+
}
|
1891
|
+
|
1892
|
+
*::-webkit-scrollbar {
|
1893
|
+
background-color: rgb(237.7253218884, 238.9690987124, 240.0746781116);
|
1894
|
+
width: 5px;
|
1895
|
+
height: 5px;
|
1896
|
+
}
|
1897
|
+
|
1898
|
+
*::-webkit-scrollbar-thumb {
|
1899
|
+
background-color: rgb(202.1566523605, 205.9613733906, 209.3433476395);
|
1900
|
+
border-radius: 4px;
|
1901
|
+
}
|
1902
|
+
|
1903
|
+
*::-webkit-scrollbar-thumb:hover {
|
1904
|
+
background-color: var(--gray);
|
1905
|
+
}
|
1906
|
+
|
1907
|
+
*::-webkit-scrollbar-thumb:active {
|
1908
|
+
background-color: var(--gray);
|
1909
|
+
}
|
1910
|
+
|
1911
|
+
.flex-center {
|
1912
|
+
display: flex !important;
|
1913
|
+
align-items: center !important;
|
1914
|
+
justify-content: center !important;
|
1915
|
+
}
|
1916
|
+
|
1917
|
+
.flex-center-left {
|
1918
|
+
display: flex !important;
|
1919
|
+
align-items: center !important;
|
1920
|
+
justify-content: flex-start !important;
|
1921
|
+
}
|
1922
|
+
|
1923
|
+
.flex-center-right {
|
1924
|
+
display: flex !important;
|
1925
|
+
align-items: center !important;
|
1926
|
+
justify-content: flex-end !important;
|
1927
|
+
}
|
1928
|
+
|
1929
|
+
.fill-space {
|
1930
|
+
flex: 1 1 auto;
|
1931
|
+
}
|
1932
|
+
|
1933
|
+
.flex-wrap-left {
|
1934
|
+
display: flex !important;
|
1935
|
+
flex-wrap: wrap !important;
|
1936
|
+
gap: 10px !important;
|
1937
|
+
align-items: flex-start !important;
|
1938
|
+
}
|
1939
|
+
|
1940
|
+
.flex-wrap,
|
1941
|
+
.flex-wrap-center {
|
1942
|
+
display: flex !important;
|
1943
|
+
flex-wrap: wrap !important;
|
1944
|
+
gap: 10px !important;
|
1945
|
+
align-items: center !important;
|
1946
|
+
}
|
1947
|
+
|
1948
|
+
.flex-wrap-end {
|
1949
|
+
display: flex !important;
|
1950
|
+
flex-wrap: wrap !important;
|
1951
|
+
gap: 10px !important;
|
1952
|
+
align-items: flex-end !important;
|
1953
|
+
}
|
1954
|
+
|
1955
|
+
.flex-wrap-item {
|
1956
|
+
flex-grow: 1 !important;
|
1957
|
+
flex-basis: 200 !important;
|
1958
|
+
}
|
1959
|
+
|
1960
|
+
@keyframes fadeIn {
|
1961
|
+
from {
|
1962
|
+
opacity: 0;
|
1963
|
+
}
|
1964
|
+
to {
|
1965
|
+
opacity: 1;
|
1966
|
+
}
|
1967
|
+
}
|
1968
|
+
.fade-in {
|
1969
|
+
animation-name: fadeIn;
|
1970
|
+
animation-duration: 1.5s;
|
1971
|
+
animation-iteration-count: 1;
|
1972
|
+
animation-fill-mode: both;
|
1973
|
+
}
|
1974
|
+
|
1975
|
+
.z-index-1 {
|
1976
|
+
z-index: 1 !important;
|
1977
|
+
}
|
1978
|
+
|
1979
|
+
.z-index-2 {
|
1980
|
+
z-index: 2 !important;
|
1981
|
+
}
|
1982
|
+
|
1983
|
+
.z-index-3 {
|
1984
|
+
z-index: 3 !important;
|
1985
|
+
}
|
1986
|
+
|
1987
|
+
.z-index-4 {
|
1988
|
+
z-index: 4 !important;
|
1989
|
+
}
|
1990
|
+
|
1991
|
+
.z-index-5 {
|
1992
|
+
z-index: 5 !important;
|
1993
|
+
}
|
1994
|
+
|
1995
|
+
.z-index-6 {
|
1996
|
+
z-index: 6 !important;
|
1997
|
+
}
|
1998
|
+
|
1999
|
+
.z-index-7 {
|
2000
|
+
z-index: 7 !important;
|
2001
|
+
}
|
2002
|
+
|
2003
|
+
.z-index-8 {
|
2004
|
+
z-index: 8 !important;
|
2005
|
+
}
|
2006
|
+
|
2007
|
+
.z-index-9 {
|
2008
|
+
z-index: 9 !important;
|
2009
|
+
}
|
2010
|
+
|
2011
|
+
.z-index-10 {
|
2012
|
+
z-index: 10 !important;
|
2013
|
+
}
|
2014
|
+
|
2015
|
+
* {
|
2016
|
+
font-family: sans-serif;
|
2017
|
+
letter-spacing: normal;
|
2018
|
+
}
|
2019
|
+
|
2020
|
+
h1, h2, h3, h4, h5, h6, p, pre, hr, figure, fieldset {
|
2021
|
+
margin: 0px;
|
2022
|
+
padding: 0px;
|
2023
|
+
}
|
2024
|
+
|
2025
|
+
input[type=file] {
|
2026
|
+
display: none !important;
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
.readonly {
|
2030
|
+
color: black !important;
|
2031
|
+
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
2032
|
+
}
|
2033
|
+
|
2034
|
+
.no-selection::selection {
|
2035
|
+
background-color: transparent !important;
|
2036
|
+
}
|
2037
|
+
|
2038
|
+
div#coer-tool-bar coer-button * {
|
2039
|
+
color: var(--orange) !important;
|
2040
|
+
}
|
2041
|
+
div#coer-tool-bar coer-dropdown coer-button * {
|
2042
|
+
color: transparent !important;
|
2043
|
+
}
|
2044
|
+
div#coer-tool-bar coer-dropdown ul {
|
2045
|
+
right: 0px !important;
|
2046
|
+
width: auto !important;
|
2047
|
+
top: 2px !important;
|
2048
|
+
border-top: 0px !important;
|
2049
|
+
background-color: whitesmoke !important;
|
2050
|
+
}
|
2051
|
+
div#coer-tool-bar coer-dropdown ul li:not(.no-options):hover {
|
2052
|
+
color: black !important;
|
2053
|
+
background-color: rgb(240.618852459, 246.3831967213, 254.881147541) !important;
|
2054
|
+
}
|