pixl-xyapp 2.1.3 → 2.1.4
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/css/base.css +31 -2
- package/js/base.js +2 -0
- package/package.json +1 -1
package/css/base.css
CHANGED
|
@@ -1123,6 +1123,10 @@ body.dark .button.primary {
|
|
|
1123
1123
|
border: 1px solid red;
|
|
1124
1124
|
}
|
|
1125
1125
|
|
|
1126
|
+
.form_row input[type="date"]::-webkit-calendar-picker-indicator {
|
|
1127
|
+
opacity: 0.4;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1126
1130
|
.form_row input[type="color"] {
|
|
1127
1131
|
cursor: default;
|
|
1128
1132
|
}
|
|
@@ -1136,13 +1140,13 @@ body.dark .button.primary {
|
|
|
1136
1140
|
-webkit-appearance: none;
|
|
1137
1141
|
appearance: none;
|
|
1138
1142
|
line-height: 20px;
|
|
1139
|
-
padding
|
|
1143
|
+
padding: 7px;
|
|
1140
1144
|
border: 1px solid var(--border-color);
|
|
1141
1145
|
font-size: 13px;
|
|
1142
1146
|
tab-size: 4;
|
|
1143
1147
|
color: var(--body-text-color);
|
|
1144
1148
|
transition: 0.2s ease border-color;
|
|
1145
|
-
resize:
|
|
1149
|
+
resize: none;
|
|
1146
1150
|
}
|
|
1147
1151
|
.form_row textarea:focus {
|
|
1148
1152
|
/* color: var(--theme-color); */
|
|
@@ -1240,6 +1244,9 @@ body.dark .dialog_content .form_row select {
|
|
|
1240
1244
|
body.dark .multiselect.multi {
|
|
1241
1245
|
background: var(--box-background-color);
|
|
1242
1246
|
}
|
|
1247
|
+
body.dark .multiselect.text {
|
|
1248
|
+
background: var(--box-background-color);
|
|
1249
|
+
}
|
|
1243
1250
|
|
|
1244
1251
|
.multiselect .select_chevron {
|
|
1245
1252
|
top: 50%;
|
|
@@ -1544,6 +1551,28 @@ div.info_caption {
|
|
|
1544
1551
|
color: var(--label-color);
|
|
1545
1552
|
}
|
|
1546
1553
|
|
|
1554
|
+
fieldset.info_fieldset {
|
|
1555
|
+
background: transparent;
|
|
1556
|
+
border: 1px solid var(--border-color);
|
|
1557
|
+
padding: 15px;
|
|
1558
|
+
margin-top: 12px;
|
|
1559
|
+
margin-left: 0;
|
|
1560
|
+
margin-right: 0;
|
|
1561
|
+
}
|
|
1562
|
+
fieldset.info_fieldset > legend {
|
|
1563
|
+
padding-left: 5px;
|
|
1564
|
+
padding-right: 5px;
|
|
1565
|
+
font-size: 11px;
|
|
1566
|
+
text-transform: uppercase;
|
|
1567
|
+
color: var(--label-color);
|
|
1568
|
+
cursor: default;
|
|
1569
|
+
}
|
|
1570
|
+
fieldset.info_fieldset > .tool_desc {
|
|
1571
|
+
margin-top: 4px;
|
|
1572
|
+
font-size: 11px;
|
|
1573
|
+
color: var(--label-color);
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1547
1576
|
.checker {
|
|
1548
1577
|
position: relative;
|
|
1549
1578
|
left: -12px;
|
package/js/base.js
CHANGED
|
@@ -13,6 +13,8 @@ var app = {
|
|
|
13
13
|
prefs: {},
|
|
14
14
|
lastClick: {},
|
|
15
15
|
|
|
16
|
+
MATCH_BAD_KEY: /^(constructor|__defineGetter__|__defineSetter__|hasOwnProperty|__lookupGetter__|__lookupSetter__|isPrototypeOf|propertyIsEnumerable|toString|valueOf|__proto__|toLocaleString|0)$/,
|
|
17
|
+
|
|
16
18
|
init: function() {
|
|
17
19
|
// override this in your app.js
|
|
18
20
|
},
|