summaryrefslogtreecommitdiffstats
path: root/ogcp/static/css
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-06-13 12:29:21 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-06-14 09:25:17 +0200
commit37ae1bc5a218d0901431f6ab319f766b105c0773 (patch)
tree3568f928658cbf5bd9c3a6fdbf6b5180d84f3a9f /ogcp/static/css
parent272a5067ad6bc4a9b5e4a401ea7625e71d6914af (diff)
ogcp: add disclosure widget to sidebar
Add cache buster to soleta.css in base.html to have control over cache expirity. Bump soleta.css version to ensure browser does not used older (cached) version. Add CSS rules to show a disclosure widget in the sidebar. Show center checkboxes as disabled in the commands view sidebar for visual consistency. Add class "collapsed" to the proper HTML components to keep a proper state on page reload.
Diffstat (limited to 'ogcp/static/css')
-rw-r--r--ogcp/static/css/soleta.css15
1 files changed, 15 insertions, 0 deletions
diff --git a/ogcp/static/css/soleta.css b/ogcp/static/css/soleta.css
index 6a0a850..7009abb 100644
--- a/ogcp/static/css/soleta.css
+++ b/ogcp/static/css/soleta.css
@@ -61,3 +61,18 @@ html, body {
#dhcpd_conf {
height: 25rem;
}
+
+a.nav-link.collapsed:not(.disabled)[data-toggle="collapse"]::before {
+ content: "▶";
+ position: absolute;
+ left: -15px;
+ font-size: 0.7em;
+}
+
+a.nav-link:not(.collapsed):not(.disabled)[data-toggle="collapse"]::before {
+ content: "▶";
+ position: absolute;
+ left: -15px;
+ transform: rotate(90deg);
+ font-size: 0.7em;
+}