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

Unified Diff: chrome/browser/resources/shared/css/tabs.css

Issue 8479042: UI polish for certificate viewer (Closed) Base URL: /usr/local/google/home/bshe/NoTouchChromium/../TouchChromium/src/@trunk
Patch Set: Remove body margins of two internal pages(due to the changes in tabs.css file). Created 9 years, 1 month 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/tabs.css
diff --git a/chrome/browser/resources/shared/css/tabs.css b/chrome/browser/resources/shared/css/tabs.css
index 684d1bdc539fa739ddd1e0cf004eb2f01a75634a..9bb20be0c8e805a5bab3d17a4afc9924ca160881 100644
--- a/chrome/browser/resources/shared/css/tabs.css
+++ b/chrome/browser/resources/shared/css/tabs.css
@@ -8,6 +8,7 @@ tabs {
background: -webkit-linear-gradient(white, rgb(243, 243, 243));
border-bottom: 1px solid rgb(160, 160, 160);
margin: 0;
+ -webkit-padding-start: 8px;
flackr 2011/11/21 20:43:31 nit: Move to top, according to sorting order and e
bshe 2011/11/22 16:26:24 Done.
}
tabs > * {
@@ -25,8 +26,12 @@ tabs > * {
text-align: center;
}
+tabs > :not([selected]) {
+ background: rgba(238, 238, 238, .3);
+}
+
tabs > :not([selected]):hover {
- background: rgba(200, 200, 200, .3);
+ background: rgba(247, 247, 247, .3);
}
tabs > [selected] {
@@ -51,10 +56,8 @@ tabpanels {
-webkit-box-flex: 1;
background: white;
box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
- border: 1px solid rgb(160, 160, 160);
- border-top: 0;
display: -webkit-box;
- padding: 5px;
+ padding: 5px 15px 0px 15px;
}
tabpanels > * {

Powered by Google App Engine
This is Rietveld 408576698