shogun-button-react 1.3.41 → 1.3.42
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/styles/index.css +6 -20
- package/package.json +1 -1
- package/src/styles/index.css +6 -20
package/dist/styles/index.css
CHANGED
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
margin: 0;
|
|
232
232
|
font-size: 1.5rem;
|
|
233
233
|
font-weight: 600;
|
|
234
|
-
color:
|
|
234
|
+
color: var(--shogun-text);
|
|
235
235
|
text-align: center;
|
|
236
236
|
width: 100%;
|
|
237
237
|
}
|
|
@@ -438,31 +438,17 @@
|
|
|
438
438
|
|
|
439
439
|
.shogun-prominent-toggle {
|
|
440
440
|
font-weight: 600;
|
|
441
|
-
color:
|
|
441
|
+
color: var(--shogun-primary);
|
|
442
442
|
padding: 8px 16px;
|
|
443
443
|
margin-top: 16px;
|
|
444
|
-
border:
|
|
444
|
+
border: none;
|
|
445
445
|
border-radius: 6px;
|
|
446
|
-
background-color:
|
|
446
|
+
background-color: transparent;
|
|
447
447
|
transition: all 0.2s ease;
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
.shogun-prominent-toggle:hover {
|
|
451
|
-
|
|
452
|
-
border-color: #d1d5db;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
[data-shogun-theme="dark"] .shogun-prominent-toggle {
|
|
456
|
-
background-color: #1f2937;
|
|
457
|
-
border-color: #374151;
|
|
458
|
-
color: #60a5fa;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
[data-shogun-theme="dark"] .shogun-prominent-toggle:hover {
|
|
462
|
-
background-color: #111827;
|
|
463
|
-
border-color: #4b5563;
|
|
451
|
+
text-decoration: underline;
|
|
464
452
|
}
|
|
465
453
|
|
|
466
|
-
|
|
467
|
-
color: #f9fafb;
|
|
468
|
-
}
|
|
454
|
+
/* Redundant dark theme styles removed */
|
package/package.json
CHANGED
package/src/styles/index.css
CHANGED
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
margin: 0;
|
|
232
232
|
font-size: 1.5rem;
|
|
233
233
|
font-weight: 600;
|
|
234
|
-
color:
|
|
234
|
+
color: var(--shogun-text);
|
|
235
235
|
text-align: center;
|
|
236
236
|
width: 100%;
|
|
237
237
|
}
|
|
@@ -438,31 +438,17 @@
|
|
|
438
438
|
|
|
439
439
|
.shogun-prominent-toggle {
|
|
440
440
|
font-weight: 600;
|
|
441
|
-
color:
|
|
441
|
+
color: var(--shogun-primary);
|
|
442
442
|
padding: 8px 16px;
|
|
443
443
|
margin-top: 16px;
|
|
444
|
-
border:
|
|
444
|
+
border: none;
|
|
445
445
|
border-radius: 6px;
|
|
446
|
-
background-color:
|
|
446
|
+
background-color: transparent;
|
|
447
447
|
transition: all 0.2s ease;
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
.shogun-prominent-toggle:hover {
|
|
451
|
-
|
|
452
|
-
border-color: #d1d5db;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
[data-shogun-theme="dark"] .shogun-prominent-toggle {
|
|
456
|
-
background-color: #1f2937;
|
|
457
|
-
border-color: #374151;
|
|
458
|
-
color: #60a5fa;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
[data-shogun-theme="dark"] .shogun-prominent-toggle:hover {
|
|
462
|
-
background-color: #111827;
|
|
463
|
-
border-color: #4b5563;
|
|
451
|
+
text-decoration: underline;
|
|
464
452
|
}
|
|
465
453
|
|
|
466
|
-
|
|
467
|
-
color: #f9fafb;
|
|
468
|
-
}
|
|
454
|
+
/* Redundant dark theme styles removed */
|