Skip to content

Commit 50f5451

Browse files
committed
Aesthetic patch.
1 parent 36523c1 commit 50f5451

File tree

10 files changed

+11
-2
lines changed

10 files changed

+11
-2
lines changed

Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,3 +230,5 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
230230
- [2026.02.26]: The cache data page can now manage flatfile caching and APCU caching alongside whatever else is enabled at the same time (sometimes useful for when switching between different caching mechanisms but needing to manage entries from both mechanisms or others at the same time). Replaced the delete emoji at the cache data page with an SVG. Slightly modernised the structure of the cache data page.
231231
- [2026.02.28]: Refactored some of the L10N data.
232232
- [2026.03.13]: Added the ability to duplicate cache data across different cache mechanisms at the front-end cache data page.
233+
- [2026.03.17]: Various minor performance improvements.
234+
- [2026.03.25]: Aesthetic patch.

assets/bluemetal/frontend.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,3 +185,4 @@ input[type=hidden],script{display:none}
185185
.smicon.export{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:export.svg}{/Base64Encode})}
186186
.smicontxt{padding:0 1px 0 1px}
187187
.fixComCatBtnVert{position:relative;top:3px}
188+
input.clpbrdbtn{padding-{FE_Align}:21px;background-position:top 1px {FE_Align} 4px;background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:clipboard.svg}{/Base64Encode})}

assets/default/_home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
</li>
3232
</ul>
3333
<hr />
34-
<input type="button" value="{label.Copy to clipboard}" class="auto" onclick="javascript:if(navigator.clipboard){var doCopy='{HomeCopyData}';navigator.clipboard.writeText(doCopy);alert(doCopy)}else{alert('{response.Failed}')}" />
34+
<input type="button" value="{label.Copy to clipboard}" class="auto clpbrdbtn" onclick="javascript:if(navigator.clipboard){var doCopy='{HomeCopyData}';navigator.clipboard.writeText(doCopy);alert(doCopy)}else{alert('{response.Failed}')}" />
3535
</div></main>
3636
</div>

assets/default/_statistics.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="spanner">
88
<form id="statForm" action="?phpmussel-page=statistics" method="POST">
99
<input name="ClearStats" type="hidden" value="1" />
10-
<input type="button" value="{label.Copy to clipboard}" class="auto" onclick="javascript:if(navigator.clipboard){var doCopy='Web\n{label.Scan events} – {Web-Events}\n{label.Uploads scanned} – {Web-Scanned}\n{label.Uploads blocked} – {Web-Blocked}\n{label.Uploads quarantined} – {Web-Quarantined}\n\nCLI\n{label.Scan events} – {CLI-Events}\n{label.Objects scanned} – {CLI-Scanned}\n{label.Objects flagged} – {CLI-Flagged}\n\nAPI\n{label.Scan events} – {API-Events}\n{label.Objects scanned} – {API-Scanned}\n{label.Objects flagged} – {API-Flagged}\n\n{label.Other}\n{label.Start date} – {Other-Since}\n{label.Active signature files} – {Other-Active}\n';navigator.clipboard.writeText(doCopy);alert(doCopy)}else{alert('{response.Failed}')}" />
10+
<input type="button" value="{label.Copy to clipboard}" class="auto clpbrdbtn" onclick="javascript:if(navigator.clipboard){var doCopy='Web\n{label.Scan events} – {Web-Events}\n{label.Uploads scanned} – {Web-Scanned}\n{label.Uploads blocked} – {Web-Blocked}\n{label.Uploads quarantined} – {Web-Quarantined}\n\nCLI\n{label.Scan events} – {CLI-Events}\n{label.Objects scanned} – {CLI-Scanned}\n{label.Objects flagged} – {CLI-Flagged}\n\nAPI\n{label.Scan events} – {API-Events}\n{label.Objects scanned} – {API-Scanned}\n{label.Objects flagged} – {API-Flagged}\n\n{label.Other}\n{label.Start date} – {Other-Since}\n{label.Active signature files} – {Other-Active}\n';navigator.clipboard.writeText(doCopy);alert(doCopy)}else{alert('{response.Failed}')}" />
1111
<input type="button" value="{field.Clear all}" class="auto" onclick="{Confirm-ClearAll}" />
1212
</form>
1313
</div>

assets/default/clipboard.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/default/frontend.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,4 @@ input[type=hidden],script{display:none}
188188
.smicon.export{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:export.svg}{/Base64Encode})}
189189
.smicontxt{padding:0 1px 0 1px}
190190
.fixComCatBtnVert{position:relative;top:3px}
191+
input.clpbrdbtn{padding-{FE_Align}:21px;background-position:top 1px {FE_Align} 4px;background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:clipboard.svg}{/Base64Encode})}

assets/fullmoon/frontend.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,4 @@ input[type=checkbox],input[type=radio]{accent-color:#cca}
182182
.smicon.export{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:export.svg}{/Base64Encode})}
183183
.smicontxt{padding:0 1px 0 1px}
184184
.fixComCatBtnVert{position:relative;top:3px}
185+
input.clpbrdbtn{padding-{FE_Align}:21px;background-position:top 1px {FE_Align} 4px;background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:clipboard.svg}{/Base64Encode})}

assets/moss/frontend.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,3 +187,4 @@ input[type=hidden],script{display:none}
187187
.smicon.export{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:export.svg}{/Base64Encode})}
188188
.smicontxt{padding:0 1px 0 1px}
189189
.fixComCatBtnVert{position:relative;top:3px}
190+
input.clpbrdbtn{padding-{FE_Align}:21px;background-position:top 1px {FE_Align} 4px;background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:clipboard.svg}{/Base64Encode})}

assets/rbi/frontend.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,4 @@ input[type=hidden],script{display:none}
188188
.smicon.export{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:export.svg}{/Base64Encode})}
189189
.smicontxt{padding:0 1px 0 1px}
190190
.fixComCatBtnVert{position:relative;top:3px}
191+
input.clpbrdbtn{padding-{FE_Align}:21px;background-position:top 1px {FE_Align} 4px;background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:clipboard.svg}{/Base64Encode})}

assets/slate/frontend.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,4 @@ input[type=hidden],script{display:none}
191191
.smicon.export{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:export.svg}{/Base64Encode})}
192192
.smicontxt{padding:0 1px 0 1px}
193193
.fixComCatBtnVert{position:relative;top:3px}
194+
input.clpbrdbtn{padding-{FE_Align}:21px;background-position:top 1px {FE_Align} 4px;background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:clipboard.svg}{/Base64Encode})}

0 commit comments

Comments
 (0)