|
@@ -5,29 +5,61 @@
|
5
|
5
|
*::-webkit-scrollbar-track {
|
6
|
6
|
background: var(--scroll-bg);
|
7
|
7
|
}
|
8
|
|
-*::-webkit-scrollbar-thumb {
|
9
|
|
- background-color: var(--scroll-color);
|
|
8
|
+.webkit-scrollbar-thumb {
|
|
9
|
+ /* background-color: var(--scroll-color);*/
|
10
|
10
|
border-radius: 20px;
|
|
11
|
+ color: #ff0000;
|
11
|
12
|
}
|
12
|
|
-* {
|
|
13
|
+
|
|
14
|
+body {
|
|
15
|
+ margin: 0;
|
|
16
|
+ font-family: 'Almarai', sans-serif;
|
|
17
|
+ font-size: 0.875rem;
|
|
18
|
+ font-weight: 400;
|
|
19
|
+ line-height: 1.5;
|
|
20
|
+ color: var(--text-light);
|
|
21
|
+ text-align: right;
|
|
22
|
+ background-color: #fff;
|
|
23
|
+}
|
|
24
|
+.widget .widget-head {
|
|
25
|
+ display: flex;
|
|
26
|
+ justify-content: space-between;
|
|
27
|
+ align-items: center;
|
|
28
|
+ color: black
|
|
29
|
+}
|
|
30
|
+
|
|
31
|
+*
|
|
32
|
+{
|
|
33
|
+
|
13
|
34
|
scrollbar-width: thin;
|
14
|
35
|
scrollbar-color: var(--scroll-color) var(--scroll-bg);
|
15
|
36
|
}
|
|
37
|
+
|
16
|
38
|
.awesomplete .input-with-feedback {
|
17
|
39
|
border: 1px solid var(--border-color);
|
18
|
40
|
}
|
|
41
|
+
|
19
|
42
|
.form-control {
|
20
|
|
- border: 1px solid var(--border-color);
|
|
43
|
+ border: 1px solid #cdb4db;
|
21
|
44
|
}
|
22
|
45
|
.search-bar .awesomplete input {
|
23
|
46
|
background-color: var(--bg-color)
|
24
|
47
|
}
|
25
|
48
|
.modal-backdrop{
|
26
|
|
- background-color: #2c436b !important;
|
|
49
|
+ background-color: #17a2b89c !important;
|
|
50
|
+}
|
|
51
|
+.widget .widget-head .widget-control {
|
|
52
|
+ display: flex;
|
|
53
|
+ align-items: center;
|
|
54
|
+ flex-direction: row-reverse;
|
|
55
|
+ color: #003fff;
|
27
|
56
|
}
|
|
57
|
+/*
|
28
|
58
|
.widget .widget-head .widget-title {
|
29
|
59
|
font-size: var(--text-base);
|
|
60
|
+ text-bold: 600;
|
30
|
61
|
}
|
|
62
|
+*/
|
31
|
63
|
.comment-box .comment-input-header, .form-dashboard-section .section-head, .form-section .section-head, .head-title {
|
32
|
64
|
font-size: var(--text-base);
|
33
|
65
|
font-weight: 600;
|
|
@@ -35,6 +67,7 @@
|
35
|
67
|
.comment-box .comment-input-container .ql-editor {
|
36
|
68
|
border: 1px solid var(--border-color);
|
37
|
69
|
}
|
|
70
|
+
|
38
|
71
|
.duration-picker .duration-input {
|
39
|
72
|
background-color: var(--bg-color);
|
40
|
73
|
border: 1px solid var(--border-color);
|
|
@@ -42,30 +75,32 @@
|
42
|
75
|
.control-label {
|
43
|
76
|
font-weight: 500;
|
44
|
77
|
}
|
|
78
|
+
|
|
79
|
+/*noinspection CssUnresolvedCustomProperty*/
|
45
|
80
|
[data-theme="dark"] {
|
46
|
81
|
--bg-color: var(--gray-900);
|
47
|
82
|
--disabled-control-bg: var(--gray-900);
|
48
|
|
- --border-color: #1c2126;
|
|
83
|
+ --border-color: #0a76e3;
|
49
|
84
|
--margin-lg : 15px;
|
50
|
85
|
--text-bold: 600;
|
51
|
|
- --scroll-bg: #161a1f;
|
52
|
|
- --scroll-color: #1c2126;
|
|
86
|
+ --scroll-bg: #056ae87a;
|
|
87
|
+ --scroll-color: #f4092a4d;
|
53
|
88
|
}
|
54
|
89
|
|
55
|
90
|
[data-theme="light"] {
|
56
|
|
- --bg-color: #f2f5fa;
|
|
91
|
+ --bg-color: #ebeef0;
|
57
|
92
|
--text-bold: 600;
|
58
|
|
- --control-bg : #fff;
|
59
|
|
- --control-bg-on-gray: #d4dcea;
|
60
|
|
- --disabled-control-bg: #f2f5fa;
|
61
|
|
- --heading-color: #333;
|
62
|
|
- --border-color:#e3e8f1;
|
63
|
|
- --avatar-frame-bg: #dde2ea;
|
|
93
|
+ --control-bg: rgb(35 40 47 / 1%);
|
|
94
|
+ --control-bg-on-gray: #cdb4db;
|
|
95
|
+ --disabled-control-bg: #e4e9f2;
|
|
96
|
+ --heading-color: #a90101;
|
|
97
|
+ --border-color:#6d8bc273;
|
|
98
|
+ --avatar-frame-bg: #353c46b0;
|
64
|
99
|
--margin-lg: 15px;
|
65
|
|
- --sidebar-select-color: #d4dcea;
|
66
|
|
- --awesomplete-hover-bg: #d4dcea;
|
67
|
|
- --scroll-bg: #eef1f5;
|
68
|
|
- --scroll-color: #d9dfe6;
|
|
100
|
+ --sidebar-select-color: #ffafcc52;
|
|
101
|
+ --awesomplete-hover-bg: #ffafcc85;
|
|
102
|
+ --scroll-bg: #a4bfe4f2;
|
|
103
|
+ --scroll-color: #f0f7ff;
|
69
|
104
|
}
|
70
|
105
|
|
71
|
106
|
|
|
@@ -77,18 +112,20 @@
|
77
|
112
|
background: #7C7BAD !important;
|
78
|
113
|
background: #7C7BAD !important;
|
79
|
114
|
}
|
|
115
|
+
|
80
|
116
|
.page-container{
|
81
|
117
|
background: url(/web_responsive/static/src/css/../img/home-menu-bg-overlay.svg), linear-gradient(to bottom, #7C7BAD, #c3c2cc); !important;
|
82
|
118
|
background-color: url(/web_responsive/static/src/css/../img/home-menu-bg-overlay.svg), linear-gradient(to bottom, #7C7BAD, #c3c2cc); !important;
|
83
|
119
|
}
|
|
120
|
+
|
84
|
121
|
h3.ellipsis.title-text,
|
85
|
122
|
.widget-group .widget-group-head .widget-group-title,
|
86
|
123
|
.layout-side-section .sidebar-label{
|
87
|
|
- color: white !important;
|
|
124
|
+ color: black !important;
|
88
|
125
|
}
|
89
|
126
|
|
90
|
127
|
*/
|
91
|
|
-/* Form Input Focus *//*
|
|
128
|
+/* Form Input Focus *//
|
92
|
129
|
|
93
|
130
|
input:focus{
|
94
|
131
|
border: 1px solid #7C7BAD !important;
|
|
@@ -98,14 +135,14 @@ input:focus{
|
98
|
135
|
}
|
99
|
136
|
|
100
|
137
|
*/
|
101
|
|
-/* Div Padding *//*
|
|
138
|
+/* Div Padding */
|
102
|
139
|
|
103
|
140
|
.widget.widget-shadow.shortcut-widget-box{
|
104
|
141
|
padding: 5px 10px;
|
105
|
142
|
}
|
106
|
143
|
|
107
|
144
|
*/
|
108
|
|
-/* List Design *//*
|
|
145
|
+/* List Design */
|
109
|
146
|
|
110
|
147
|
.indicator-pill, .indicator-pill-right{
|
111
|
148
|
padding: 7px 8px;
|
|
@@ -120,7 +157,7 @@ input:focus{
|
120
|
157
|
}
|
121
|
158
|
|
122
|
159
|
*/
|
123
|
|
-/* Dropdown List Hover *//*
|
|
160
|
+/* Dropdown List Hover *///*
|
124
|
161
|
|
125
|
162
|
.awesomplete > ul > li:hover, .awesomplete > ul > li[aria-selected="true"]{
|
126
|
163
|
background-color: #a492bf;
|
|
@@ -135,13 +172,12 @@ input:focus{
|
135
|
172
|
|
136
|
173
|
/* Colours */
|
137
|
174
|
:root {
|
138
|
|
- --background-color: #36414c;
|
139
|
|
- --primary-color: #ffa00a;
|
|
175
|
+ --background-color: #cdb4db;
|
|
176
|
+ --primary-color: #000000;
|
140
|
177
|
--secondary-color: #7574ff;
|
141
|
|
- --white-color: #ffffff;
|
142
|
|
- --black-color: #000000;
|
143
|
|
- --gray-color: #888;
|
144
|
|
-
|
|
178
|
+ --white-color: #000000;
|
|
179
|
+ --black-color: #480202;
|
|
180
|
+ --gray-color: #3f51b5;
|
145
|
181
|
}
|
146
|
182
|
.btn-primary:active,
|
147
|
183
|
.btn-secondary:focus,
|
|
@@ -150,22 +186,26 @@ input:focus{
|
150
|
186
|
box-shadow: none !important;
|
151
|
187
|
}
|
152
|
188
|
.btn-primary{
|
153
|
|
- color: #fff !important;
|
154
|
|
- background-color: var(--primary-color) !important;
|
|
189
|
+ color: #000000 !important;
|
|
190
|
+ /*background-color: #ccccff !important;
|
|
191
|
+ background-color: #ccccff !important;*/
|
|
192
|
+
|
|
193
|
+ background-color: #cdb4db !important;
|
|
194
|
+
|
155
|
195
|
border-radius: 0 !important;
|
156
|
196
|
}
|
157
|
197
|
.btn-primary:hover{
|
158
|
|
- background-color: rgba(255, 120, 10, 0.93) !important;
|
|
198
|
+ background-color: rgb(149 10 255 / 13%) !important;
|
159
|
199
|
}
|
160
|
|
-/* .btn-secondary{
|
161
|
|
- background-color: #606060 !important;
|
|
200
|
+.btn-secondary{
|
|
201
|
+ background-color: #e6c8f7 !important;
|
162
|
202
|
color: var(--white-color) !important;
|
163
|
203
|
border-radius: 0 !important;
|
164
|
|
- transition: background-color ease-in-out .15s;
|
|
204
|
+ transition: background-color cubic-bezier(0.65, 0.05, 0.36, 1) .15s;
|
165
|
205
|
}
|
166
|
206
|
.btn-secondary:hover{
|
167
|
|
- background-color: rgba(255, 120, 10, 0.93) !important;
|
168
|
|
-} */
|
|
207
|
+ background-color: rgb(205 180 219 / 44%) !important;
|
|
208
|
+}
|
169
|
209
|
.page-head,
|
170
|
210
|
.page-head .page-head-content{
|
171
|
211
|
height: 50px;
|
|
@@ -179,7 +219,7 @@ input:focus{
|
179
|
219
|
|
180
|
220
|
/* Top Header */
|
181
|
221
|
.navbar{
|
182
|
|
- background: var(--background-color) !important;
|
|
222
|
+ background: #cdb4db !important;
|
183
|
223
|
height: 50px;
|
184
|
224
|
}
|
185
|
225
|
.navbar-expand{
|
|
@@ -215,7 +255,8 @@ header .form-control:focus{
|
215
|
255
|
.search-bar .awesomplete input{
|
216
|
256
|
height: 32px;
|
217
|
257
|
}
|
218
|
|
-/*#navbar-search{
|
|
258
|
+/*
|
|
259
|
+#navbar-search{
|
219
|
260
|
width: 300px;
|
220
|
261
|
background-color: rgb(65, 78, 90);
|
221
|
262
|
border-radius: 0px;
|
|
@@ -255,14 +296,14 @@ input{
|
255
|
296
|
border-radius: 0 !important;
|
256
|
297
|
}
|
257
|
298
|
.form-control{
|
258
|
|
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
259
|
|
- background-color: #f2f2f2 !important;
|
|
299
|
+ transition: border-color cubic-bezier(0.65, 0.05, 0.36, 1) .15s, box-shadow ease-in-out .15s;
|
|
300
|
+ background-color: #00b2ff00 !important;
|
260
|
301
|
}
|
261
|
302
|
.form-control:focus{
|
262
|
303
|
outline: 0;
|
263
|
304
|
border: 1px solid var(--primary-color);
|
264
|
305
|
box-shadow: none;
|
265
|
|
- background: rgba(255, 160, 10, 0.14) !important;
|
|
306
|
+ background: #17a2b800 !important;
|
266
|
307
|
}
|
267
|
308
|
.navbar .navbar-nav a.nav-link{
|
268
|
309
|
color: var(--white-color);
|
|
@@ -276,25 +317,25 @@ symbol#icon-small-down{
|
276
|
317
|
/* Table */
|
277
|
318
|
.form-grid{
|
278
|
319
|
border-radius: 0;
|
279
|
|
- border: 1px solid #bbbbbb;
|
|
320
|
+ border: 1px solid #450d0d00;
|
280
|
321
|
}
|
281
|
322
|
.form-grid .grid-heading-row{
|
282
|
|
- background-color: #f4f4f4;
|
|
323
|
+ background-color: #8a656554;
|
283
|
324
|
}
|
284
|
325
|
.grid-heading-row{
|
285
|
326
|
border-bottom: 1px solid var(--primary-color);
|
286
|
327
|
}
|
287
|
328
|
.grid-row > .row .col{
|
288
|
|
- border-right: 1px solid #d1d8dd;
|
|
329
|
+ border-right: 1px solid #90b2ca3b;
|
289
|
330
|
}
|
290
|
331
|
.form-grid .grid-row:hover{
|
291
|
332
|
background: rgba(255, 152, 0, 0.15);
|
292
|
333
|
}
|
293
|
334
|
|
294
|
335
|
/* Heading Color */
|
295
|
|
-.head-title, .form-section .section-head, .form-dashboard-section .section-head, .comment-box .comment-input-header{
|
|
336
|
+/*.head-title, .form-section .section-head, .form-dashboard-section .section-head, .comment-box .comment-input-header{
|
296
|
337
|
color: var(--primary-color);
|
297
|
|
-}
|
|
338
|
+}*/
|
298
|
339
|
|
299
|
340
|
/* Lists */
|
300
|
341
|
.list-subject a{
|
|
@@ -311,8 +352,7 @@ symbol#icon-small-down{
|
311
|
352
|
background-color: #f4f4f4;
|
312
|
353
|
}
|
313
|
354
|
|
314
|
|
-
|
315
|
|
-/* Buttons CSS
|
|
355
|
+/*Buttons CSS
|
316
|
356
|
.filter-button,
|
317
|
357
|
.sort-selector-button,
|
318
|
358
|
.btn-order{
|
|
@@ -332,4 +372,3 @@ symbol#icon-small-down{
|
332
|
372
|
.filter-button span.filter-icon svg.icon{
|
333
|
373
|
stroke: var(--white-color);
|
334
|
374
|
} */
|
335
|
|
-
|