@bobfrankston/msger 0.1.154 → 0.1.155

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.
Binary file
@@ -4,6 +4,8 @@
4
4
  <meta charset="UTF-8">
5
5
  <title>{TITLE}</title>
6
6
  <style>
7
+ /* CSS validation disabled: this is a Rust template with {PLACEHOLDERS} */
8
+ /* vscode-css-languageservice: ignore */
7
9
  body {
8
10
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
9
11
  padding: 20px;
@@ -12,6 +14,7 @@
12
14
  flex-direction: column;
13
15
  min-height: 100vh;
14
16
  box-sizing: border-box;
17
+ zoom: {ZOOM_PERCENT}%;
15
18
  }
16
19
  #content {
17
20
  flex: 0 1 auto;
@@ -91,6 +94,17 @@
91
94
  margin: 4px 0;
92
95
  }
93
96
  */
97
+ #countdown {
98
+ position: fixed;
99
+ top: 5px;
100
+ right: 5px;
101
+ background: rgba(255, 255, 0, 0.3);
102
+ padding: 5px 10px;
103
+ font-size: 14px;
104
+ font-weight: bold;
105
+ border-radius: 4px;
106
+ display: none;
107
+ }
94
108
  </style>
95
109
  </head>
96
110
  <body tabindex="0">
@@ -101,7 +115,7 @@
101
115
  <div id="buttons">
102
116
  {BUTTONS}
103
117
  </div>
104
- <div id="countdown" style="position: fixed; top: 5px; right: 5px; background: rgba(255, 255, 0, 0.3); padding: 5px 10px; font-size: 14px; font-weight: bold; border-radius: 4px; display: none;"></div>
118
+ <div id="countdown"></div>
105
119
  <!-- Context menu - commented out for now, F11/F12 keyboard shortcuts work fine
106
120
  <div id="contextMenu">
107
121
  <div class="context-menu-item" data-action="fullscreen">Toggle Fullscreen (F11)</div>
@@ -28,6 +28,8 @@
28
28
  "titleBar.inactiveForeground": "#15202b99"
29
29
  },
30
30
  "peacock.color": "#4de7ee",
31
- "workbench.colorTheme": "Visual Studio 2019 Dark"
31
+ "workbench.colorTheme": "Visual Studio 2019 Dark",
32
+ "css.validate": false,
33
+ "html.validate.styles": false
32
34
  }
33
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/msger",
3
- "version": "0.1.154",
3
+ "version": "0.1.155",
4
4
  "description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
5
5
  "type": "module",
6
6
  "main": "./index.js",