Skip to content

Commit af3a538

Browse files
committed
Cache data page update.
Changelog excerpt: - 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.
1 parent 62423c8 commit af3a538

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+248
-86
lines changed

Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,3 +227,4 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
227227

228228
#### Other changes.
229229
- [2026.01.14]: Added aria expanded and controls attributes to some of the clickable menus at the front-end.
230+
- [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.

assets/bluemetal/frontend.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,3 +179,7 @@ input[type=hidden],script{display:none}
179179
}
180180
@keyframes fmDeleteAnim{0%{opacity:1}100%{filter:brightness(0);opacity:0;display:none}}
181181
.fmDelete{transform-origin:top;animation:fmDeleteAnim .5s cubic-bezier(0,0,.1,1);animation-iteration-count:1;animation-fill-mode:forwards}
182+
.smicon{display:inline-block;background-repeat:no-repeat;position:relative;top:1px;width:12px;height:12px}
183+
.smicon.red{filter:invert(76%) sepia(43%) saturate(275%) hue-rotate(-25deg) brightness(101%) contrast(102%)}
184+
.smicon.delete{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:delete.svg}{/Base64Encode})}
185+
.smicontxt{padding:0 1px 0 1px}

assets/default/_cache.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<div class="mainbox">
22
<nav class="big">
3-
{nav}
4-
</nav>
3+
{nav} </nav>
54
<main class="extend">
65
<div class="col">
76
{CacheData}

assets/default/_home.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<div class="mainbox">
22
<nav class="extend">
3-
{nav}
4-
</nav>
3+
{nav} </nav>
54
<main class="big"><div class="s">
65
{Some useful links}
76
<hr />

assets/default/_quarantine.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<div class="mainbox">
22
<nav class="big">
3-
{nav}
4-
</nav>
3+
{nav} </nav>
54
<main class="extend">
65
<div class="col">
76
<div class="s flexstretch">{state_msg}</div>

assets/default/_siginfo.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<div class="mainbox">
22
<nav class="big">
3-
{nav}
4-
</nav>
3+
{nav} </nav>
54
<main class="extend">
65
<div class="col">
76
<div class="s flexstretch">{ProcTime}</div>

assets/default/_upload_test.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<div class="mainbox">
22
<nav class="big">
3-
{nav}
4-
</nav>
3+
{nav} </nav>
54
<main class="extend">
65
<div class="col">
76
<form id="upload_fields" enctype="multipart/form-data" name="upload" action="" method="post"><input type="hidden" name="MAX_FILE_SIZE" value="{MaxFilesize}" />

assets/default/delete.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/default/frontend.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,7 @@ input[type=hidden],script{display:none}
182182
}
183183
@keyframes fmDeleteAnim{0%{opacity:1}100%{filter:brightness(0);opacity:0;display:none}}
184184
.fmDelete{transform-origin:top;animation:fmDeleteAnim .5s cubic-bezier(0,0,.1,1);animation-iteration-count:1;animation-fill-mode:forwards}
185+
.smicon{display:inline-block;background-repeat:no-repeat;position:relative;top:1px;width:12px;height:12px}
186+
.smicon.red{filter:invert(12%) sepia(86%) saturate(7400%) hue-rotate(2deg) brightness(109%) contrast(114%)}
187+
.smicon.delete{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:delete.svg}{/Base64Encode})}
188+
.smicontxt{padding:0 1px 0 1px}

assets/fullmoon/frontend.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,3 +176,7 @@ input[type=checkbox],input[type=radio]{accent-color:#cca}
176176
}
177177
@keyframes fmDeleteAnim{0%{opacity:1}100%{filter:brightness(0);opacity:0;display:none}}
178178
.fmDelete{transform-origin:top;animation:fmDeleteAnim .5s cubic-bezier(0,0,.1,1);animation-iteration-count:1;animation-fill-mode:forwards}
179+
.smicon{display:inline-block;background-repeat:no-repeat;position:relative;top:1px;width:12px;height:12px}
180+
.smicon.red{filter:invert(90%) sepia(63%) saturate(4751%) hue-rotate(-59deg) brightness(96%) contrast(87%)}
181+
.smicon.delete{background-image:url(data:image/svg+xml;base64,{Base64Encode}{Asset:delete.svg}{/Base64Encode})}
182+
.smicontxt{padding:0 1px 0 1px}

0 commit comments

Comments
 (0)