Chromium Code Reviews| Index: chrome/browser/resources/ntp4/apps_page.css |
| diff --git a/chrome/browser/resources/ntp4/apps_page.css b/chrome/browser/resources/ntp4/apps_page.css |
| index dbea2ba6480dfe78b00f9bbc2ca5a6bc8579ea5e..673c44568fb730708b86c710a02d3c0fdf48a585 100644 |
| --- a/chrome/browser/resources/ntp4/apps_page.css |
| +++ b/chrome/browser/resources/ntp4/apps_page.css |
| @@ -99,3 +99,69 @@ |
| .app .invisible { |
| visibility: hidden; |
| } |
| + |
| +.app-launcher-promo { |
| + background-color: white; |
| + border: 1px solid lightgray; |
| + border-bottom-width: 3px; |
| + border-radius: 2px; |
| + border-top-width: 2px; |
| + bottom: 90px; |
| + height: 120px; |
| + left: 50%; |
| + margin-left: -300px; |
| + position: fixed; |
| + width: 600px; |
| +} |
| + |
| +.app-launcher-promo > .close-button { |
| + position: absolute; |
| + right: 10px; |
| + top: 10px; |
| + width: 14px; |
| +} |
| + |
| +.apps-promo-text { |
| + color: #222; |
| + font: 16px normal Arial, Helvetica, sans-serif; |
|
arv (Not doing code reviews)
2013/03/25 15:04:38
Why does the font need to be reset? It is usually
MAD
2013/03/25 15:32:24
You mean set the font on the outer div and inherit
arv (Not doing code reviews)
2013/03/26 14:02:39
The font is already set on the body.
|
| + left: 30px; |
| + line-height: 24px; |
| + position: absolute; |
| + top: 30px; |
| +} |
| + |
| +.apps-promo-learn-more { |
| + background-color: rgb(77, 144, 254); |
| + border: 1px solid rgb(47, 91, 183); |
| + border-radius: 2px; |
| + box-shadow: rgba(0, 0, 0, 0.0980392) 0 1px 1px 0; |
|
arv (Not doing code reviews)
2013/03/25 15:04:38
in case 0.0980391 is too dark?
MAD
2013/03/25 15:32:24
I copied this from the internal style recommendati
arv (Not doing code reviews)
2013/03/26 14:02:39
I just thought it really strange that they it is n
|
| + color: white; |
| + cursor: default; |
| + font: normal bold 11px Arial, Helvetica, sans-serif; |
| + height: 27px; |
| + left: 30px; |
| + line-height: 27px; |
| + margin: 0; |
|
arv (Not doing code reviews)
2013/03/25 15:04:38
why is this needed?
MAD
2013/03/25 15:32:24
Again, copied from internal styling... I don't min
arv (Not doing code reviews)
2013/03/26 14:02:39
The goal is to not have anything that is not neede
|
| + outline-color: white; |
|
arv (Not doing code reviews)
2013/03/25 15:04:38
Can't you do "outline: 0 none white"?
Which makes
MAD
2013/03/25 15:32:24
Done.
|
| + outline-style: none; |
| + outline-width: 0; |
| + padding: 0 8px; |
| + position: absolute; |
| + text-align: center; |
| + text-decoration: none; |
| + top: 70px; |
| + vertical-align: baseline; |
|
arv (Not doing code reviews)
2013/03/25 15:04:38
baseline is the default, isn't it?
I don't unders
MAD
2013/03/25 15:32:24
Done.
|
| + width: 90px; |
| +} |
| + |
| +.apps-promo-learn-more:hover { |
| + background-image: -webkit-linear-gradient( |
| + top, rgb(77, 144, 254), rgb(53, 122, 232)); |
| + border: 1px solid rgb(47, 91, 183); |
| +} |
| + |
| +.app-launcher-promo > img { |
| + bottom: 0; |
| + position: absolute; |
| + right: 30px; |
| +} |