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

Unified Diff: chrome/browser/resources/gaia_auth/offline.css

Issue 10440061: Remaining style fixes from http://codereview.chromium.org/10443024/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/gaia_auth/offline.css
diff --git a/chrome/browser/resources/gaia_auth/offline.css b/chrome/browser/resources/gaia_auth/offline.css
index d19464c2df030e5ab8a718e03bd7d01f2e064045..614a15a4d80036cf549f68014e847c4949922614 100644
--- a/chrome/browser/resources/gaia_auth/offline.css
+++ b/chrome/browser/resources/gaia_auth/offline.css
@@ -28,16 +28,16 @@ body, html {
position: absolute;
}
.wrapper {
- position: relative;
min-height: 100%;
+ position: relative;
}
.content {
padding: 0 44px;
}
.main {
margin: 0 auto;
- padding-top: 23px;
padding-bottom: 100px;
+ padding-top: 23px;
width: 650px;
}
button, input, select, textarea {
@@ -53,9 +53,9 @@ input[type=url] {
-webkit-box-sizing: border-box;
background: #fff;
border: 1px solid #d9d9d9;
+ border-radius: 1px;
border-top: 1px solid #c0c0c0;
box-sizing: border-box;
- border-radius: 1px;
display: inline-block;
height: 29px;
margin: 0;
@@ -98,22 +98,17 @@ input[type=url][disabled=disabled]:hover {
box-shadow: none;
}
.g-button {
- -ms-transition: all 218ms;
- -o-transition: all 218ms;
-webkit-border-radius: 2px;
-webkit-transition: all 218ms;
-webkit-user-select: none;
- border-radius: 2px;
background-color: #f5f5f5;
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));
background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);
- background-image: -ms-linear-gradient(top,#f5f5f5,#f1f1f1);
- background-image: -o-linear-gradient(top,#f5f5f5,#f1f1f1);
background-image: linear-gradient(top,#f5f5f5,#f1f1f1);
border: 1px solid rgba(0,0,0,0.1);
- display: inline-block;
+ border-radius: 2px;
color: #555;
cursor: default;
+ display: inline-block;
font-size: 11px;
font-weight: bold;
height: 27px;
@@ -135,22 +130,17 @@ input[type=submit].g-button {
vertical-align: bottom;
}
*+html button.g-button,
- *+html input[type=submit].g-button {
+*+html input[type=submit].g-button {
overflow: visible;
csilv 2012/05/25 23:39:19 nit: indent 134 by two spaces.
zel 2012/05/25 23:46:43 Done.
}
.g-button:hover {
- -ms-transition: all 0ms;
- -o-transition: all 0ms;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
-webkit-transition: all 0ms;
background-color: #f8f8f8;
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));
background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
- background-image: -ms-linear-gradient(top,#f8f8f8,#f1f1f1);
- background-image: -o-linear-gradient(top,#f8f8f8,#f1f1f1);
background-image: linear-gradient(top,#f8f8f8,#f1f1f1);
- box-shadow: 0 1px 1px rgba(0,0,0,0.1);
border: 1px solid #c6c6c6;
+ box-shadow: 0 1px 1px rgba(0,0,0,0.1);
color: #333;
text-decoration: none;
transition: all 0ms;
@@ -158,10 +148,7 @@ input[type=submit].g-button {
.g-button:active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
background-color: #f6f6f6;
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f6f6f6),to(#f1f1f1));
background-image: -webkit-linear-gradient(top,#f6f6f6,#f1f1f1);
- background-image: -ms-linear-gradient(top,#f6f6f6,#f1f1f1);
- background-image: -o-linear-gradient(top,#f6f6f6,#f1f1f1);
background-image: linear-gradient(top,#f6f6f6,#f1f1f1);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
@@ -181,10 +168,7 @@ input[type=submit].g-button {
}
.g-button-submit:hover {
background-color: #357ae8;
- background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));
background-image: -webkit-linear-gradient(top,#4d90fe,#357ae8);
- background-image: -ms-linear-gradient(top,#4d90fe,#357ae8);
- background-image: -o-linear-gradient(top,#4d90fe,#357ae8);
background-image: linear-gradient(top,#4d90fe,#357ae8);
border: 1px solid #2f5bb7;
color: #fff;

Powered by Google App Engine
This is Rietveld 408576698