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

Unified Diff: remoting/webapp/menu_button.css

Issue 401623004: Add unit-tests for MenuButton and simplify implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added missing file. Created 6 years, 5 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 | « remoting/webapp/html/template_unittest.html ('k') | remoting/webapp/menu_button.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/menu_button.css
diff --git a/remoting/webapp/menu_button.css b/remoting/webapp/menu_button.css
index d20750a9be6717c7d131038f379c648eec47b13d..e53041e7ee2f5dcfa57181f3b4e58d91470ef6f2 100644
--- a/remoting/webapp/menu_button.css
+++ b/remoting/webapp/menu_button.css
@@ -8,7 +8,7 @@
}
.menu-button-activator + ul {
- visibility: hidden;
Jamie 2014/07/18 01:37:18 visibility: hidden doesn't allow for verification
kelvinp 2014/07/18 18:47:39 I think either way is fine. Personally, I prefer
Jamie 2014/07/18 19:46:12 As discussed in person, since showing or hiding th
+ display: none;
position: absolute;
}
@@ -21,7 +21,7 @@
}
.menu-button-activator.active + ul {
- visibility: visible;
+ display: block;
}
.menu-button-activator.active {
« no previous file with comments | « remoting/webapp/html/template_unittest.html ('k') | remoting/webapp/menu_button.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698