aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/web_ui/templates/include
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-09-03 11:57:09 +0200
committerWojtek Kosior <koszko@koszko.org>2022-09-09 13:55:05 +0200
commit22b6538ed828dcc779d3c5179bb3751ea1fe434e (patch)
treeb06f2da3abe26d5f19cadd43b5c55cd4b495f08f /src/hydrilla/proxy/web_ui/templates/include
parent781770b26a6387d7cdd5b3fc1ec56036dc62fc5b (diff)
downloadhaketilo-hydrilla-22b6538ed828dcc779d3c5179bb3751ea1fe434e.tar.gz
haketilo-hydrilla-22b6538ed828dcc779d3c5179bb3751ea1fe434e.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.jinja23
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;
}