pixl-xyapp 2.1.16 → 2.1.17

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
@@ -1596,8 +1596,8 @@ fieldset.info_fieldset > legend {
1596
1596
  cursor: default;
1597
1597
  }
1598
1598
  fieldset.info_fieldset > .tool_desc {
1599
- margin-top: 4px;
1600
- font-size: 11px;
1599
+ margin-bottom: 10px;
1600
+ font-size: 12px;
1601
1601
  color: var(--label-color);
1602
1602
  }
1603
1603
 
package/js/base.js CHANGED
@@ -163,7 +163,7 @@ var app = {
163
163
 
164
164
  handleKeyDown: function(event) {
165
165
  // send keydown event to page if text element isn't current focused
166
- if (document.activeElement && document.activeElement.tagName.match(/^(INPUT|TEXTAREA)$/)) return;
166
+ if (document.activeElement && (document.activeElement.tagName.match(/^(INPUT|TEXTAREA)$/) || (document.activeElement.className == 'CodeMirror-code'))) return;
167
167
 
168
168
  if (this.page_manager && this.page_manager.current_page_id) {
169
169
  var id = this.page_manager.current_page_id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixl-xyapp",
3
- "version": "2.1.16",
3
+ "version": "2.1.17",
4
4
  "description": "Front-end web application and theme for xyOps.",
5
5
  "author": "Joseph Huckaby <jhuckaby@pixlcore.com>",
6
6
  "homepage": "https://github.com/pixlcore/pixl-xyapp",