diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-05-17 21:18:20 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-05-31 12:11:55 -0300 |
commit | 46297d244e3e0d83bf2dabf2582482c278287f6f (patch) | |
tree | b64d52147abbd9e17205d2bae080181aa40a34d5 /src/static/css | |
parent | 079509cd5b17aedbcec514ee33d63433ead993c4 (diff) |
client: search progress bar
Diffstat (limited to 'src/static/css')
-rw-r--r-- | src/static/css/site.css | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/src/static/css/site.css b/src/static/css/site.css index d094738a..e94484e5 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -510,16 +510,25 @@ summary .group-name { .wiki-search-sidebar-box hr { border-color: var(--primary-color); border-style: none none dotted none; + margin-top: 3px; + margin-bottom: 3px; } -.wiki-search-sidebar-box hr:nth-of-type(1) { - margin-top: 3px; - margin-bottom: 6px; +.wiki-search-progress-container { + padding: 2px 6px 4px 6px; + display: flex; + flex-direction: row; } -.wiki-search-sidebar-box hr:nth-of-type(2) { - margin-top: 6px; - margin-bottom: 0; +.wiki-search-progress-label { + font-size: 0.9em; + font-style: oblique; + cursor: default; + margin-right: 1ch; +} + +.wiki-search-progress-bar { + flex-grow: 1; } .wiki-search-results-container { @@ -945,6 +954,10 @@ li:not(:first-child:last-child) .tooltip, color: var(--page-primary-color); } +progress { + accent-color: var(--primary-color); +} + .content-columns { columns: 2; } |