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

Unified Diff: chrome/browser/resources/sync_promo/sync_promo.css

Issue 8502042: Sync Promo: Fix up focus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: and deleting stale ntp3 resources Created 9 years 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/sync_promo.js ('k') | chrome/browser/resources/sync_promo/sync_promo.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/sync_promo/sync_promo.css
diff --git a/chrome/browser/resources/sync_promo.css b/chrome/browser/resources/sync_promo/sync_promo.css
similarity index 85%
rename from chrome/browser/resources/sync_promo.css
rename to chrome/browser/resources/sync_promo/sync_promo.css
index a7728d54051b5cc7ea090dcc44b33cede6f0304b..8bd5f74028116015f0e5c784c14287cc0ada0f6e 100644
--- a/chrome/browser/resources/sync_promo.css
+++ b/chrome/browser/resources/sync_promo/sync_promo.css
@@ -24,6 +24,21 @@ body {
max-width: 900px;
min-width: 830px;
width: auto;
+ position: relative;
+}
+
+#sync-setup-login > div:first-of-type {
+ position: relative;
+}
+
+/* Clearfix wrapper around the promo information and login. */
Evan Stade 2011/12/05 02:23:37 i don't remember what this is and it's not describ
Dan Beam 2011/12/05 16:45:41 In standard browsers if you float: [ left | right
+#sync-setup-login > div:first-of-type::after {
+ content: " ";
+ display: block;
+ height: 0;
+ overflow: hidden;
+ visibility: hidden;
+ width: 100%;
}
#sync-setup-configure {
@@ -34,12 +49,14 @@ body {
}
#sync-setup-login-promo-column {
- margin-right: 385px;
+ left: 0;
+ position: absolute;
+ width: 444px;
}
html[dir='rtl'] #sync-setup-login-promo-column {
- margin-left: 385px;
- margin-right: 0;
+ left: auto;
+ right: 0;
}
#sync-setup-login-content-column {
« no previous file with comments | « chrome/browser/resources/sync_promo.js ('k') | chrome/browser/resources/sync_promo/sync_promo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698