@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
|
|
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"
|
|
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>
|
package/msger.code-workspace
CHANGED