0

Prevent initial display of modal dialogs when loading.

BUG=None
TEST=Manual


Review URL: http://codereview.chromium.org/9611002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125101 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
jamiewalch@chromium.org
2012-03-06 04:04:26 +00:00
parent 3e4d8de9d9
commit 3592ba18ed

@ -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;
}