diff --git a/front/css/app.css b/front/css/app.css index 6a733529..6740bcf2 100755 --- a/front/css/app.css +++ b/front/css/app.css @@ -1145,7 +1145,7 @@ input[readonly] { color: white; } -#dropdownIcon li svg, #dropdownIcon li i{ +#dropdownIcon li svg, #dropdownIcon li i, .dropdownIcon li svg, .dropdownIcon li i, .icon-maxsize svg, .icon-maxsize i{ height: 1.5em !important; } @@ -1280,6 +1280,21 @@ input[readonly] { cursor: pointer; } +.networkNodeTabHeaders +{ + max-width: 200px; + text-overflow: ellipsis; + overflow: hidden; + text-wrap: nowrap; +} + +@media (max-width: 767px) { + + .networkNodeTabHeaders .node-name + { + display: none; + } +} /* ----------------------------------------------------------------- */ /* PLUGINS page */ diff --git a/front/network.php b/front/network.php index 3580f6de..88bcfa86 100755 --- a/front/network.php +++ b/front/network.php @@ -50,10 +50,10 @@ $decoded_icon = base64_decode($icon); $idFromMac = str_replace(":", "_", $node_mac); - $str_tab_header = '
  • + $str_tab_header = '
  • - ' // _id is added so it doesn't conflict with AdminLTE tab behavior - .'
    '.$decoded_icon.'
    '.$node_name.' ' .$str_port.$node_badge. +
    ' // _id is added so it doesn't conflict with AdminLTE tab behavior + .'
    '.$decoded_icon.'
    '.$node_name.'' .$str_port.$node_badge. '
  • '; @@ -464,7 +464,7 @@ -