diff options
author | Anton Kikin <a.kikin@tano-systems.com> | 2019-06-28 18:37:30 +0300 |
---|---|---|
committer | Anton Kikin <a.kikin@tano-systems.com> | 2019-06-28 19:04:22 +0300 |
commit | 5d26fec0bf3701f5a0b875bacd0b2f3898449e96 (patch) | |
tree | 7e39755e5bf1324064e678229b74b9649d26002d | |
parent | 0017bc89f23fc6a48d1427a2216bb41b9b339cb2 (diff) |
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 <a.kikin@tano-systems.com>
3 files changed, 3 insertions, 0 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 21a2291e5b..5b7baebdbd 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 8a41e8c0cf..d74077853a 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 26a08be463..d6460532fa 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 { |