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

Unified Diff: chrome/browser/resources/shared/css/chrome_shared.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/shared/css/chrome_shared.css
diff --git a/chrome/browser/resources/shared/css/chrome_shared.css b/chrome/browser/resources/shared/css/chrome_shared.css
index 18def7b59170bb780e42f3293d3b245f9ffe7ae6..fcc177e7fb9afa5fccb4846ef24999abbe90d2ab 100644
--- a/chrome/browser/resources/shared/css/chrome_shared.css
+++ b/chrome/browser/resources/shared/css/chrome_shared.css
@@ -32,12 +32,12 @@ a:active {
}
#main-content {
+ bottom: 0;
display: -webkit-box;
- position: absolute;
left: 0;
+ position: absolute;
right: 0;
top: 0;
- bottom: 0;
}
#navbar {
@@ -45,12 +45,12 @@ a:active {
}
#navbar-container {
- -webkit-border-end: 1px solid #c6c9ce;
+ -webkit-border-end: 1px solid rgb(198, 201, 206);
background-color: #f1f1f1;
- position: fixed;
bottom: 0;
/* We set both left and right for the sake of RTL. */
left: 0;
+ position: fixed;
right: 0;
top: 0;
width: 216px;
@@ -69,6 +69,8 @@ html.hide-menu #navbar-container {
}
.navbar-item {
+ -webkit-padding-end: 24px;
+ -webkit-padding-start: 0;
border-bottom: 1px solid transparent;
border-top: 1px solid transparent;
color: #333;
@@ -76,35 +78,35 @@ html.hide-menu #navbar-container {
display: block;
font-size: 105%;
outline: none;
- padding: 7px 0;
+ padding-bottom: 7px;
+ padding-top: 7px;
text-align: end;
text-shadow: white 0 1px 1px;
- -webkit-padding-end: 24px;
}
.navbar-item:focus {
Evan Stade 2012/04/03 02:59:48 , .navbar-item-selected imo
Dan Beam 2012/04/03 04:15:06 Done.
- border-bottom: 1px solid #8faad9;
- border-top: 1px solid #8faad9;
+ border-bottom: 1px solid rgb(143, 170, 217);
+ border-top: 1px solid rgb(143, 170, 217);
}
.navbar-item-selected {
-webkit-box-shadow: 0 1px 0 #f7f7f7;
- background-color: #bbcee9;
- border-bottom: 1px solid #8faad9;
- border-top: 1px solid #8faad9;
+ background-color: rgb(187, 206, 233);
+ border-bottom: 1px solid rgb(143, 170, 217);
+ border-top: 1px solid rgb(143, 170, 217);
color: black;
- text-shadow: #bbcee9 0 1px 1px;
+ text-shadow: rgb(187, 206, 233) 0 1px 1px;
}
#mainview {
-webkit-box-align: stretch;
-webkit-padding-start: 216px;
+ bottom: 0;
+ left: 0;
margin: 0;
position: absolute;
- left: 0;
right: 0;
top: 0;
- bottom: 0;
z-index: 1;
}
@@ -191,7 +193,7 @@ html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
.page h1 {
-webkit-padding-end: 24px;
-webkit-user-select: none;
- border-bottom: 1px solid #eeeeee;
+ border-bottom: 1px solid #eee;
color: #333;
font-size: 200%;
font-weight: normal;

Powered by Google App Engine
This is Rietveld 408576698