summaryrefslogtreecommitdiffhomepage
path: root/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-11-27 13:57:32 +0100
committerJo-Philipp Wich <jo@mein.io>2018-11-27 13:58:58 +0100
commit9cd5f6befdbc1011c10da309940fe7efa73f8fc3 (patch)
tree17f4abf951620c7c5c484d87c012364eb7b6325a /themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css
parenta7123c5e6910576bb437eddb2049f20a6a8fd660 (diff)
luci-theme-bootstrap: allow tabmenus to wrap (#2333)
Allow the tab menu line to wrap around on narrow screens to fix the issue reported in PR #2333. Also add the .nowrap utility class to the Bootstrap theme while we're touching it. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css')
-rw-r--r--themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css9
1 files changed, 7 insertions, 2 deletions
diff --git a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css
index 394361ecde..98f6022ca0 100644
--- a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css
+++ b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css
@@ -174,6 +174,10 @@ a:hover {
float: left;
}
+.nowrap {
+ white-space: nowrap;
+}
+
/* Typography.less
* Headings, body text, lists, code, and more for a versatile and durable typography system
* ---------------------------------------------------------------------------------------- */
@@ -1020,8 +1024,9 @@ header .dropdown-menu a.hover,
padding: 0 2px;
list-style: none;
display: flex;
- background: linear-gradient(#ddd 0%, #ddd 100%) repeat-x;
- background-size: 1px 1px;
+ flex-wrap: wrap;
+ background: linear-gradient(#fff 28px, #ddd 28px);
+ background-size: 1px 29px;
background-position: left bottom;
}