Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Unified Diff: ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css

Issue 972223002: Fix chrome://network CSS for cr-network-icon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use display:block in cr-network-icon instead Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/chromeos/network_ui/network_ui.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css
diff --git a/ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css b/ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css
index 1ba47291cea1697e309ebb62a29f82c0e79f3f72..8c8603e6b4745f441de843b2b29bd835495b4650 100644
--- a/ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css
+++ b/ui/webui/resources/cr_elements/cr_network_icon/cr_network_icon.css
@@ -2,8 +2,10 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
+/* Note: we use display: block here to avoid positioning issues related to
+ the use of overflow: hidden. */
:host {
- display: inline-block;
+ display: block;
height: 50px;
overflow: hidden;
position: relative;
« no previous file with comments | « chrome/browser/resources/chromeos/network_ui/network_ui.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698