OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
5 #no-destinations-promo { | |
6 -webkit-user-select: none; | |
7 z-index: 2; | |
8 } | |
9 | |
10 #no-destinations-promo .page { | |
11 padding: 20px; | |
12 width: 640px; | |
ydolgov1
2012/10/16 21:44:54
Just curious why does it have fixed width?
Toscano
2012/10/16 22:24:14
Part of the design spec for dialogs in Chrome web-
| |
13 } | |
14 | |
15 #no-destinations-promo .dialog-title { | |
16 font-size: 16pt; | |
17 margin-bottom: 18px; | |
18 } | |
19 | |
20 #no-destinations-promo p { | |
21 margin-bottom: 14px; | |
22 } | |
23 | |
24 #no-destinations-promo .gcp-logo { | |
25 -webkit-margin-end: 12px; | |
26 float: left; | |
27 } | |
28 | |
29 [dir='rtl'] #no-destinations-promo .gcp-logo { | |
30 float: right; | |
31 } | |
32 | |
33 #no-destinations-promo .text-content { | |
34 -webkit-box-flex: 1; | |
35 font-size: 10pt; | |
36 margin-bottom: 18px; | |
37 } | |
38 | |
39 #no-destinations-promo .close-button { | |
40 background-image: url(chrome://resources/images/x.png); | |
41 background-position: center; | |
42 background-repeat: no-repeat; | |
43 height: 16px; | |
44 right: 14px; | |
45 top: 14px; | |
46 width: 16px; | |
47 } | |
48 | |
49 #no-destinations-promo .close-button:hover { | |
50 background-image: url(chrome://resources/images/x-hover.png); | |
51 } | |
52 | |
53 #no-destinations-promo .action-button-container { | |
54 text-align: right; | |
55 } | |
OLD | NEW |