@stackoverflow/stacks 1.9.4 → 1.9.5
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.
|
@@ -274,11 +274,15 @@
|
|
|
274
274
|
}
|
|
275
275
|
|
|
276
276
|
&--meta {
|
|
277
|
-
> *:not(.s-post-summary--meta-tags) > * {
|
|
277
|
+
> *:not(.s-post-summary--meta-tags):not(.s-user-card) > * {
|
|
278
278
|
opacity: var(--_ps-o);
|
|
279
279
|
}
|
|
280
280
|
|
|
281
281
|
.s-user-card {
|
|
282
|
+
> *:not(.magic-popup) {
|
|
283
|
+
opacity: var(--_ps-o);
|
|
284
|
+
}
|
|
285
|
+
|
|
282
286
|
flex-wrap: wrap;
|
|
283
287
|
justify-content: flex-end;
|
|
284
288
|
margin-left: auto;
|
|
@@ -648,37 +648,25 @@
|
|
|
648
648
|
// Reassemble as a single hsl value
|
|
649
649
|
--theme-secondary-color: .assemble-color(theme-secondary-color)[];
|
|
650
650
|
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
651
|
+
.dark-themed-colors-generator(@variant) {
|
|
652
|
+
--theme-@{variant}-025: .native-darken-desaturate(~"theme-@{variant}-color", 31, 73.3)[];
|
|
653
|
+
--theme-@{variant}-050: .native-darken-desaturate(~"theme-@{variant}-color", 15, 47)[];
|
|
654
|
+
--theme-@{variant}-075: .native-darken-desaturate(~"theme-@{variant}-color", 13, 39)[];
|
|
655
|
+
--theme-@{variant}-100: .native-darken-desaturate(~"theme-@{variant}-color", 11, 32)[];
|
|
656
|
+
--theme-@{variant}-150: .native-darken-desaturate(~"theme-@{variant}-color", 9, 23)[];
|
|
657
|
+
--theme-@{variant}-200: .native-darken-desaturate(~"theme-@{variant}-color", 7, 15)[];
|
|
658
|
+
--theme-@{variant}-300: .native-darken-desaturate(~"theme-@{variant}-color", 5, 7)[];
|
|
659
|
+
--theme-@{variant}-350: var(~"--theme-@{variant}-color");
|
|
660
|
+
--theme-@{variant}-400: .native-tint(~"theme-@{variant}-color", 21)[];
|
|
661
|
+
--theme-@{variant}-500: .native-tint(~"theme-@{variant}-color", 36)[];
|
|
662
|
+
--theme-@{variant}-600: .native-tint(~"theme-@{variant}-color", 51)[];
|
|
663
|
+
--theme-@{variant}-700: .native-tint(~"theme-@{variant}-color", 66)[];
|
|
664
|
+
--theme-@{variant}-800: .native-tint(~"theme-@{variant}-color", 81)[];
|
|
665
|
+
--theme-@{variant}-900: .native-tint(~"theme-@{variant}-color", 96)[];
|
|
666
|
+
}
|
|
666
667
|
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
--theme-secondary-050: .native-darken-desaturate(theme-secondary-color, 15, 47)[];
|
|
670
|
-
--theme-secondary-075: .native-darken-desaturate(theme-secondary-color, 13, 39)[];
|
|
671
|
-
--theme-secondary-100: .native-darken-desaturate(theme-secondary-color, 11, 32)[];
|
|
672
|
-
--theme-secondary-150: .native-darken-desaturate(theme-secondary-color, 9, 23)[];
|
|
673
|
-
--theme-secondary-200: .native-darken-desaturate(theme-secondary-color, 7, 15)[];
|
|
674
|
-
--theme-secondary-300: .native-darken-desaturate(theme-secondary-color, 5, 7)[];
|
|
675
|
-
--theme-secondary-350: var(--theme-secondary-color);
|
|
676
|
-
--theme-secondary-400: .native-tint(theme-secondary-color, 21)[];
|
|
677
|
-
--theme-secondary-500: .native-tint(theme-secondary-color, 36)[];
|
|
678
|
-
--theme-secondary-600: .native-tint(theme-secondary-color, 51)[];
|
|
679
|
-
--theme-secondary-700: .native-tint(theme-secondary-color, 66)[];
|
|
680
|
-
--theme-secondary-800: .native-tint(theme-secondary-color, 81)[];
|
|
681
|
-
--theme-secondary-900: .native-tint(theme-secondary-color, 96)[];
|
|
668
|
+
.dark-themed-colors-generator(primary);
|
|
669
|
+
.dark-themed-colors-generator(secondary);
|
|
682
670
|
|
|
683
671
|
// Fades
|
|
684
672
|
--focus-ring: .native-fade(theme-secondary-color, 25)[];
|