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

Unified Diff: remoting/webapp/main.css

Issue 9611002: Prevent initial display of modal dialogs when loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/main.css
diff --git a/remoting/webapp/main.css b/remoting/webapp/main.css
index 9f551570d0302cfc589eb4939935653f851069d2..08e464ed2044987450a2d4924ea34e36e9865050 100644
--- a/remoting/webapp/main.css
+++ b/remoting/webapp/main.css
@@ -476,4 +476,12 @@ button {
* {
box-sizing: border-box;
-}
+}
+
+/*
+ * Setting hidden on elements that match some rule overriding 'display' doesn't
+ * do what you would expect unless this is made explicit (and !important).
+ */
+[hidden] {
+ display: none !important;
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698