@meduza/ui-kit-2 0.1.65 → 0.1.66

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.65",
2
+ "version": "0.1.66",
3
3
  "license": "MIT",
4
4
  "description": "UIKit for Meduza",
5
5
  "repository": "https://github.com/meduza-corp/ui-kit-2.git",
@@ -59,7 +59,8 @@
59
59
  fill: currentColor;
60
60
  }
61
61
 
62
- .dark {
62
+ .dark,
63
+ .isDark {
63
64
  color: rgba(0, 0, 0, 0.4);
64
65
  }
65
66
 
@@ -94,7 +95,6 @@
94
95
  }
95
96
  }
96
97
 
97
-
98
98
  /* VISIBILITY */
99
99
 
100
100
  .mobile {
@@ -25,20 +25,6 @@ span[data-body]:hover {
25
25
  inset 0 -1px #999;
26
26
  }
27
27
 
28
- .dark span[data-body],
29
- .isDark span[data-body] {
30
- background-color: #5b5b5b;
31
- box-shadow: inset 1px 0 #8b8b8b, inset 0 1px #8b8b8b, inset -1px 0 #8b8b8b,
32
- inset 0 -1px #8b8b8b;
33
- }
34
-
35
- .dark span[data-body]:hover,
36
- .isDark span[data-body]:hover {
37
- background-color: #5b5b5b;
38
- box-shadow: inset 1px 0 #747474, inset 0 1px #747474, inset -1px 0 #747474,
39
- inset 0 -1px #747474;
40
- }
41
-
42
28
  span[data-highlight='true'],
43
29
  span[data-highlight='true']:hover {
44
30
  background-color: #f4efe9;
@@ -396,9 +396,27 @@ a mark {
396
396
  }
397
397
  }
398
398
 
399
+ /* Footnote dakr theme */
400
+ .isDark span[data-body] {
401
+ background-color: #5b5b5b;
402
+ box-shadow: inset 1px 0 #8b8b8b, inset 0 1px #8b8b8b, inset -1px 0 #8b8b8b,
403
+ inset 0 -1px #8b8b8b;
404
+ }
405
+
406
+ .isDark span[data-body]:hover {
407
+ background-color: #5b5b5b;
408
+ box-shadow: inset 1px 0 #747474, inset 0 1px #747474, inset -1px 0 #747474,
409
+ inset 0 -1px #747474;
410
+ }
411
+
399
412
  /* Theme */
400
413
 
401
414
  .blockquote.isDark {
402
415
  color: inherit;
403
416
  background-color: #34322a;
404
417
  }
418
+
419
+ .blockquote.isDark a {
420
+ color: inherit;
421
+ box-shadow: inset 0 -1px #b88b59;
422
+ }