mljr-css 1.0.14 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mljr.css +5573 -2766
- package/dist/mljr.min.css +2 -3
- package/package.json +1 -1
- package/src/components/alert-dialog.css +129 -0
- package/src/components/alert.css +41 -22
- package/src/components/animated-headline.css +118 -0
- package/src/components/audio-visualizer.css +96 -0
- package/src/components/autocomplete.css +143 -0
- package/src/components/avatar.css +66 -0
- package/src/components/badge.css +82 -41
- package/src/components/breadcrumb.css +3 -0
- package/src/components/button.css +80 -58
- package/src/components/calendar.css +169 -0
- package/src/components/card.css +139 -92
- package/src/components/chart.css +194 -0
- package/src/components/checkbox.css +1 -1
- package/src/components/chip.css +33 -18
- package/src/components/context-menu.css +118 -0
- package/src/components/cookie-banner.css +285 -0
- package/src/components/diff-viewer.css +199 -0
- package/src/components/dock.css +211 -0
- package/src/components/drop-zone.css +257 -0
- package/src/components/footer.css +51 -5
- package/src/components/gauge.css +63 -0
- package/src/components/image-compare.css +141 -0
- package/src/components/infinite-scroll.css +36 -0
- package/src/components/inview.css +118 -0
- package/src/components/lazy-image.css +60 -0
- package/src/components/legal-page.css +346 -0
- package/src/components/map-embed.css +92 -0
- package/src/components/marquee.css +112 -0
- package/src/components/navbar.css +357 -0
- package/src/components/navigation-rail.css +220 -0
- package/src/components/notification-center.css +306 -0
- package/src/components/number-input.css +134 -0
- package/src/components/number-ticker.css +65 -0
- package/src/components/pagination.css +59 -0
- package/src/components/pdf-viewer.css +163 -0
- package/src/components/pin-input.css +153 -0
- package/src/components/resizable.css +82 -0
- package/src/components/rich-text-editor.css +216 -0
- package/src/components/table-of-content.css +107 -0
- package/src/components/table.css +116 -0
- package/src/components/tabs.css +93 -3
- package/src/components/toast.css +30 -0
- package/src/components/tooltip.css +8 -0
- package/src/components/tree-view.css +270 -0
- package/src/components/turnstile.css +113 -0
- package/src/components/video-player.css +266 -0
- package/src/index.css +35 -1
- package/src/layout/footer.css +2 -2
- package/src/layout/navbar.css +187 -113
- package/src/layout/sidebar.css +27 -0
- package/src/themes/variables.css +146 -97
|
@@ -220,3 +220,69 @@
|
|
|
220
220
|
[data-theme="dark"] .mljr-avatar-status {
|
|
221
221
|
border-color: var(--mljr-bg);
|
|
222
222
|
}
|
|
223
|
+
|
|
224
|
+
/* ============================================
|
|
225
|
+
Avatar Group - Stacked avatars with overlap
|
|
226
|
+
============================================ */
|
|
227
|
+
|
|
228
|
+
.mljr-avatar-group {
|
|
229
|
+
display: inline-flex;
|
|
230
|
+
flex-direction: row-reverse;
|
|
231
|
+
align-items: center;
|
|
232
|
+
padding-left: 0.5rem;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.mljr-avatar-group .mljr-avatar {
|
|
236
|
+
margin-left: -0.75rem;
|
|
237
|
+
transition: all var(--mljr-transition-fast);
|
|
238
|
+
cursor: pointer;
|
|
239
|
+
border: 3px solid var(--mljr-bg);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.mljr-avatar-group .mljr-avatar:hover {
|
|
243
|
+
transform: translateY(-4px) scale(1.05);
|
|
244
|
+
z-index: 10;
|
|
245
|
+
box-shadow: var(--mljr-clay-shadow);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/* Size-specific overlaps */
|
|
249
|
+
.mljr-avatar-group-xs .mljr-avatar {
|
|
250
|
+
margin-left: -0.5rem;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.mljr-avatar-group-sm .mljr-avatar {
|
|
254
|
+
margin-left: -0.625rem;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.mljr-avatar-group-md .mljr-avatar {
|
|
258
|
+
margin-left: -0.75rem;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.mljr-avatar-group-lg .mljr-avatar {
|
|
262
|
+
margin-left: -1rem;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.mljr-avatar-group-xl .mljr-avatar {
|
|
266
|
+
margin-left: -1.25rem;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.mljr-avatar-group-2xl .mljr-avatar {
|
|
270
|
+
margin-left: -1.5rem;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
/* Count indicator ("+N" avatar) */
|
|
274
|
+
.mljr-avatar-count {
|
|
275
|
+
cursor: default;
|
|
276
|
+
background: linear-gradient(145deg, var(--mljr-bg-secondary) 0%, var(--mljr-bg-tertiary) 100%);
|
|
277
|
+
font-size: 0.75em;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.mljr-avatar-count .mljr-avatar-initials {
|
|
281
|
+
font-weight: 600;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
/* Dark mode */
|
|
285
|
+
.dark .mljr-avatar-group .mljr-avatar,
|
|
286
|
+
[data-theme="dark"] .mljr-avatar-group .mljr-avatar {
|
|
287
|
+
border-color: var(--mljr-bg);
|
|
288
|
+
}
|
package/src/components/badge.css
CHANGED
|
@@ -28,8 +28,9 @@
|
|
|
28
28
|
background-color: var(--mljr-primary-100);
|
|
29
29
|
color: var(--mljr-primary-700);
|
|
30
30
|
box-shadow:
|
|
31
|
-
3px 3px 6px rgba(249, 115, 22, 0.
|
|
32
|
-
-
|
|
31
|
+
3px 3px 6px rgba(249, 115, 22, 0.18),
|
|
32
|
+
inset -3px -3px 6px rgba(100, 60, 30, 0.08),
|
|
33
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.45);
|
|
33
34
|
}
|
|
34
35
|
|
|
35
36
|
.dark .mljr-badge-primary,
|
|
@@ -37,28 +38,31 @@
|
|
|
37
38
|
background-color: rgba(249, 115, 22, 0.2);
|
|
38
39
|
color: var(--mljr-primary-300);
|
|
39
40
|
box-shadow:
|
|
40
|
-
3px 3px 6px rgba(0, 0, 0, 0.
|
|
41
|
-
-
|
|
41
|
+
3px 3px 6px rgba(0, 0, 0, 0.3),
|
|
42
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
43
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
42
44
|
0 0 8px rgba(249, 115, 22, 0.12);
|
|
43
45
|
}
|
|
44
46
|
|
|
45
|
-
/* Secondary Badge (
|
|
47
|
+
/* Secondary Badge (Purple) */
|
|
46
48
|
.mljr-badge-secondary {
|
|
47
49
|
background-color: var(--mljr-secondary-100);
|
|
48
50
|
color: var(--mljr-secondary-700);
|
|
49
51
|
box-shadow:
|
|
50
|
-
3px 3px 6px rgba(
|
|
51
|
-
-
|
|
52
|
+
3px 3px 6px rgba(168, 85, 247, 0.15),
|
|
53
|
+
inset -3px -3px 6px rgba(80, 30, 140, 0.08),
|
|
54
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.45);
|
|
52
55
|
}
|
|
53
56
|
|
|
54
57
|
.dark .mljr-badge-secondary,
|
|
55
58
|
[data-theme="dark"] .mljr-badge-secondary {
|
|
56
|
-
background-color: rgba(
|
|
59
|
+
background-color: rgba(168, 85, 247, 0.2);
|
|
57
60
|
color: var(--mljr-secondary-300);
|
|
58
61
|
box-shadow:
|
|
59
|
-
3px 3px 6px rgba(0, 0, 0, 0.
|
|
60
|
-
-
|
|
61
|
-
|
|
62
|
+
3px 3px 6px rgba(0, 0, 0, 0.3),
|
|
63
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
64
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
65
|
+
0 0 8px rgba(168, 85, 247, 0.12);
|
|
62
66
|
}
|
|
63
67
|
|
|
64
68
|
/* Success Badge */
|
|
@@ -66,8 +70,9 @@
|
|
|
66
70
|
background-color: rgba(16, 185, 129, 0.15);
|
|
67
71
|
color: var(--mljr-success-dark);
|
|
68
72
|
box-shadow:
|
|
69
|
-
3px 3px 6px rgba(16, 185, 129, 0.
|
|
70
|
-
-
|
|
73
|
+
3px 3px 6px rgba(16, 185, 129, 0.15),
|
|
74
|
+
inset -3px -3px 6px rgba(5, 80, 50, 0.06),
|
|
75
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.45);
|
|
71
76
|
}
|
|
72
77
|
|
|
73
78
|
.dark .mljr-badge-success,
|
|
@@ -75,8 +80,9 @@
|
|
|
75
80
|
background-color: rgba(16, 185, 129, 0.2);
|
|
76
81
|
color: var(--mljr-success-light);
|
|
77
82
|
box-shadow:
|
|
78
|
-
3px 3px 6px rgba(0, 0, 0, 0.
|
|
79
|
-
-
|
|
83
|
+
3px 3px 6px rgba(0, 0, 0, 0.3),
|
|
84
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
85
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
80
86
|
0 0 8px rgba(16, 185, 129, 0.12);
|
|
81
87
|
}
|
|
82
88
|
|
|
@@ -85,8 +91,9 @@
|
|
|
85
91
|
background-color: rgba(234, 179, 8, 0.15);
|
|
86
92
|
color: var(--mljr-warning-dark);
|
|
87
93
|
box-shadow:
|
|
88
|
-
3px 3px 6px rgba(234, 179, 8, 0.
|
|
89
|
-
-
|
|
94
|
+
3px 3px 6px rgba(234, 179, 8, 0.15),
|
|
95
|
+
inset -3px -3px 6px rgba(120, 80, 5, 0.06),
|
|
96
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.45);
|
|
90
97
|
}
|
|
91
98
|
|
|
92
99
|
.dark .mljr-badge-warning,
|
|
@@ -94,8 +101,9 @@
|
|
|
94
101
|
background-color: rgba(234, 179, 8, 0.2);
|
|
95
102
|
color: var(--mljr-warning-light);
|
|
96
103
|
box-shadow:
|
|
97
|
-
3px 3px 6px rgba(0, 0, 0, 0.
|
|
98
|
-
-
|
|
104
|
+
3px 3px 6px rgba(0, 0, 0, 0.3),
|
|
105
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
106
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
99
107
|
0 0 8px rgba(234, 179, 8, 0.12);
|
|
100
108
|
}
|
|
101
109
|
|
|
@@ -104,8 +112,9 @@
|
|
|
104
112
|
background-color: rgba(239, 68, 68, 0.15);
|
|
105
113
|
color: var(--mljr-error-dark);
|
|
106
114
|
box-shadow:
|
|
107
|
-
3px 3px 6px rgba(239, 68, 68, 0.
|
|
108
|
-
-
|
|
115
|
+
3px 3px 6px rgba(239, 68, 68, 0.15),
|
|
116
|
+
inset -3px -3px 6px rgba(120, 30, 30, 0.06),
|
|
117
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.45);
|
|
109
118
|
}
|
|
110
119
|
|
|
111
120
|
.dark .mljr-badge-error,
|
|
@@ -113,8 +122,9 @@
|
|
|
113
122
|
background-color: rgba(239, 68, 68, 0.2);
|
|
114
123
|
color: var(--mljr-error-light);
|
|
115
124
|
box-shadow:
|
|
116
|
-
3px 3px 6px rgba(0, 0, 0, 0.
|
|
117
|
-
-
|
|
125
|
+
3px 3px 6px rgba(0, 0, 0, 0.3),
|
|
126
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
127
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
118
128
|
0 0 8px rgba(239, 68, 68, 0.12);
|
|
119
129
|
}
|
|
120
130
|
|
|
@@ -123,8 +133,9 @@
|
|
|
123
133
|
background-color: rgba(59, 130, 246, 0.15);
|
|
124
134
|
color: var(--mljr-info-dark);
|
|
125
135
|
box-shadow:
|
|
126
|
-
3px 3px 6px rgba(59, 130, 246, 0.
|
|
127
|
-
-
|
|
136
|
+
3px 3px 6px rgba(59, 130, 246, 0.15),
|
|
137
|
+
inset -3px -3px 6px rgba(30, 60, 120, 0.06),
|
|
138
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.45);
|
|
128
139
|
}
|
|
129
140
|
|
|
130
141
|
.dark .mljr-badge-info,
|
|
@@ -132,8 +143,9 @@
|
|
|
132
143
|
background-color: rgba(59, 130, 246, 0.2);
|
|
133
144
|
color: var(--mljr-info-light);
|
|
134
145
|
box-shadow:
|
|
135
|
-
3px 3px 6px rgba(0, 0, 0, 0.
|
|
136
|
-
-
|
|
146
|
+
3px 3px 6px rgba(0, 0, 0, 0.3),
|
|
147
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
148
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
137
149
|
0 0 8px rgba(59, 130, 246, 0.12);
|
|
138
150
|
}
|
|
139
151
|
|
|
@@ -143,15 +155,17 @@
|
|
|
143
155
|
color: white;
|
|
144
156
|
box-shadow:
|
|
145
157
|
3px 3px 6px rgba(249, 115, 22, 0.25),
|
|
146
|
-
-3px -3px 6px rgba(
|
|
158
|
+
inset -3px -3px 6px rgba(120, 50, 10, 0.12),
|
|
159
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.3);
|
|
147
160
|
}
|
|
148
161
|
|
|
149
162
|
.mljr-badge-secondary-solid {
|
|
150
163
|
background: var(--mljr-gradient-secondary);
|
|
151
164
|
color: white;
|
|
152
165
|
box-shadow:
|
|
153
|
-
3px 3px 6px rgba(
|
|
154
|
-
-3px -3px 6px rgba(
|
|
166
|
+
3px 3px 6px rgba(168, 85, 247, 0.25),
|
|
167
|
+
inset -3px -3px 6px rgba(80, 30, 140, 0.12),
|
|
168
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.3);
|
|
155
169
|
}
|
|
156
170
|
|
|
157
171
|
.mljr-badge-success-solid {
|
|
@@ -159,7 +173,8 @@
|
|
|
159
173
|
color: white;
|
|
160
174
|
box-shadow:
|
|
161
175
|
3px 3px 6px rgba(16, 185, 129, 0.25),
|
|
162
|
-
-3px -3px 6px rgba(
|
|
176
|
+
inset -3px -3px 6px rgba(5, 100, 60, 0.12),
|
|
177
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.3);
|
|
163
178
|
}
|
|
164
179
|
|
|
165
180
|
.mljr-badge-warning-solid {
|
|
@@ -167,7 +182,8 @@
|
|
|
167
182
|
color: var(--mljr-gray-900);
|
|
168
183
|
box-shadow:
|
|
169
184
|
3px 3px 6px rgba(234, 179, 8, 0.25),
|
|
170
|
-
-3px -3px 6px rgba(
|
|
185
|
+
inset -3px -3px 6px rgba(120, 80, 5, 0.12),
|
|
186
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.3);
|
|
171
187
|
}
|
|
172
188
|
|
|
173
189
|
.mljr-badge-error-solid {
|
|
@@ -175,7 +191,8 @@
|
|
|
175
191
|
color: white;
|
|
176
192
|
box-shadow:
|
|
177
193
|
3px 3px 6px rgba(239, 68, 68, 0.25),
|
|
178
|
-
-3px -3px 6px rgba(
|
|
194
|
+
inset -3px -3px 6px rgba(120, 30, 30, 0.12),
|
|
195
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.3);
|
|
179
196
|
}
|
|
180
197
|
|
|
181
198
|
.mljr-badge-info-solid {
|
|
@@ -183,7 +200,8 @@
|
|
|
183
200
|
color: white;
|
|
184
201
|
box-shadow:
|
|
185
202
|
3px 3px 6px rgba(59, 130, 246, 0.25),
|
|
186
|
-
-3px -3px 6px rgba(
|
|
203
|
+
inset -3px -3px 6px rgba(30, 60, 120, 0.12),
|
|
204
|
+
inset 3px 3px 6px rgba(255, 255, 255, 0.3);
|
|
187
205
|
}
|
|
188
206
|
|
|
189
207
|
/* Dark mode for solid badges */
|
|
@@ -191,7 +209,8 @@
|
|
|
191
209
|
[data-theme="dark"] .mljr-badge-primary-solid {
|
|
192
210
|
box-shadow:
|
|
193
211
|
3px 3px 6px rgba(0, 0, 0, 0.35),
|
|
194
|
-
-3px -3px 6px rgba(
|
|
212
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
213
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.08),
|
|
195
214
|
0 0 10px rgba(249, 115, 22, 0.2);
|
|
196
215
|
}
|
|
197
216
|
|
|
@@ -199,15 +218,17 @@
|
|
|
199
218
|
[data-theme="dark"] .mljr-badge-secondary-solid {
|
|
200
219
|
box-shadow:
|
|
201
220
|
3px 3px 6px rgba(0, 0, 0, 0.35),
|
|
202
|
-
-3px -3px 6px rgba(
|
|
203
|
-
|
|
221
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
222
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
223
|
+
0 0 10px rgba(168, 85, 247, 0.2);
|
|
204
224
|
}
|
|
205
225
|
|
|
206
226
|
.dark .mljr-badge-success-solid,
|
|
207
227
|
[data-theme="dark"] .mljr-badge-success-solid {
|
|
208
228
|
box-shadow:
|
|
209
229
|
3px 3px 6px rgba(0, 0, 0, 0.35),
|
|
210
|
-
-3px -3px 6px rgba(
|
|
230
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
231
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
211
232
|
0 0 10px rgba(16, 185, 129, 0.2);
|
|
212
233
|
}
|
|
213
234
|
|
|
@@ -215,7 +236,8 @@
|
|
|
215
236
|
[data-theme="dark"] .mljr-badge-warning-solid {
|
|
216
237
|
box-shadow:
|
|
217
238
|
3px 3px 6px rgba(0, 0, 0, 0.35),
|
|
218
|
-
-3px -3px 6px rgba(
|
|
239
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
240
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
219
241
|
0 0 10px rgba(234, 179, 8, 0.2);
|
|
220
242
|
}
|
|
221
243
|
|
|
@@ -223,7 +245,8 @@
|
|
|
223
245
|
[data-theme="dark"] .mljr-badge-error-solid {
|
|
224
246
|
box-shadow:
|
|
225
247
|
3px 3px 6px rgba(0, 0, 0, 0.35),
|
|
226
|
-
-3px -3px 6px rgba(
|
|
248
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
249
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
227
250
|
0 0 10px rgba(239, 68, 68, 0.2);
|
|
228
251
|
}
|
|
229
252
|
|
|
@@ -231,7 +254,8 @@
|
|
|
231
254
|
[data-theme="dark"] .mljr-badge-info-solid {
|
|
232
255
|
box-shadow:
|
|
233
256
|
3px 3px 6px rgba(0, 0, 0, 0.35),
|
|
234
|
-
-3px -3px 6px rgba(
|
|
257
|
+
inset -3px -3px 6px rgba(0, 0, 0, 0.15),
|
|
258
|
+
inset 3px 3px 6px rgba(255, 200, 150, 0.06),
|
|
235
259
|
0 0 10px rgba(59, 130, 246, 0.2);
|
|
236
260
|
}
|
|
237
261
|
|
|
@@ -282,6 +306,23 @@
|
|
|
282
306
|
box-shadow: 0 0 4px currentColor;
|
|
283
307
|
}
|
|
284
308
|
|
|
309
|
+
/* Badge Icon */
|
|
310
|
+
.mljr-badge-icon {
|
|
311
|
+
width: 0.875rem;
|
|
312
|
+
height: 0.875rem;
|
|
313
|
+
flex-shrink: 0;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.mljr-badge-sm .mljr-badge-icon {
|
|
317
|
+
width: 0.75rem;
|
|
318
|
+
height: 0.75rem;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.mljr-badge-lg .mljr-badge-icon {
|
|
322
|
+
width: 1rem;
|
|
323
|
+
height: 1rem;
|
|
324
|
+
}
|
|
325
|
+
|
|
285
326
|
/* Removable Badge */
|
|
286
327
|
.mljr-badge-removable {
|
|
287
328
|
padding-right: var(--mljr-space-1);
|
|
@@ -51,53 +51,49 @@
|
|
|
51
51
|
background: var(--mljr-gradient-primary);
|
|
52
52
|
color: white;
|
|
53
53
|
box-shadow:
|
|
54
|
-
6px 6px
|
|
55
|
-
-6px -6px
|
|
56
|
-
inset
|
|
57
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.1);
|
|
54
|
+
6px 6px 14px rgba(249, 115, 22, 0.3),
|
|
55
|
+
inset -6px -6px 14px rgba(120, 50, 10, 0.15),
|
|
56
|
+
inset 6px 6px 14px rgba(255, 255, 255, 0.35);
|
|
58
57
|
}
|
|
59
58
|
|
|
60
59
|
.mljr-btn-primary:hover {
|
|
61
60
|
background: linear-gradient(135deg, var(--mljr-primary-300) 0%, var(--mljr-primary-500) 100%);
|
|
62
61
|
box-shadow:
|
|
63
|
-
8px 8px
|
|
64
|
-
-8px -8px
|
|
65
|
-
inset
|
|
66
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.1);
|
|
62
|
+
8px 8px 18px rgba(249, 115, 22, 0.35),
|
|
63
|
+
inset -8px -8px 18px rgba(120, 50, 10, 0.15),
|
|
64
|
+
inset 8px 8px 18px rgba(255, 255, 255, 0.4);
|
|
67
65
|
}
|
|
68
66
|
|
|
69
67
|
.mljr-btn-primary:active {
|
|
70
68
|
background: linear-gradient(135deg, var(--mljr-primary-500) 0%, var(--mljr-primary-700) 100%);
|
|
71
69
|
box-shadow:
|
|
72
|
-
inset 4px 4px
|
|
73
|
-
inset -4px -4px
|
|
70
|
+
inset 4px 4px 10px rgba(0, 0, 0, 0.25),
|
|
71
|
+
inset -4px -4px 10px rgba(255, 255, 255, 0.15);
|
|
74
72
|
}
|
|
75
73
|
|
|
76
|
-
/* Secondary Button (
|
|
74
|
+
/* Secondary Button (Purple) */
|
|
77
75
|
.mljr-btn-secondary {
|
|
78
76
|
background: var(--mljr-gradient-secondary);
|
|
79
77
|
color: white;
|
|
80
78
|
box-shadow:
|
|
81
|
-
6px 6px
|
|
82
|
-
-6px -6px
|
|
83
|
-
inset
|
|
84
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.1);
|
|
79
|
+
6px 6px 14px rgba(168, 85, 247, 0.25),
|
|
80
|
+
inset -6px -6px 14px rgba(80, 30, 140, 0.15),
|
|
81
|
+
inset 6px 6px 14px rgba(255, 255, 255, 0.35);
|
|
85
82
|
}
|
|
86
83
|
|
|
87
84
|
.mljr-btn-secondary:hover {
|
|
88
85
|
background: linear-gradient(135deg, var(--mljr-secondary-300) 0%, var(--mljr-secondary-500) 100%);
|
|
89
86
|
box-shadow:
|
|
90
|
-
8px 8px
|
|
91
|
-
-8px -8px
|
|
92
|
-
inset
|
|
93
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.1);
|
|
87
|
+
8px 8px 18px rgba(168, 85, 247, 0.3),
|
|
88
|
+
inset -8px -8px 18px rgba(80, 30, 140, 0.15),
|
|
89
|
+
inset 8px 8px 18px rgba(255, 255, 255, 0.4);
|
|
94
90
|
}
|
|
95
91
|
|
|
96
92
|
.mljr-btn-secondary:active {
|
|
97
93
|
background: linear-gradient(135deg, var(--mljr-secondary-500) 0%, var(--mljr-secondary-700) 100%);
|
|
98
94
|
box-shadow:
|
|
99
|
-
inset 4px 4px
|
|
100
|
-
inset -4px -4px
|
|
95
|
+
inset 4px 4px 10px rgba(0, 0, 0, 0.25),
|
|
96
|
+
inset -4px -4px 10px rgba(255, 255, 255, 0.15);
|
|
101
97
|
}
|
|
102
98
|
|
|
103
99
|
/* Outline Button Primary */
|
|
@@ -179,25 +175,23 @@
|
|
|
179
175
|
background: linear-gradient(135deg, var(--mljr-error-light) 0%, var(--mljr-error) 100%);
|
|
180
176
|
color: white;
|
|
181
177
|
box-shadow:
|
|
182
|
-
6px 6px
|
|
183
|
-
-6px -6px
|
|
184
|
-
inset
|
|
185
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.1);
|
|
178
|
+
6px 6px 14px rgba(239, 68, 68, 0.25),
|
|
179
|
+
inset -6px -6px 14px rgba(150, 30, 30, 0.15),
|
|
180
|
+
inset 6px 6px 14px rgba(255, 255, 255, 0.35);
|
|
186
181
|
}
|
|
187
182
|
|
|
188
183
|
.mljr-btn-danger:hover {
|
|
189
184
|
background: linear-gradient(135deg, var(--mljr-error) 0%, var(--mljr-error-light) 100%);
|
|
190
185
|
box-shadow:
|
|
191
|
-
8px 8px
|
|
192
|
-
-8px -8px
|
|
193
|
-
inset
|
|
194
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.1);
|
|
186
|
+
8px 8px 18px rgba(239, 68, 68, 0.3),
|
|
187
|
+
inset -8px -8px 18px rgba(150, 30, 30, 0.15),
|
|
188
|
+
inset 8px 8px 18px rgba(255, 255, 255, 0.4);
|
|
195
189
|
}
|
|
196
190
|
|
|
197
191
|
.mljr-btn-danger:active {
|
|
198
192
|
box-shadow:
|
|
199
|
-
inset 4px 4px
|
|
200
|
-
inset -4px -4px
|
|
193
|
+
inset 4px 4px 10px rgba(0, 0, 0, 0.25),
|
|
194
|
+
inset -4px -4px 10px rgba(255, 255, 255, 0.15);
|
|
201
195
|
}
|
|
202
196
|
|
|
203
197
|
/* Success Button */
|
|
@@ -205,25 +199,23 @@
|
|
|
205
199
|
background: linear-gradient(135deg, var(--mljr-success-light) 0%, var(--mljr-success) 100%);
|
|
206
200
|
color: white;
|
|
207
201
|
box-shadow:
|
|
208
|
-
6px 6px
|
|
209
|
-
-6px -6px
|
|
210
|
-
inset
|
|
211
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.1);
|
|
202
|
+
6px 6px 14px rgba(16, 185, 129, 0.25),
|
|
203
|
+
inset -6px -6px 14px rgba(5, 100, 60, 0.15),
|
|
204
|
+
inset 6px 6px 14px rgba(255, 255, 255, 0.35);
|
|
212
205
|
}
|
|
213
206
|
|
|
214
207
|
.mljr-btn-success:hover {
|
|
215
208
|
background: linear-gradient(135deg, var(--mljr-success) 0%, var(--mljr-success-light) 100%);
|
|
216
209
|
box-shadow:
|
|
217
|
-
8px 8px
|
|
218
|
-
-8px -8px
|
|
219
|
-
inset
|
|
220
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.1);
|
|
210
|
+
8px 8px 18px rgba(16, 185, 129, 0.3),
|
|
211
|
+
inset -8px -8px 18px rgba(5, 100, 60, 0.15),
|
|
212
|
+
inset 8px 8px 18px rgba(255, 255, 255, 0.4);
|
|
221
213
|
}
|
|
222
214
|
|
|
223
215
|
.mljr-btn-success:active {
|
|
224
216
|
box-shadow:
|
|
225
|
-
inset 4px 4px
|
|
226
|
-
inset -4px -4px
|
|
217
|
+
inset 4px 4px 10px rgba(0, 0, 0, 0.25),
|
|
218
|
+
inset -4px -4px 10px rgba(255, 255, 255, 0.15);
|
|
227
219
|
}
|
|
228
220
|
|
|
229
221
|
/* Button Sizes */
|
|
@@ -347,37 +339,67 @@
|
|
|
347
339
|
.dark .mljr-btn-primary,
|
|
348
340
|
[data-theme="dark"] .mljr-btn-primary {
|
|
349
341
|
box-shadow:
|
|
350
|
-
6px 6px
|
|
351
|
-
-6px -6px
|
|
352
|
-
inset
|
|
353
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.2);
|
|
342
|
+
6px 6px 14px rgba(0, 0, 0, 0.4),
|
|
343
|
+
inset -6px -6px 14px rgba(0, 0, 0, 0.2),
|
|
344
|
+
inset 6px 6px 14px rgba(255, 200, 150, 0.1);
|
|
354
345
|
}
|
|
355
346
|
|
|
356
347
|
.dark .mljr-btn-primary:hover,
|
|
357
348
|
[data-theme="dark"] .mljr-btn-primary:hover {
|
|
358
349
|
box-shadow:
|
|
359
|
-
8px 8px
|
|
360
|
-
-8px -8px
|
|
361
|
-
inset
|
|
362
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.2),
|
|
350
|
+
8px 8px 18px rgba(0, 0, 0, 0.45),
|
|
351
|
+
inset -8px -8px 18px rgba(0, 0, 0, 0.2),
|
|
352
|
+
inset 8px 8px 18px rgba(255, 200, 150, 0.12),
|
|
363
353
|
0 0 20px rgba(249, 115, 22, 0.3);
|
|
364
354
|
}
|
|
365
355
|
|
|
366
356
|
.dark .mljr-btn-secondary,
|
|
367
357
|
[data-theme="dark"] .mljr-btn-secondary {
|
|
368
358
|
box-shadow:
|
|
369
|
-
6px 6px
|
|
370
|
-
-6px -6px
|
|
371
|
-
inset
|
|
372
|
-
inset -1px -1px 2px rgba(0, 0, 0, 0.2);
|
|
359
|
+
6px 6px 14px rgba(0, 0, 0, 0.4),
|
|
360
|
+
inset -6px -6px 14px rgba(0, 0, 0, 0.2),
|
|
361
|
+
inset 6px 6px 14px rgba(255, 200, 150, 0.1);
|
|
373
362
|
}
|
|
374
363
|
|
|
375
364
|
.dark .mljr-btn-secondary:hover,
|
|
376
365
|
[data-theme="dark"] .mljr-btn-secondary:hover {
|
|
377
366
|
box-shadow:
|
|
378
|
-
8px 8px
|
|
379
|
-
-8px -8px
|
|
380
|
-
inset
|
|
381
|
-
|
|
382
|
-
|
|
367
|
+
8px 8px 18px rgba(0, 0, 0, 0.45),
|
|
368
|
+
inset -8px -8px 18px rgba(0, 0, 0, 0.2),
|
|
369
|
+
inset 8px 8px 18px rgba(255, 200, 150, 0.12),
|
|
370
|
+
0 0 20px rgba(168, 85, 247, 0.3);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.dark .mljr-btn-danger,
|
|
374
|
+
[data-theme="dark"] .mljr-btn-danger {
|
|
375
|
+
box-shadow:
|
|
376
|
+
6px 6px 14px rgba(0, 0, 0, 0.4),
|
|
377
|
+
inset -6px -6px 14px rgba(0, 0, 0, 0.2),
|
|
378
|
+
inset 6px 6px 14px rgba(255, 200, 150, 0.1);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.dark .mljr-btn-danger:hover,
|
|
382
|
+
[data-theme="dark"] .mljr-btn-danger:hover {
|
|
383
|
+
box-shadow:
|
|
384
|
+
8px 8px 18px rgba(0, 0, 0, 0.45),
|
|
385
|
+
inset -8px -8px 18px rgba(0, 0, 0, 0.2),
|
|
386
|
+
inset 8px 8px 18px rgba(255, 200, 150, 0.12),
|
|
387
|
+
0 0 20px rgba(239, 68, 68, 0.3);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.dark .mljr-btn-success,
|
|
391
|
+
[data-theme="dark"] .mljr-btn-success {
|
|
392
|
+
box-shadow:
|
|
393
|
+
6px 6px 14px rgba(0, 0, 0, 0.4),
|
|
394
|
+
inset -6px -6px 14px rgba(0, 0, 0, 0.2),
|
|
395
|
+
inset 6px 6px 14px rgba(255, 200, 150, 0.1);
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.dark .mljr-btn-success:hover,
|
|
399
|
+
[data-theme="dark"] .mljr-btn-success:hover {
|
|
400
|
+
box-shadow:
|
|
401
|
+
8px 8px 18px rgba(0, 0, 0, 0.45),
|
|
402
|
+
inset -8px -8px 18px rgba(0, 0, 0, 0.2),
|
|
403
|
+
inset 8px 8px 18px rgba(255, 200, 150, 0.12),
|
|
404
|
+
0 0 20px rgba(16, 185, 129, 0.3);
|
|
383
405
|
}
|