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

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

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removing .py files Created 8 years, 9 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
Index: chrome/browser/resources/sync_setup_overlay.css
diff --git a/chrome/browser/resources/sync_setup_overlay.css b/chrome/browser/resources/sync_setup_overlay.css
index ac07776d2c4dcd2b9b1bf2b0ef1f6c22d243bb45..ad44f0743776ff72248352dc6fde9377f5de5ad6 100644
--- a/chrome/browser/resources/sync_setup_overlay.css
+++ b/chrome/browser/resources/sync_setup_overlay.css
@@ -37,8 +37,8 @@
}
#sync-existing-passphrase-container {
- background: #fff29e;
- border: 1px solid #d4cdad;
+ background: rgb(255, 242, 158);
+ border: 1px solid rgb(212, 205, 173);
padding: 10px;
}
@@ -65,15 +65,15 @@
}
#sync-setup-overlay * a:link {
- color: #00c;
+ color: rgb(0, 0, 204);
}
#sync-setup-overlay * a:visited {
- color: #551a8b;
+ color: rgb(85, 26, 139);
}
#sync-setup-overlay * a:active {
- color: #f00;
+ color: rgb(255, 0, 0);
}
#sync-setup-overlay * hr {
@@ -108,8 +108,8 @@
}
#passphrase-input {
- margin-top: 5px;
margin-bottom: 5px;
+ margin-top: 5px;
}
#incorrect-passphrase {
@@ -121,15 +121,15 @@
}
.overlay-warning {
- position: absolute;
- left: 25px;
- right: 25px;
- top: 100px;
background: white;
border: 2px solid #888;
border-radius: 8px;
- padding: 15px;
box-shadow: 0.2em 0.2em 0.5em #888;
+ left: 25px;
+ padding: 15px;
+ position: absolute;
+ right: 25px;
+ top: 100px;
}
#cancel-warning-header {
@@ -138,9 +138,9 @@
}
.overlay-warning input {
- margin-top: 12px;
float: right;
margin-left: 5px;
+ margin-top: 12px;
}
#sync-passphrase-warning {
@@ -152,8 +152,8 @@
}
#captcha-div {
- border: 1px solid #e5e5e5;
background: #fff;
Evan Stade 2012/04/03 02:59:48 white
Dan Beam 2012/04/03 04:15:06 Done.
+ border: 1px solid #e5e5e5;
margin: 0 0 1.5em;
overflow: hidden;
padding: 1em 1em 0;
@@ -181,8 +181,8 @@
#top-blurb-error {
-webkit-transition: margin-top 330ms ease-out, opacity 660ms ease-out;
- background: #f9edbe;
- border: 1px solid #f0c36d;
+ background: rgb(249, 237, 190);
+ border: 1px solid rgb(240, 195, 109);
display: block;
font-weight: bold;
line-height: 1.5em;
@@ -232,14 +232,14 @@
}
.sync-configuration-error {
- width: 80%;
+ background-color: rgb(238, 185, 57);
+ border-radius: 4px;
+ font-weight: bold;
margin-left: auto;
margin-right: auto;
- text-align: center;
padding: 1px 10px;
- background-color: #eeb939;
- border-radius: 4px;
- font-weight: bold;
+ text-align: center;
+ width: 80%;
}
#learn-more-link {
@@ -250,7 +250,8 @@ html[dir='rtl'] #learn-more-link {
float: left;
}
-#customize-link, #use-default-link {
+#customize-link,
+#use-default-link {
-webkit-transition: opacity 250ms;
}
@@ -302,8 +303,9 @@ html[dir='rtl'] #signin-header-logo {
.signin-box input[type=submit] {
-webkit-transition: all 218ms;
-webkit-user-select: none;
- background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
- border: 1px solid #3079ed;
+ background-image: -webkit-linear-gradient(top, rgb(77, 144, 254),
+ rgb(71, 135, 237));
+ border: 1px solid rgb(48, 121, 237);
border-radius: 2px;
color: #fff;
Evan Stade 2012/04/03 02:59:48 white
Dan Beam 2012/04/03 04:15:06 Done.
display: inline-block;
@@ -323,14 +325,15 @@ html[dir='rtl'] .signin-box input[type=submit] {
.signin-box input[type=submit]:hover {
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
-webkit-transition: all 0;
- background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8);
- border: 1px solid #2f5bb7;
+ background-image: -webkit-linear-gradient(top, rgb(77, 144, 254),
Evan Stade 2012/04/03 02:59:48 why is this necessary to repeat?
Dan Beam 2012/04/03 04:15:06 don't know
Evan Stade 2012/04/03 23:57:27 oh, it's not repeating. The second value is differ
+ rgb(53, 122, 232));
+ border: 1px solid rgb(47, 91, 183);
Evan Stade 2012/04/03 02:59:48 you need only change border-color
Dan Beam 2012/04/03 04:15:06 Done.
color: #fff;
}
.signin-box input[type=submit]:focus {
-webkit-box-shadow: inset 0 0 0 1px #fff;
- border: 1px solid #4d90fe;
+ border: 1px solid rgb(77, 144, 254);
Evan Stade 2012/04/03 02:59:48 ditto
Dan Beam 2012/04/03 04:15:06 Done.
outline: none;
z-index: 4 !important;
}
@@ -348,8 +351,8 @@ html[dir='rtl'] .signin-box input[type=submit] {
.signin-box input[type=submit][disabled]:hover,
.signin-box input[type=submit][disabled]:active {
-webkit-box-shadow: none;
- background-color: #4d90fe;
- border: 1px solid #3079ed;
+ background-color: rgb(77, 144, 254);
+ border: 1px solid rgb(48, 121, 237);
color: #fff;
Evan Stade 2012/04/03 02:59:48 white
Dan Beam 2012/04/03 04:15:06 Done.
opacity: 0.5;
}
@@ -390,7 +393,7 @@ html[dir='rtl'] .signin-box input[type=password] {
.signin-box input[type=text]:focus,
.signin-box input[type=password]:focus {
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
- border: 1px solid #4d90fe;
+ border: 1px solid rgb(77, 144, 254);
Evan Stade 2012/04/03 23:57:27 only change border-color
Dan Beam 2012/04/04 00:54:49 Done.
outline: none;
}
@@ -410,12 +413,12 @@ html[dir='rtl'] .signin-box input[type=password] {
/* Sign in links. */
.signin-box .account-link {
- color: #15c !important;
+ color: rgb(17, 85, 204) !important;
text-decoration: none;
}
.signin-box .account-link:visited {
- color: #61c !important;
+ color: rgb(102, 17, 204) !important;
text-decoration: none;
}
@@ -424,7 +427,7 @@ html[dir='rtl'] .signin-box input[type=password] {
}
.signin-box .account-link:active {
- color: #d14836 !important;
+ color: rgb(209, 72, 54) !important;
text-decoration: underline;
}
@@ -455,7 +458,7 @@ html[dir='rtl'] .signin-box .throbber {
}
.signin-box .errormsg {
- color: #dd4b39 !important;
+ color: rgb(221, 75, 57) !important;
font-size: 13px !important;
line-height: 17px;
margin: 0.5em 0 1.5em;
@@ -463,7 +466,7 @@ html[dir='rtl'] .signin-box .throbber {
.signin-box .help-link {
-webkit-border-radius: 1em;
- background: #dd4b39;
+ background: rgb(221, 75, 57);
color: #fff !important;
Evan Stade 2012/04/03 02:59:48 white
Dan Beam 2012/04/03 04:15:06 Done.
display: inline-block;
font-weight: bold;

Powered by Google App Engine
This is Rietveld 408576698