diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-09-03 11:57:09 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-09-28 12:54:55 +0200 |
commit | ccf3ce18220f3256a7cf96ed32f26511a5d01337 (patch) | |
tree | dc838c6076ce507b947f352d6b426da4ce1e1271 /src/hydrilla/proxy/web_ui/templates/include | |
parent | 5cdb4c29ea9e736ea5a52483c2e62009c4c7d27e (diff) | |
download | haketilo-hydrilla-ccf3ce18220f3256a7cf96ed32f26511a5d01337.tar.gz haketilo-hydrilla-ccf3ce18220f3256a7cf96ed32f26511a5d01337.zip |
[proxy] improve the look of item lists in web UI
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates/include')
-rw-r--r-- | src/hydrilla/proxy/web_ui/templates/include/item_list_style.css.jinja | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/src/hydrilla/proxy/web_ui/templates/include/item_list_style.css.jinja b/src/hydrilla/proxy/web_ui/templates/include/item_list_style.css.jinja index 54315ed..86ac1b5 100644 --- a/src/hydrilla/proxy/web_ui/templates/include/item_list_style.css.jinja +++ b/src/hydrilla/proxy/web_ui/templates/include/item_list_style.css.jinja @@ -25,14 +25,29 @@ ul#item_list { ul#item_list > li { list-style-type: none; max-width: 100%; - overflow-x: scroll; white-space: nowrap; - margin: 5px; + margin: 0 5px 0 5px; } ul#item_list > li > :only-child { display: block; padding: 5px; - border: 2px solid #999; - border-radius: 5px; + overflow-x: scroll; + border-bottom: 2px solid #999; +} + +ul#item_list > li.entry-line-dashed > :only-child { + border-bottom-style: dashed +} + +ul#item_list > li.entry-line-green > :only-child { + border-color: #4caf50; +} + +ul#item_list > li.entry-line-blue > :only-child { + border-color: #504caf; +} + +ul#item_list > li.entry-line-red > :only-child { + border-color: #af504c; } |