]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1559830 - Second line in the Requests dropdown is partially cut if there is secur...
authorKohei Yoshino <kohei.yoshino@gmail.com>
Tue, 18 Jun 2019 02:35:10 +0000 (22:35 -0400)
committerGitHub <noreply@github.com>
Tue, 18 Jun 2019 02:35:10 +0000 (22:35 -0400)
skins/standard/global.css

index 5bc2c1c93f440d4c864a38880bc50d0127b69ae1..c243a4f9c4f78ef8b8a4db1347e164a47cb11b11 100644 (file)
@@ -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 {