django-smartbase-admin 1.0.14__py3-none-any.whl → 1.0.15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- django_smartbase_admin/admin/admin_base.py +14 -14
- django_smartbase_admin/admin/site.py +7 -1
- django_smartbase_admin/admin/widgets.py +13 -1
- django_smartbase_admin/engine/admin_base_view.py +14 -0
- django_smartbase_admin/locale/sk/LC_MESSAGES/django.mo +0 -0
- django_smartbase_admin/locale/sk/LC_MESSAGES/django.po +22 -13
- django_smartbase_admin/migrations/0005_sbadminuserconfiguration.py +26 -0
- django_smartbase_admin/models.py +33 -0
- django_smartbase_admin/services/configuration.py +13 -0
- django_smartbase_admin/static/sb_admin/build/tailwind_config_partials/colors.js +4 -0
- django_smartbase_admin/static/sb_admin/css/ckeditor/ckeditor_content_dark.css +208 -0
- django_smartbase_admin/static/sb_admin/dist/calendar.js +1 -1
- django_smartbase_admin/static/sb_admin/dist/calendar_style.css +1 -1
- django_smartbase_admin/static/sb_admin/dist/chart.js +1 -1
- django_smartbase_admin/static/sb_admin/dist/main.js +1 -1
- django_smartbase_admin/static/sb_admin/dist/main_style.css +1 -1
- django_smartbase_admin/static/sb_admin/dist/table.js +1 -1
- django_smartbase_admin/static/sb_admin/sprites/sb_admin/Moon.svg +3 -0
- django_smartbase_admin/static/sb_admin/sprites/sb_admin/Sun-one.svg +3 -0
- django_smartbase_admin/static/sb_admin/src/css/_base.css +1 -1
- django_smartbase_admin/static/sb_admin/src/css/_colors.css +257 -82
- django_smartbase_admin/static/sb_admin/src/css/_components.css +1 -1
- django_smartbase_admin/static/sb_admin/src/css/_tabulator.css +2 -2
- django_smartbase_admin/static/sb_admin/src/css/calendar.css +3 -3
- django_smartbase_admin/static/sb_admin/src/css/components/_button.css +1 -1
- django_smartbase_admin/static/sb_admin/src/css/components/_dropdown.css +25 -7
- django_smartbase_admin/static/sb_admin/src/css/components/_input.css +33 -2
- django_smartbase_admin/static/sb_admin/src/css/components/_modal.css +1 -1
- django_smartbase_admin/static/sb_admin/src/css/components/_query-builder.css +1 -7
- django_smartbase_admin/static/sb_admin/src/css/style.css +1 -1
- django_smartbase_admin/static/sb_admin/src/js/main.js +58 -15
- django_smartbase_admin/static/sb_admin/src/js/multiselect.js +10 -19
- django_smartbase_admin/static/sb_admin/src/js/utils.js +47 -23
- django_smartbase_admin/templates/sb_admin/filter_widgets/advanced_filters/multiple_choice_field.html +1 -1
- django_smartbase_admin/templates/sb_admin/filter_widgets/radio_choice_field.html +1 -1
- django_smartbase_admin/templates/sb_admin/navigation.html +9 -7
- django_smartbase_admin/templates/sb_admin/sb_admin_base_no_sidebar.html +1 -1
- django_smartbase_admin/templates/sb_admin/sprites/sb_admin.svg +1 -1
- django_smartbase_admin/templates/sb_admin/tailwind_whitelist.html +2 -1
- django_smartbase_admin/templates/sb_admin/widgets/{checkbox_select.html → checkbox_dropdown.html} +2 -2
- django_smartbase_admin/templates/sb_admin/widgets/radio.html +3 -2
- django_smartbase_admin/templates/sb_admin/widgets/radio_dropdown.html +30 -0
- django_smartbase_admin/views/user_config_view.py +35 -0
- {django_smartbase_admin-1.0.14.dist-info → django_smartbase_admin-1.0.15.dist-info}/METADATA +1 -1
- {django_smartbase_admin-1.0.14.dist-info → django_smartbase_admin-1.0.15.dist-info}/RECORD +47 -41
- {django_smartbase_admin-1.0.14.dist-info → django_smartbase_admin-1.0.15.dist-info}/LICENSE.md +0 -0
- {django_smartbase_admin-1.0.14.dist-info → django_smartbase_admin-1.0.15.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.4543 3.13222C6.22025 3.86506 3 7.55646 3 12C3 16.9706 7.02943 21 12 21C16.4435 21 20.1349 17.7798 20.8678 13.5457C19.5336 14.8927 17.6829 15.7273 15.6363 15.7273C11.5695 15.7273 8.27275 12.4305 8.27275 8.36365C8.27275 6.31709 9.10731 4.46636 10.4543 3.13222ZM1 12C1 5.92487 5.92487 1 12 1C12.7624 1 13.5076 1.0777 14.2279 1.22596C14.6832 1.31966 15.0139 1.71473 15.026 2.1794C15.0381 2.64407 14.7284 3.05581 14.2786 3.17308C11.9732 3.77414 10.2727 5.87156 10.2727 8.36365C10.2727 11.3259 12.6741 13.7273 15.6363 13.7273C18.1285 13.7273 20.2259 12.0268 20.8269 9.72138C20.9442 9.27159 21.3559 8.9619 21.8206 8.97399C22.2852 8.98607 22.6803 9.31674 22.774 9.77202C22.9223 10.4923 23 11.2376 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 3C12.6903 3 13.25 2.44036 13.25 1.75C13.25 1.05964 12.6903 0.5 12 0.5C11.3097 0.5 10.75 1.05964 10.75 1.75C10.75 2.44036 11.3097 3 12 3ZM4.5 12C4.5 7.85787 7.85787 4.5 12 4.5C16.1421 4.5 19.5 7.85787 19.5 12C19.5 16.1421 16.1421 19.5 12 19.5C7.85787 19.5 4.5 16.1421 4.5 12ZM12 6.5C8.96243 6.5 6.5 8.96243 6.5 12C6.5 15.0376 8.96243 17.5 12 17.5C15.0376 17.5 17.5 15.0376 17.5 12C17.5 8.96243 15.0376 6.5 12 6.5ZM20.5 4.75C20.5 5.44035 19.9403 6 19.25 6C18.5597 6 18 5.44035 18 4.75C18 4.05964 18.5597 3.5 19.25 3.5C19.9403 3.5 20.5 4.05964 20.5 4.75ZM22.25 13.25C22.9403 13.25 23.5 12.6903 23.5 12C23.5 11.3097 22.9403 10.75 22.25 10.75C21.5597 10.75 21 11.3097 21 12C21 12.6903 21.5597 13.25 22.25 13.25ZM20.5 19.25C20.5 19.9403 19.9403 20.5 19.25 20.5C18.5597 20.5 18 19.9403 18 19.25C18 18.5597 18.5597 18 19.25 18C19.9403 18 20.5 18.5597 20.5 19.25ZM12 23.5C12.6903 23.5 13.25 22.9403 13.25 22.25C13.25 21.5597 12.6903 21 12 21C11.3097 21 10.75 21.5597 10.75 22.25C10.75 22.9403 11.3097 23.5 12 23.5ZM6 19.25C6 19.9403 5.44035 20.5 4.75 20.5C4.05964 20.5 3.5 19.9403 3.5 19.25C3.5 18.5597 4.05964 18 4.75 18C5.44035 18 6 18.5597 6 19.25ZM1.75 13.25C2.44036 13.25 3 12.6903 3 12C3 11.3097 2.44036 10.75 1.75 10.75C1.05964 10.75 0.5 11.3097 0.5 12C0.5 12.6903 1.05964 13.25 1.75 13.25ZM6 4.75C6 5.44035 5.44035 6 4.75 6C4.05964 6 3.5 5.44035 3.5 4.75C3.5 4.05964 4.05964 3.5 4.75 3.5C5.44035 3.5 6 4.05964 6 4.75Z"/>
|
|
3
|
+
</svg>
|
|
@@ -1,84 +1,259 @@
|
|
|
1
|
-
|
|
2
|
-
:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
1
|
+
:root {
|
|
2
|
+
--color-light: #ffffff;
|
|
3
|
+
--color-transparent: rgb(0 0 0 / 0%);
|
|
4
|
+
--color-light-a: 0 0 0;
|
|
5
|
+
|
|
6
|
+
--color-dark-900: #111827;
|
|
7
|
+
--color-dark-800: #1F2937;
|
|
8
|
+
--color-dark-700: #374151;
|
|
9
|
+
--color-dark-600: #4B5563;
|
|
10
|
+
--color-dark: #6B7280;
|
|
11
|
+
--color-dark-400: #9CA3AF;
|
|
12
|
+
--color-dark-300: #D1D5DB;
|
|
13
|
+
--color-dark-200: #E5E7EB;
|
|
14
|
+
--color-dark-100: #F3F4F6;
|
|
15
|
+
--color-dark-50: #F9FAFB;
|
|
16
|
+
--color-dark-a: 17 24 39; /* rgb value from which the alpha values are generated */
|
|
17
|
+
|
|
18
|
+
--color-primary-900: #002729;
|
|
19
|
+
--color-primary-800: #003A3D;
|
|
20
|
+
--color-primary-700: #006166;
|
|
21
|
+
--color-primary-600: #008188;
|
|
22
|
+
--color-primary: #00959D;
|
|
23
|
+
--color-primary-400: #00C2CC;
|
|
24
|
+
--color-primary-300: #59D3DA;
|
|
25
|
+
--color-primary-200: #99E7EB;
|
|
26
|
+
--color-primary-100: #D3F6F8;
|
|
27
|
+
--color-primary-50: #EDFAFB;
|
|
28
|
+
|
|
29
|
+
--color-secondary-900: #3D2500;
|
|
30
|
+
--color-secondary-800: #7A4901;
|
|
31
|
+
--color-secondary-700: #A26201;
|
|
32
|
+
--color-secondary-600: #CB7A01;
|
|
33
|
+
--color-secondary: #F18F01;
|
|
34
|
+
--color-secondary-400: #FEA520;
|
|
35
|
+
--color-secondary-300: #FEB548;
|
|
36
|
+
--color-secondary-200: #FEC671;
|
|
37
|
+
--color-secondary-100: #FFDEAE;
|
|
38
|
+
--color-secondary-50: #FFF7EB;
|
|
39
|
+
|
|
40
|
+
--color-success-900: #064E3B;
|
|
41
|
+
--color-success-800: #065F46;
|
|
42
|
+
--color-success-700: #047857;
|
|
43
|
+
--color-success-600: #059669;
|
|
44
|
+
--color-success: #10B981;
|
|
45
|
+
--color-success-400: #34D399;
|
|
46
|
+
--color-success-300: #6EE7B7;
|
|
47
|
+
--color-success-200: #A7F3D0;
|
|
48
|
+
--color-success-100: #D1FAE5;
|
|
49
|
+
--color-success-50: #ECFDF5;
|
|
50
|
+
|
|
51
|
+
--color-warning-900: #78350F;
|
|
52
|
+
--color-warning-800: #78350F;
|
|
53
|
+
--color-warning-700: #B45309;
|
|
54
|
+
--color-warning-600: #D97706;
|
|
55
|
+
--color-warning: #F59E0B;
|
|
56
|
+
--color-warning-400: #FBBF24;
|
|
57
|
+
--color-warning-300: #FCD34D;
|
|
58
|
+
--color-warning-200: #FDE68A;
|
|
59
|
+
--color-warning-100: #FEF3C7;
|
|
60
|
+
--color-warning-50: #FFFBEB;
|
|
61
|
+
|
|
62
|
+
--color-negative-900: #330000;
|
|
63
|
+
--color-negative-800: #660000;
|
|
64
|
+
--color-negative-700: #990000;
|
|
65
|
+
--color-negative-600: #CC0000;
|
|
66
|
+
--color-negative: #FF0917;
|
|
67
|
+
--color-negative-400: #FF3A45;
|
|
68
|
+
--color-negative-300: #FF6B74;
|
|
69
|
+
--color-negative-200: #FF9DA2;
|
|
70
|
+
--color-negative-100: #FFCED1;
|
|
71
|
+
--color-negative-50: #FFE6E8;
|
|
72
|
+
|
|
73
|
+
--color-notice-900: #0C4A6E;
|
|
74
|
+
--color-notice-800: #075985;
|
|
75
|
+
--color-notice-700: #0369A1;
|
|
76
|
+
--color-notice-600: #0284C7;
|
|
77
|
+
--color-notice: #0EA5E9;
|
|
78
|
+
--color-notice-400: #38BDF8;
|
|
79
|
+
--color-notice-300: #7DD3FC;
|
|
80
|
+
--color-notice-200: #BAE6FD;
|
|
81
|
+
--color-notice-100: #F0F9FF;
|
|
82
|
+
--color-notice-50: #F0F9FF;
|
|
83
|
+
|
|
84
|
+
--color-bg: var(--color-dark-100);
|
|
85
|
+
--color-bg-elevated: var(--color-light);
|
|
86
|
+
--color-bg-input: var(--color-light);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.dark-style {
|
|
90
|
+
--color-light: #111827;
|
|
91
|
+
--color-transparent: rgb(0 0 0 / 0%);
|
|
92
|
+
--color-light-a: 17 24 39;
|
|
93
|
+
|
|
94
|
+
--color-dark-900: #FFFFFF;
|
|
95
|
+
--color-dark-800: #F3F4F6;
|
|
96
|
+
--color-dark-700: #E5E7EB;
|
|
97
|
+
--color-dark-600: #D1D5DB;
|
|
98
|
+
--color-dark: #9CA3AF;
|
|
99
|
+
--color-dark-400: #6B7280;
|
|
100
|
+
--color-dark-300: #4B5563;
|
|
101
|
+
--color-dark-200: #374151;
|
|
102
|
+
--color-dark-100: #1F2937;
|
|
103
|
+
--color-dark-50: #1F2937;
|
|
104
|
+
--color-dark-a: 255 255 255; /* rgb value from which the alpha values are generated */
|
|
105
|
+
|
|
106
|
+
/*--color-primary-900: #002729;*/
|
|
107
|
+
/*--color-primary-800: #003A3D;*/
|
|
108
|
+
--color-primary-700: #00959D; /*#59D3DA*/
|
|
109
|
+
--color-primary-600: #00C2CC;
|
|
110
|
+
--color-primary: #00C2CC;
|
|
111
|
+
--color-primary-400: #008188;
|
|
112
|
+
/*--color-primary-300: #59D3DA;*/
|
|
113
|
+
--color-primary-200: #006166;
|
|
114
|
+
--color-primary-100: #003A3D;
|
|
115
|
+
--color-primary-50: #002729;
|
|
116
|
+
|
|
117
|
+
/*--color-secondary-900: #3D2500;*/
|
|
118
|
+
/*--color-secondary-800: #7A4901;*/
|
|
119
|
+
--color-secondary-700: #CB7A01;
|
|
120
|
+
--color-secondary-600: #F18F01;
|
|
121
|
+
--color-secondary: #FEA520;
|
|
122
|
+
--color-secondary-400: #FEA520;
|
|
123
|
+
/*--color-secondary-300: #FEB548;*/
|
|
124
|
+
--color-secondary-200: #A26201;
|
|
125
|
+
--color-secondary-100: #7A4901;
|
|
126
|
+
--color-secondary-50: #3D2500;
|
|
127
|
+
|
|
128
|
+
--color-success-900: #D1FAE5;
|
|
129
|
+
--color-success-800: #A7F3D0;
|
|
130
|
+
--color-success-700: #6EE7B7;
|
|
131
|
+
--color-success-600: #10B981;
|
|
132
|
+
--color-success: #34D399;
|
|
133
|
+
/*--color-success-400: #34D399;*/
|
|
134
|
+
/*--color-success-300: #6EE7B7;*/
|
|
135
|
+
--color-success-200: #047857;
|
|
136
|
+
--color-success-100: #064E3B;
|
|
137
|
+
--color-success-50: #064E3B;
|
|
138
|
+
|
|
139
|
+
--color-warning-900: #FEF3C7;
|
|
140
|
+
--color-warning-800: #FDE68A;
|
|
141
|
+
--color-warning-700: #FCD34D;
|
|
142
|
+
--color-warning-600: #F59E0B;
|
|
143
|
+
--color-warning: #FBBF24;
|
|
144
|
+
/*--color-warning-400: #FBBF24;*/
|
|
145
|
+
/*--color-warning-300: #FCD34D;*/
|
|
146
|
+
--color-warning-200: #B45309;
|
|
147
|
+
--color-warning-100: #78350F;
|
|
148
|
+
--color-warning-50: #78350F;
|
|
149
|
+
|
|
150
|
+
--color-negative-900: #FFCED1;
|
|
151
|
+
--color-negative-800: #FF9DA2;
|
|
152
|
+
--color-negative-700: #FF6B74;
|
|
153
|
+
--color-negative-600: #FF0917;
|
|
154
|
+
--color-negative: #FF3A45;
|
|
155
|
+
--color-negative-400: #990000;
|
|
156
|
+
--color-negative-300: #660000;
|
|
157
|
+
--color-negative-200: #330000;
|
|
158
|
+
--color-negative-100: #330000;
|
|
159
|
+
--color-negative-50: #330000;
|
|
160
|
+
|
|
161
|
+
--color-notice-900: #E0F2FE;
|
|
162
|
+
--color-notice-800: #BAE6FD;
|
|
163
|
+
--color-notice-700: #7DD3FC;
|
|
164
|
+
--color-notice-600: #0EA5E9;
|
|
165
|
+
--color-notice: #38BDF8;
|
|
166
|
+
/*--color-notice-400: #38BDF8;*/
|
|
167
|
+
/*--color-notice-300: #7DD3FC;*/
|
|
168
|
+
--color-notice-200: #0369A1;
|
|
169
|
+
--color-notice-100: #0C4A6E;
|
|
170
|
+
--color-notice-50: #0C4A6E;
|
|
171
|
+
|
|
172
|
+
--color-bg: #111827;
|
|
173
|
+
--color-bg-elevated: #1F2937;
|
|
174
|
+
--color-bg-input: #2B3645;
|
|
175
|
+
|
|
176
|
+
/* filler colors */
|
|
177
|
+
--dca-white: #111827;
|
|
178
|
+
--dca-black: #ffffff;
|
|
179
|
+
--dca-gray: #9CA3AF;
|
|
180
|
+
--dca-gray-lightest: #1F2937;
|
|
181
|
+
--dca-gray-lighter: #374151;
|
|
182
|
+
--dca-gray-light: #6B7280;
|
|
183
|
+
--dca-gray-darker: #E5E7EB;
|
|
184
|
+
--dca-gray-darkest: #F3F4F6;
|
|
185
|
+
--dca-gray-super-lightest: #1F2937;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
@media (prefers-color-scheme: dark) {
|
|
189
|
+
html:not([data-theme="light"]) {
|
|
190
|
+
@extend .dark-style;
|
|
191
|
+
.tabulator .tabulator-header {
|
|
192
|
+
@apply bg-light-a/50;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
input.checkbox,
|
|
196
|
+
div.checkbox > input[type="checkbox"] {
|
|
197
|
+
& ~ label {
|
|
198
|
+
&::after {
|
|
199
|
+
filter: invert(1);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
.fancytree-checkbox:after {
|
|
204
|
+
filter: invert(1);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.btn-secondary {
|
|
208
|
+
@apply text-light;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.cke_button_icon {
|
|
212
|
+
filter: invert(1) !important;
|
|
213
|
+
}
|
|
214
|
+
.cke_top,
|
|
215
|
+
.cke_bottom {
|
|
216
|
+
@apply bg-bg;
|
|
217
|
+
}
|
|
218
|
+
.cke_combo_text,
|
|
219
|
+
.cke_button_label {
|
|
220
|
+
@apply text-dark;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
html[data-theme="dark"] {
|
|
226
|
+
@extend .dark-style;
|
|
227
|
+
|
|
228
|
+
.tabulator .tabulator-header {
|
|
229
|
+
@apply bg-light-a/50;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
input.checkbox,
|
|
233
|
+
div.checkbox > input[type="checkbox"] {
|
|
234
|
+
& ~ label {
|
|
235
|
+
&::after {
|
|
236
|
+
filter: invert(1);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
.fancytree-checkbox:after {
|
|
241
|
+
filter: invert(1);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.btn-secondary {
|
|
245
|
+
@apply text-light;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.cke_button_icon {
|
|
249
|
+
filter: invert(1) !important;
|
|
250
|
+
}
|
|
251
|
+
.cke_top,
|
|
252
|
+
.cke_bottom {
|
|
253
|
+
@apply bg-bg;
|
|
254
|
+
}
|
|
255
|
+
.cke_combo_text,
|
|
256
|
+
.cke_button_label {
|
|
257
|
+
@apply text-dark;
|
|
83
258
|
}
|
|
84
259
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
@layer components {
|
|
10
10
|
.card {
|
|
11
|
-
@apply bg-
|
|
11
|
+
@apply bg-bg-elevated sm:rounded border border-dark-200 p-20 md:p-24 max-xs:border-b-0 max-xs:py-32 min-w-0;
|
|
12
12
|
>header {
|
|
13
13
|
@apply flex items-center text-18 mb-24 font-semibold;
|
|
14
14
|
}
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
vertical-align: bottom;
|
|
52
52
|
overflow: hidden;
|
|
53
53
|
@apply transition-colors;
|
|
54
|
-
@apply
|
|
54
|
+
@apply text-dark-600;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
|
@@ -391,7 +391,7 @@
|
|
|
391
391
|
.tabulator-row {
|
|
392
392
|
position: relative;
|
|
393
393
|
box-sizing: border-box;
|
|
394
|
-
@apply bg-
|
|
394
|
+
@apply bg-bg-elevated min-h-40 border-b border-dark-200 cursor-pointer;
|
|
395
395
|
@apply transition-colors;
|
|
396
396
|
}
|
|
397
397
|
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
--fc-small-font-size: .75rem;
|
|
3
3
|
--fc-border-color: var(--color-dark-200);
|
|
4
4
|
--fc-today-bg-color: var(--color-primary-50);
|
|
5
|
-
--fc-neutral-bg-color: var(--color-
|
|
5
|
+
--fc-neutral-bg-color: var(--color-bg-elevated);
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.fc-theme-standard {
|
|
9
9
|
th.fc-col-header-cell {
|
|
10
10
|
@apply px-24 py-8;
|
|
11
|
-
@apply bg-
|
|
11
|
+
@apply bg-bg;
|
|
12
12
|
}
|
|
13
13
|
td.fc-daygrid-day {
|
|
14
14
|
@apply p-8;
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
.fc-day-other {
|
|
32
|
-
@apply bg-
|
|
32
|
+
@apply bg-bg;
|
|
33
33
|
.fc-daygrid-day-top {
|
|
34
34
|
opacity: 1;
|
|
35
35
|
.fc-daygrid-day-number {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
@apply h-40;
|
|
5
5
|
@apply px-16;
|
|
6
6
|
@apply rounded border border-dark-200;
|
|
7
|
-
@apply text-dark-900 bg-
|
|
7
|
+
@apply text-dark-900 bg-bg-input shadow-xs;
|
|
8
8
|
@apply text-14 leading-18 font-medium;
|
|
9
9
|
transition-property: color, background-color, border, outline, box-shadow;
|
|
10
10
|
transition-duration: .1s;
|
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
white-space: normal;
|
|
12
12
|
> ul {
|
|
13
13
|
@apply overflow-y-auto overflow-x-hidden custom-scrollbar;
|
|
14
|
+
>li:not(:last-child) {
|
|
15
|
+
.btn[data-bs-toggle="dropdown"] {
|
|
16
|
+
@apply rounded-b-none;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
14
19
|
}
|
|
15
20
|
|
|
16
21
|
&:not(.show) {
|
|
@@ -30,6 +35,24 @@
|
|
|
30
35
|
&.show {
|
|
31
36
|
@apply flex;
|
|
32
37
|
}
|
|
38
|
+
|
|
39
|
+
hr {
|
|
40
|
+
@apply my-4;
|
|
41
|
+
@apply border border-dark-200;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.btn[data-bs-toggle="dropdown"] {
|
|
45
|
+
@apply border-0 rounded-t-none;
|
|
46
|
+
@apply bg-transparent hover:bg-dark-100;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
label.radio-dropdown-label {
|
|
50
|
+
@apply px-8 mb-4;
|
|
51
|
+
@apply text-12 font-normal;
|
|
52
|
+
span {
|
|
53
|
+
@apply hidden;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
33
56
|
}
|
|
34
57
|
|
|
35
58
|
.dropdown-menu-link {
|
|
@@ -50,21 +73,16 @@
|
|
|
50
73
|
}
|
|
51
74
|
}
|
|
52
75
|
|
|
53
|
-
.dropdown-menu hr {
|
|
54
|
-
@apply my-4;
|
|
55
|
-
@apply border border-dark-200;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
76
|
.btn[data-bs-toggle="dropdown"] {
|
|
59
77
|
&:focus {
|
|
60
78
|
@apply shadow-none;
|
|
61
79
|
}
|
|
62
|
-
svg:last-child {
|
|
80
|
+
svg:last-child:not(.no-rotate) {
|
|
63
81
|
transition: transform .2s;
|
|
64
82
|
}
|
|
65
83
|
&.show {
|
|
66
84
|
@apply bg-primary-50 text-primary border-primary;
|
|
67
|
-
svg:last-child {
|
|
85
|
+
svg:last-child:not(.no-rotate) {
|
|
68
86
|
@apply rotate-180;
|
|
69
87
|
}
|
|
70
88
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
@apply text-14;
|
|
6
6
|
@apply h-40;
|
|
7
7
|
@apply p-10;
|
|
8
|
-
@apply text-dark-900 bg-
|
|
8
|
+
@apply text-dark-900 bg-bg-input border border-dark-300 rounded shadow-xs outline outline-transparent;
|
|
9
9
|
transition: color .1s ease-in, background-color .1s ease-in, border-color .1s ease-in, box-shadow .1s ease-in, outline-color .1s ease-in;
|
|
10
10
|
|
|
11
11
|
& ~ .error {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
|
|
75
75
|
.input-file {
|
|
76
76
|
@apply relative flex items-center;
|
|
77
|
-
@apply border border-dark-300 border-dashed rounded;
|
|
77
|
+
@apply border border-dark-300 border-dashed rounded bg-light;
|
|
78
78
|
@apply p-16;
|
|
79
79
|
@apply transition-colors;
|
|
80
80
|
input[type="file"] {
|
|
@@ -264,6 +264,34 @@
|
|
|
264
264
|
|
|
265
265
|
input.radio,
|
|
266
266
|
div.radio > input[type="radio"] {
|
|
267
|
+
& ~ label {
|
|
268
|
+
&::before {
|
|
269
|
+
@apply rounded-full;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&::after {
|
|
273
|
+
@apply transition-opacity;
|
|
274
|
+
@apply w-8 h-8;
|
|
275
|
+
top: 6px;
|
|
276
|
+
left: 6px;
|
|
277
|
+
opacity: 0;
|
|
278
|
+
@apply bg-light rounded-full;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&:checked {
|
|
283
|
+
&:not(:disabled) {
|
|
284
|
+
&:hover + label {
|
|
285
|
+
&::after {
|
|
286
|
+
opacity: 1;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
input.radio.radio-list,
|
|
294
|
+
div.radio.radio-list > input[type="radio"] {
|
|
267
295
|
& + label {
|
|
268
296
|
@apply px-16 py-12 flex items-center justify-between text-dark-900;
|
|
269
297
|
|
|
@@ -273,6 +301,9 @@
|
|
|
273
301
|
|
|
274
302
|
&::after {
|
|
275
303
|
@apply relative w-16 h-16 flex-shrink-0 ml-16 hidden;
|
|
304
|
+
top:0;
|
|
305
|
+
left:0;
|
|
306
|
+
border-radius: 0;
|
|
276
307
|
background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23009FA7" fill-rule="evenodd" clip-rule="evenodd" d="M8.43734 17.0892L20.7944 4.7912L22.2053 6.2088L9.14275 19.2088C8.75262 19.5971 8.12207 19.5971 7.73193 19.2088L1.79443 13.2997L3.20525 11.8821L8.43734 17.0892Z"/></svg>');
|
|
277
308
|
}
|
|
278
309
|
}
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
width: 100%; /* Ensure `.modal-content` extends the full width of the parent `.modal-dialog`*/
|
|
75
75
|
/* counteract the pointer-events: none; in the .modal-dialog */
|
|
76
76
|
pointer-events: auto;
|
|
77
|
-
background-color:
|
|
77
|
+
background-color: var(--color-light);
|
|
78
78
|
background-clip: padding-box;
|
|
79
79
|
outline: 0;
|
|
80
80
|
max-height: 100%;
|
|
@@ -9,13 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.radio.radio-default {
|
|
12
|
-
@apply bg-light border border-dark-200 transition-colors;
|
|
13
|
-
&:first-child {
|
|
14
|
-
@apply rounded-t;
|
|
15
|
-
}
|
|
16
|
-
&:last-child {
|
|
17
|
-
@apply rounded-b;
|
|
18
|
-
}
|
|
12
|
+
@apply bg-light border border-dark-200 transition-colors p-8;
|
|
19
13
|
&:hover {
|
|
20
14
|
@apply border-dark-400;
|
|
21
15
|
}
|