From: Kohei Yoshino Date: Tue, 18 Jun 2019 02:35:10 +0000 (-0400) Subject: Bug 1559830 - Second line in the Requests dropdown is partially cut if there is secur... X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c3135d7e0016b05aa8e0cf19b105fda61065904c;p=thirdparty%2Fbugzilla.git Bug 1559830 - Second line in the Requests dropdown is partially cut if there is secure bug icon --- diff --git a/skins/standard/global.css b/skins/standard/global.css index 5bc2c1c93..c243a4f9c 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -2137,13 +2137,17 @@ table.tabs .clickable_area { } .dropdown-panel .notifications label { - display: -webkit-box; overflow: hidden; max-height: calc(2em * var(--line-height-default)); white-space: normal; - text-overflow: ellipsis; - -webkit-line-clamp: 2; - -webkit-box-orient: vertical; +} + +@supports (-webkit-line-clamp: 2) { + .dropdown-panel .notifications label { + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + } } .dropdown-panel .notifications strong { @@ -2157,9 +2161,9 @@ table.tabs .clickable_area { } .dropdown-panel .notifications .secure .icon { - display: inline; - font-size: 16px; - vertical-align: text-bottom; + width: 16px !important; + font-size: 16px !important; + vertical-align: text-bottom !important; } .dropdown-panel .notifications .secure .icon::before {