lexgui 0.6.2 → 0.6.3
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/build/lexgui.css +6 -5
- package/build/lexgui.js +661 -104
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +661 -104
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +13 -1
- package/demo.js +28 -14
- package/examples/all_widgets.html +1 -1
- package/package.json +1 -1
package/build/lexgui.css
CHANGED
|
@@ -875,6 +875,10 @@ a svg, svg path {
|
|
|
875
875
|
/* Generic Popover */
|
|
876
876
|
|
|
877
877
|
.lexpopover {
|
|
878
|
+
background-color: var(--global-color-primary);
|
|
879
|
+
border-radius: 0.5rem;
|
|
880
|
+
border: 1px solid #7a797c4f;
|
|
881
|
+
padding: 0.25rem;
|
|
878
882
|
position: fixed;
|
|
879
883
|
left: 0px;
|
|
880
884
|
top: 0px;
|
|
@@ -1542,11 +1546,8 @@ a svg, svg path {
|
|
|
1542
1546
|
width: 256px;
|
|
1543
1547
|
display: flex;
|
|
1544
1548
|
flex-direction: column;
|
|
1545
|
-
padding: 0.2rem;
|
|
1546
|
-
border-radius: 0.5rem;
|
|
1547
|
-
border: 1px solid #7a797c4f;
|
|
1548
|
-
padding: 0.5rem;
|
|
1549
1549
|
gap: 0.5rem;
|
|
1550
|
+
padding: 0.25rem;
|
|
1550
1551
|
}
|
|
1551
1552
|
|
|
1552
1553
|
.lexcolorpicker input.lextext {
|
|
@@ -1771,7 +1772,7 @@ a svg, svg path {
|
|
|
1771
1772
|
|
|
1772
1773
|
.lexcombobuttons .lexbutton.combo {
|
|
1773
1774
|
display: flex;
|
|
1774
|
-
padding: 0.
|
|
1775
|
+
padding: 0.35em 1em;
|
|
1775
1776
|
transition: 0.2s;
|
|
1776
1777
|
--button-color: var(--global-color-tertiary);
|
|
1777
1778
|
}
|