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

Unified Diff: remoting/webapp/main.css

Issue 22006002: Fix scroll-bar behaviour. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed debug log message. Created 7 years, 4 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/client_session.js ('k') | remoting/webapp/main.html » ('j') | 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 e515809460c21b11414de452b578628e27cf9d04..43028fe3a51106c5ddb72ece9555ccd7bab7eaff 100644
--- a/remoting/webapp/main.css
+++ b/remoting/webapp/main.css
@@ -28,7 +28,7 @@ body {
}
/*
-* The "app-v2" class is added to the <body> node by remoting.init if it's
+* The "app-v2" class is added to the <html> node by remoting.init if it's
* running as a V2 app.
*/
body.apps-v2 .apps-v1-only {
@@ -612,12 +612,21 @@ button {
opacity: 0.75;
}
-/* TODO(jamiewalch): crbug.com/252796: Remove this once crbug.com/240772
+/* TODO(jamiewalch): crbug.com/252796: Remove these once crbug.com/240772
* is fixed. */
-.no-scroll {
- overflow: hidden;
+.no-horizontal-scroll {
+ overflow-x: hidden !important;
+}
+
+.no-vertical-scroll {
+ overflow-y: hidden !important;
}
+html.apps-v2.scrollable {
+ overflow: scroll;
+}
+
+
/* TODO(jamiewalch): Reinstate this if we're able to get translations for
* "Why is this safe?" that don't overflow in any language.
#host-setup-dialog {
« no previous file with comments | « remoting/webapp/client_session.js ('k') | remoting/webapp/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698