OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 #manage-profile-overlay { | 5 #manage-profile-overlay { |
6 width: 512px; | 6 width: 512px; |
7 } | 7 } |
8 | 8 |
9 .profile-icon-grid-item { | 9 .profile-icon-grid-item { |
10 height: 31px; | 10 height: 31px; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 max-height: 0; | 57 max-height: 0; |
58 padding: 0 10px; | 58 padding: 0 10px; |
59 } | 59 } |
60 | 60 |
61 #create-profile-icon-grid, | 61 #create-profile-icon-grid, |
62 #manage-profile-icon-grid { | 62 #manage-profile-icon-grid { |
63 background-color: rgba(255, 255, 255, 0.75); | 63 background-color: rgba(255, 255, 255, 0.75); |
64 padding: 2px; | 64 padding: 2px; |
65 } | 65 } |
66 | 66 |
| 67 #create-profile-ok, |
| 68 #manage-profile-ok { |
| 69 border-color: rgba(0, 0, 0, 0.5); |
| 70 } |
| 71 |
67 /* Adds a grey horizontal line below content area. */ | 72 /* Adds a grey horizontal line below content area. */ |
68 #create-profile-content::after, | 73 #create-profile-content::after, |
69 #manage-profile-content::after { | 74 #manage-profile-content::after { |
70 background: #c0c0c0; | 75 background: #c0c0c0; |
71 content: ''; | 76 content: ''; |
72 display: block; | 77 display: block; |
73 height: 1px; | 78 height: 1px; |
74 margin-top: 25px; | 79 margin-top: 25px; |
75 width: 100%; | 80 width: 100%; |
76 } | 81 } |
(...skipping 23 matching lines...) Expand all Loading... |
100 } | 105 } |
101 | 106 |
102 #delete-profile-message { | 107 #delete-profile-message { |
103 -webkit-padding-start: 48px; | 108 -webkit-padding-start: 48px; |
104 background-repeat: no-repeat; | 109 background-repeat: no-repeat; |
105 } | 110 } |
106 | 111 |
107 html[dir='rtl'] #delete-profile-message { | 112 html[dir='rtl'] #delete-profile-message { |
108 background-position: right; | 113 background-position: right; |
109 | 114 |
OLD | NEW |