From 5d26fec0bf3701f5a0b875bacd0b2f3898449e96 Mon Sep 17 00:00:00 2001 From: Anton Kikin Date: Fri, 28 Jun 2019 18:37:30 +0300 Subject: [PATCH] Fix a overview page style issue for various themes Fixed a overview page style issue with interface boxes for bootstrap, material and rosy themes. The issue only appears in the Chrome browser and lies in the fact that the block with the device name and MAC address gets out of the interface block. Signed-off-by: Anton Kikin --- .../htdocs/luci-static/bootstrap/cascade.css | 1 + .../luci-theme-material/htdocs/luci-static/material/cascade.css | 1 + themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css | 1 + 3 files changed, 3 insertions(+) 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 21a2291e5..5b7baebdb 100644 --- a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css +++ b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css @@ -1985,6 +1985,7 @@ table table td, .network-status-table .ifacebox-body > span { flex: 10 10 auto; + height: 100%; } .network-status-table .ifacebox-body > div { diff --git a/themes/luci-theme-material/htdocs/luci-static/material/cascade.css b/themes/luci-theme-material/htdocs/luci-static/material/cascade.css index 8a41e8c0c..d74077853 100644 --- a/themes/luci-theme-material/htdocs/luci-static/material/cascade.css +++ b/themes/luci-theme-material/htdocs/luci-static/material/cascade.css @@ -1776,6 +1776,7 @@ td > .ifacebadge, .network-status-table .ifacebox-body > span { flex: 10 10 auto; + height: 100%; } .network-status-table .ifacebox-body > div { diff --git a/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css b/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css index 26a08be46..d6460532f 100644 --- a/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css +++ b/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css @@ -1632,6 +1632,7 @@ td > .ifacebadge, .network-status-table .ifacebox-body > span { flex: 10 10 auto; font-size: 12px; + height: 100%; } .network-status-table .ifacebox-body > div { -- 2.25.1