@breadstone/mosaik-themes 0.0.135 → 0.0.137
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/Themes/cosmopolitan.scss +23 -0
- package/Themes/joy.scss +24 -1
- package/Themes/retro.scss +23 -0
- package/package.json +2 -2
package/Themes/cosmopolitan.scss
CHANGED
|
@@ -1210,6 +1210,24 @@ $banner-props: (
|
|
|
1210
1210
|
'transition-property': unset,
|
|
1211
1211
|
'translate': unset
|
|
1212
1212
|
);
|
|
1213
|
+
$banner-group-props: (
|
|
1214
|
+
'font-family': unset,
|
|
1215
|
+
'font-letter-spacing': unset,
|
|
1216
|
+
'font-line-height': unset,
|
|
1217
|
+
'font-size': unset,
|
|
1218
|
+
'font-text-decoration': unset,
|
|
1219
|
+
'font-text-transform': unset,
|
|
1220
|
+
'font-weight': unset,
|
|
1221
|
+
'gap': unset,
|
|
1222
|
+
'padding-bottom': unset,
|
|
1223
|
+
'padding-left': unset,
|
|
1224
|
+
'padding-right': unset,
|
|
1225
|
+
'padding-top': unset,
|
|
1226
|
+
'transition-duration': unset,
|
|
1227
|
+
'transition-mode': unset,
|
|
1228
|
+
'transition-property': unset,
|
|
1229
|
+
'translate': unset
|
|
1230
|
+
);
|
|
1213
1231
|
$banner-header-props: (
|
|
1214
1232
|
'background-color': unset,
|
|
1215
1233
|
'border-color': unset,
|
|
@@ -3098,6 +3116,11 @@ $drop-down-button-props: (
|
|
|
3098
3116
|
'translate': unset
|
|
3099
3117
|
);
|
|
3100
3118
|
$drop-zone-props: (
|
|
3119
|
+
'background-color': var(--cosmopolitan-scheme-background),
|
|
3120
|
+
'border-color': var(--cosmopolitan-scheme-highlight),
|
|
3121
|
+
'border-radius': var(--cosmopolitan-layout-radius),
|
|
3122
|
+
'border-style': solid,
|
|
3123
|
+
'border-width': var(--cosmopolitan-layout-thickness),
|
|
3101
3124
|
'font-family': unset,
|
|
3102
3125
|
'font-letter-spacing': unset,
|
|
3103
3126
|
'font-line-height': unset,
|
package/Themes/joy.scss
CHANGED
|
@@ -1828,13 +1828,31 @@ $banner-props: (
|
|
|
1828
1828
|
'padding-bottom': var(--joy-layout-space),
|
|
1829
1829
|
'padding-left': calc(var(--joy-layout-space) * 2),
|
|
1830
1830
|
'padding-right': calc(var(--joy-layout-space) * 2),
|
|
1831
|
-
'padding-top':
|
|
1831
|
+
'padding-top': var(--joy-layout-space),
|
|
1832
1832
|
'shadow': var(--joy-elevation-none),
|
|
1833
1833
|
'transition-duration': var(--joy-duration-short),
|
|
1834
1834
|
'transition-mode': ease,
|
|
1835
1835
|
'transition-property': all,
|
|
1836
1836
|
'translate': unset
|
|
1837
1837
|
);
|
|
1838
|
+
$banner-group-props: (
|
|
1839
|
+
'font-family': unset,
|
|
1840
|
+
'font-letter-spacing': unset,
|
|
1841
|
+
'font-line-height': unset,
|
|
1842
|
+
'font-size': unset,
|
|
1843
|
+
'font-text-decoration': unset,
|
|
1844
|
+
'font-text-transform': unset,
|
|
1845
|
+
'font-weight': unset,
|
|
1846
|
+
'gap': unset,
|
|
1847
|
+
'padding-bottom': unset,
|
|
1848
|
+
'padding-left': unset,
|
|
1849
|
+
'padding-right': unset,
|
|
1850
|
+
'padding-top': unset,
|
|
1851
|
+
'transition-duration': unset,
|
|
1852
|
+
'transition-mode': unset,
|
|
1853
|
+
'transition-property': unset,
|
|
1854
|
+
'translate': unset
|
|
1855
|
+
);
|
|
1838
1856
|
$banner-header-props: (
|
|
1839
1857
|
'background-color': unset,
|
|
1840
1858
|
'border-color': unset,
|
|
@@ -3733,6 +3751,11 @@ $drop-down-button-props: (
|
|
|
3733
3751
|
'translate': unset
|
|
3734
3752
|
);
|
|
3735
3753
|
$drop-zone-props: (
|
|
3754
|
+
'background-color': var(--joy-scheme-background),
|
|
3755
|
+
'border-color': var(--joy-scheme-highlight),
|
|
3756
|
+
'border-radius': var(--joy-layout-radius),
|
|
3757
|
+
'border-style': solid,
|
|
3758
|
+
'border-width': var(--joy-layout-thickness),
|
|
3736
3759
|
'font-family': unset,
|
|
3737
3760
|
'font-letter-spacing': unset,
|
|
3738
3761
|
'font-line-height': unset,
|
package/Themes/retro.scss
CHANGED
|
@@ -1604,6 +1604,24 @@ $banner-props: (
|
|
|
1604
1604
|
'transition-property': all,
|
|
1605
1605
|
'translate': none
|
|
1606
1606
|
);
|
|
1607
|
+
$banner-group-props: (
|
|
1608
|
+
'font-family': unset,
|
|
1609
|
+
'font-letter-spacing': unset,
|
|
1610
|
+
'font-line-height': unset,
|
|
1611
|
+
'font-size': unset,
|
|
1612
|
+
'font-text-decoration': unset,
|
|
1613
|
+
'font-text-transform': unset,
|
|
1614
|
+
'font-weight': unset,
|
|
1615
|
+
'gap': unset,
|
|
1616
|
+
'padding-bottom': unset,
|
|
1617
|
+
'padding-left': unset,
|
|
1618
|
+
'padding-right': unset,
|
|
1619
|
+
'padding-top': unset,
|
|
1620
|
+
'transition-duration': unset,
|
|
1621
|
+
'transition-mode': unset,
|
|
1622
|
+
'transition-property': unset,
|
|
1623
|
+
'translate': unset
|
|
1624
|
+
);
|
|
1607
1625
|
$banner-header-props: (
|
|
1608
1626
|
'background-color': unset,
|
|
1609
1627
|
'border-color': unset,
|
|
@@ -3542,6 +3560,11 @@ $drop-down-button-props: (
|
|
|
3542
3560
|
'width': auto
|
|
3543
3561
|
);
|
|
3544
3562
|
$drop-zone-props: (
|
|
3563
|
+
'background-color': var(--retro-scheme-background),
|
|
3564
|
+
'border-color': var(--retro-scheme-highlight),
|
|
3565
|
+
'border-radius': var(--retro-layout-radius),
|
|
3566
|
+
'border-style': solid,
|
|
3567
|
+
'border-width': var(--retro-layout-thickness),
|
|
3545
3568
|
'font-family': unset,
|
|
3546
3569
|
'font-letter-spacing': unset,
|
|
3547
3570
|
'font-line-height': unset,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-themes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.137",
|
|
4
4
|
"description": "Mosaik elements various themes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"url": "git+ssh://git@github.com/RueDeRennes/mosaik.git"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
18
|
+
"@breadstone/mosaik-elements": "^0.0.137",
|
|
19
19
|
"@ctrl/tinycolor": "^4.1.0",
|
|
20
20
|
"tslib": "^2.8.1"
|
|
21
21
|
},
|