pixl-xyapp 2.1.1 → 2.1.2
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 +10 -3
- package/js/base.js +1 -0
- package/js/tools.js +1 -1
- package/package.json +1 -1
package/css/base.css
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
--green: rgb(40, 167, 69);
|
|
17
17
|
--teal: rgb(32, 201, 151);
|
|
18
18
|
--cyan: rgb(23, 162, 184);
|
|
19
|
-
--gray: rgb(
|
|
19
|
+
--gray: rgb(138, 147, 155);
|
|
20
20
|
--primary: rgb(0, 123, 255);
|
|
21
21
|
--secondary: rgb(108, 117, 125);
|
|
22
22
|
--success: rgb(40, 167, 69);
|
|
@@ -109,6 +109,9 @@ body.dark {
|
|
|
109
109
|
--yellow: rgb(204, 154, 6);
|
|
110
110
|
--yellow-highlight: color-mix(in srgb, rgb(204, 154, 6) 80%, white);
|
|
111
111
|
|
|
112
|
+
--gray: rgb(98, 107, 115);
|
|
113
|
+
--gray-highlight: color-mix(in srgb, rgb(98, 107, 115) 80%, white);
|
|
114
|
+
|
|
112
115
|
--border-color: rgb(50, 54, 58);
|
|
113
116
|
--shadow-color: rgba(0, 0, 0, 0.0);
|
|
114
117
|
--background-color: rgb(24, 28, 32);
|
|
@@ -1308,6 +1311,10 @@ body.dark .multiselect > .item.inherited {
|
|
|
1308
1311
|
font-style: italic;
|
|
1309
1312
|
color: var(--label-color);
|
|
1310
1313
|
|
|
1314
|
+
white-space: nowrap;
|
|
1315
|
+
overflow: hidden;
|
|
1316
|
+
text-overflow: ellipsis;
|
|
1317
|
+
|
|
1311
1318
|
user-select: none;
|
|
1312
1319
|
-moz-user-select: none;
|
|
1313
1320
|
-webkit-user-select: none;
|
|
@@ -1322,10 +1329,10 @@ body.dark .multiselect > .item.inherited {
|
|
|
1322
1329
|
padding-top: 2px;
|
|
1323
1330
|
padding-bottom: 0px;
|
|
1324
1331
|
}
|
|
1325
|
-
.form_grid .multiselect.single {
|
|
1332
|
+
/* .form_grid .multiselect.single {
|
|
1326
1333
|
padding-top: 2px;
|
|
1327
1334
|
padding-bottom: 0px;
|
|
1328
|
-
}
|
|
1335
|
+
} */
|
|
1329
1336
|
|
|
1330
1337
|
.multiselect > .single {
|
|
1331
1338
|
padding-top: 1px;
|
package/js/base.js
CHANGED
package/js/tools.js
CHANGED
|
@@ -969,7 +969,7 @@ function stablePrettyStringify(node) {
|
|
|
969
969
|
|
|
970
970
|
function inline_marked(md) {
|
|
971
971
|
// render text to markdown, trimming and stripping outer <p> tag
|
|
972
|
-
return marked.
|
|
972
|
+
return marked.parseInline(md, config.ui.marked_config);
|
|
973
973
|
};
|
|
974
974
|
|
|
975
975
|
// Debounce Function Generator
|