@bryntum/demo-resources 7.2.3 → 7.3.0
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 +1 -1
- package/scss/_common.scss +5 -0
- package/scss/_header.scss +15 -0
package/package.json
CHANGED
package/scss/_common.scss
CHANGED
|
@@ -100,6 +100,11 @@ body {
|
|
|
100
100
|
|
|
101
101
|
/* For Angular using web component ViewEncapsulation.ShadowDom */
|
|
102
102
|
:host {
|
|
103
|
+
background-color : var(--b-neutral-97);
|
|
104
|
+
background-image : radial-gradient(circle, rgba(108, 207, 250, .3), transparent 70%, transparent 100%), radial-gradient(circle, rgba(78, 34, 191, .1), transparent 70%, transparent 100%), radial-gradient(circle at right bottom, color-mix(in srgb, var(--b-primary, #1e88e5), transparent 90%), transparent 70%, transparent 100%);
|
|
105
|
+
background-position : bottom, right, bottom right;
|
|
106
|
+
background-size : 50% 50%, 75% 75%, 100% 100%;
|
|
107
|
+
|
|
103
108
|
@media screen and (height > 768px) and (min-width : 800px) {
|
|
104
109
|
.demo-header {
|
|
105
110
|
margin-top : 1em;
|
package/scss/_header.scss
CHANGED
|
@@ -78,6 +78,21 @@
|
|
|
78
78
|
font-size : .9em;
|
|
79
79
|
gap : 0.5em;
|
|
80
80
|
padding : 0.7em;
|
|
81
|
+
|
|
82
|
+
.b-field {
|
|
83
|
+
row-gap: 0;
|
|
84
|
+
}
|
|
85
|
+
[data-ref="themeCombo"] {
|
|
86
|
+
--b-text-field-input-padding : 0.8em;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* Firefox input height is floored by font character metrics (~1.6em) regardless of
|
|
90
|
+
line-height. Reduce only the block (vertical) padding to compensate. */
|
|
91
|
+
@supports (-moz-appearance : none) {
|
|
92
|
+
[data-ref="themeCombo"] {
|
|
93
|
+
--b-text-field-input-padding : 0.5em 0.8em;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
81
96
|
}
|
|
82
97
|
|
|
83
98
|
.b-button-text {
|