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 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(108, 117, 125);
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
@@ -42,6 +42,7 @@ var app = {
42
42
  var html = '<div class="header_nav_cont">';
43
43
 
44
44
  items.forEach( function(item, idx) {
45
+ if (!item) return;
45
46
  if (typeof(item) == 'string') {
46
47
  if (config.ui.nav[item]) item = config.ui.nav[item];
47
48
  else { html += item; return; }
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.parse(md, config.ui.marked_config).trim().replace(/^<p>(.+)<\/p>$/, '$1')
972
+ return marked.parseInline(md, config.ui.marked_config);
973
973
  };
974
974
 
975
975
  // Debounce Function Generator
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixl-xyapp",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "A theme for xyOps.",
5
5
  "author": "Joseph Huckaby <jhuckaby@pixlcore.com>",
6
6
  "homepage": "https://github.com/pixlcore/pixl-xyapp",