diff options
author | Wojtek Kosior <koszko@koszko.org> | 2021-09-01 14:14:51 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2021-09-01 14:14:51 +0200 |
commit | 4b59dced912fb9b50ff041c67f0f72cbbad56b6c (patch) | |
tree | b542e0727219f2ab88999459df0cab7a015a2dd6 /html/options.html | |
parent | d85dcc1ea805651797b07f72b64d84764214a3b9 (diff) | |
download | browser-extension-4b59dced912fb9b50ff041c67f0f72cbbad56b6c.tar.gz browser-extension-4b59dced912fb9b50ff041c67f0f72cbbad56b6c.zip |
add styling to settings install(import) dialog
Diffstat (limited to 'html/options.html')
-rw-r--r-- | html/options.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/html/options.html b/html/options.html index 13a8973..085162c 100644 --- a/html/options.html +++ b/html/options.html @@ -89,14 +89,14 @@ background: linear-gradient(#555, #e0f0f0); } - .table_wrapper>.always_scrollbar{ + .table_wrapper.always_scrollbar>* { border-left: solid #454 8px; max-height: 80vh; overflow-y: scroll; } - .table_wrapper .table_wrapper>.always_scrollbar, - .popup_frame .table_wrapper>.always_scrollbar { + .table_wrapper .table_wrapper.always_scrollbar>*, + .popup_frame .table_wrapper.always_scrollbar>* { max-height: 60vh; } @@ -108,7 +108,7 @@ margin: 0 auto; } - tr>td:first-child { + td:first-child { max-width: 70vw; overflow: hidden; } @@ -156,23 +156,23 @@ </head> <body> <template> - <tr id="item_li"> + <tr id="item_li" class="nowrap"> <td></td> <td><div class="button"> Edit </div></td> <td><div class="button"> Remove </div></td> <td><div class="button"> Export </div></td> </tr> - <tr id="bag_component_li"> + <tr id="bag_component_li" class="nowrap"> <td></td> <td><div class="button"> Remove </div></td> </tr> - <tr id="chbx_component_li"> + <tr id="chbx_component_li" class="nowrap"> <td> <input type="checkbox" style="display: inline;"></input> <span></span> </td> </tr> - <tr id="radio_component_li"> + <tr id="radio_component_li" class="nowrap"> <td> <input type="radio" style="display: inline;" name="page_components"></input> <span></span> @@ -336,8 +336,8 @@ <div id="radio_components_window" class="hide popup" position="absolute"> <div class="popup_frame"> - <div class="table_wrapper tight_table has_bottom_line has_upper_line"> - <div class="always_scrollbar"> + <div class="table_wrapper tight_table always_scrollbar has_bottom_line has_upper_line"> + <div> <table> <tbody id="radio_components_ul"> <tr id="radio_component_none_li"> |