| 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..9dcf20cd50d8bdfa5060d2bbee741ec72ca8bd74 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);
|
| 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;
|
| }
|
|
|