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

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

Issue 9455078: Simplify the incognito NTP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Dropping Android bits, rebasing onto trunk after ~2 months. :/ Created 8 years, 8 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/incognito_tab.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/incognito_tab.css
diff --git a/chrome/browser/resources/incognito_tab.css b/chrome/browser/resources/incognito_tab.css
index 19f95152a45ab5c05cc5b5cea9d0f69906eff782..36752b4a91fd11287246be87792b4af0bab4581d 100644
--- a/chrome/browser/resources/incognito_tab.css
+++ b/chrome/browser/resources/incognito_tab.css
@@ -9,39 +9,40 @@ body {
.icon {
-webkit-margin-end: 3px;
-webkit-margin-start: 6px;
+ position: absolute;
+ top: -7px;
}
html[dir='ltr'] .icon {
-webkit-transform: scaleX(-1);
- float: right;
+ left: auto;
+ right: 10px;
}
html[dir='rtl'] .icon {
- float: left;
+ left: 10px;
+ right: auto;
}
.content {
- background-color: #eee;
+ background-color: #eaeaea;
+ border: 1px solid #d9d9d9;
border-radius: 5px;
+ box-shadow: 0 3px 5px rgba(0,0,0,0.25);
Evan Stade 2012/04/24 20:42:11 spaces
color: black;
margin-left: auto;
margin-right: auto;
margin-top: 66px;
max-width: 600px;
- padding: 10px;
+ padding: 10px 10px 0;
+ position: relative;
}
-.extensions-message {
- -webkit-padding-start: 39px;
- margin-top: 15px;
- position: relative;
+h1 {
+ font-size: 1.25em;
+ margin: 0;
}
-.extension-icon {
- left: 0;
- margin-top: -15px;
- position: absolute;
- right: 0;
- top: 50%;
- width: 30px;
+p {
+ margin: 1em 0;
}
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/incognito_tab.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698