@breadstone/mosaik-themes 0.0.135 → 0.0.136
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 +18 -0
- package/Themes/joy.scss +19 -1
- package/Themes/retro.scss +18 -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,
|
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,
|
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,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-themes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.136",
|
|
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.136",
|
|
19
19
|
"@ctrl/tinycolor": "^4.1.0",
|
|
20
20
|
"tslib": "^2.8.1"
|
|
21
21
|
},
|