diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-10-28 21:23:37 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-10-28 21:23:37 +0200 |
commit | f0468bdf86c1311811fda0a0c340296e62b8f64b (patch) | |
tree | 5396a9498e837a66f839378047652db195a1550e /src | |
parent | 43ed7392cdfc734a4304284906b9d0d503381841 (diff) | |
download | haketilo-hydrilla-f0468bdf86c1311811fda0a0c340296e62b8f64b.tar.gz haketilo-hydrilla-f0468bdf86c1311811fda0a0c340296e62b8f64b.zip |
[proxy] don't add scrollbars when not strictly needed
Diffstat (limited to 'src')
-rw-r--r-- | src/hydrilla/common_jinja_templates/include/item_list_style.css.jinja | 2 | ||||
-rw-r--r-- | src/hydrilla/proxy/web_ui/templates/hkt_mitm_it_base.html.jinja | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/hydrilla/common_jinja_templates/include/item_list_style.css.jinja b/src/hydrilla/common_jinja_templates/include/item_list_style.css.jinja index 063cd01..66fcf10 100644 --- a/src/hydrilla/common_jinja_templates/include/item_list_style.css.jinja +++ b/src/hydrilla/common_jinja_templates/include/item_list_style.css.jinja @@ -32,7 +32,7 @@ ul.item-list > li { ul.item-list > li > :only-child { display: block; padding: 5px; - overflow-x: scroll; + overflow-x: auto; border-bottom: 2px solid #999; } diff --git a/src/hydrilla/proxy/web_ui/templates/hkt_mitm_it_base.html.jinja b/src/hydrilla/proxy/web_ui/templates/hkt_mitm_it_base.html.jinja index 79d85df..d12dc57 100644 --- a/src/hydrilla/proxy/web_ui/templates/hkt_mitm_it_base.html.jinja +++ b/src/hydrilla/proxy/web_ui/templates/hkt_mitm_it_base.html.jinja @@ -34,7 +34,7 @@ code in a proprietary work, I am not going to enforce this in court. margin: 0; padding: 0; border-bottom: 2px solid #444; - overflow-x: scroll; + overflow-x: auto; } li.nav-entry, li.nav-separator { |