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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
94 } | 94 } |
95 | 95 |
96 #create-profile-content > :first-child { | 96 #create-profile-content > :first-child { |
97 margin-bottom: 10px; | 97 margin-bottom: 10px; |
98 } | 98 } |
99 | 99 |
100 #manage-profile-content > :first-child { | 100 #manage-profile-content > :first-child { |
101 margin-bottom: 10px; | 101 margin-bottom: 10px; |
102 } | 102 } |
103 | 103 |
104 #create-profile-content > :nth-last-child(2) { | |
James Hawkins
2012/08/07 01:26:34
Hmm, I don't think I'm a fan of this. Which eleme
Halli
2012/08/07 01:29:07
This is the input area for name. I wanted to just
| |
105 margin-top: -5px; | |
106 } | |
107 | |
108 #manage-profile-content > :nth-last-child(2) { | |
109 margin-top: -5px; | |
110 } | |
111 | |
104 #create-profile-content > :last-child { | 112 #create-profile-content > :last-child { |
105 margin-top: 10px; | 113 margin-top: 10px; |
106 } | 114 } |
107 | 115 |
108 #manage-profile-content > :last-child { | 116 #manage-profile-content > :last-child { |
109 margin-top: 10px; | 117 margin-top: 10px; |
110 } | 118 } |
111 | 119 |
112 #create-profile-content > :not(:first-child):not(:last-child) { | 120 #create-profile-content > :not(:first-child):not(:nth-last-child(-n+2)) { |
113 margin-bottom: 10px; | 121 margin-bottom: 10px; |
114 margin-top: 10px; | 122 margin-top: 10px; |
115 } | 123 } |
116 | 124 |
117 #manage-profile-content > :not(:first-child):not(:last-child) { | 125 #manage-profile-content > :not(:first-child):not(:nth-last-child(-n+2)) { |
118 margin-bottom: 10px; | 126 margin-bottom: 10px; |
119 margin-top: 10px; | 127 margin-top: 10px; |
120 } | 128 } |
121 | 129 |
122 .action-area-checkbox-container { | 130 .action-area-checkbox-container { |
123 -webkit-box-flex: 1; | 131 -webkit-box-flex: 1; |
124 } | 132 } |
125 | 133 |
126 #delete-profile-message { | 134 #delete-profile-message { |
127 -webkit-padding-start: 48px; | 135 -webkit-padding-start: 48px; |
128 background-repeat: no-repeat; | 136 background-repeat: no-repeat; |
129 } | 137 } |
130 | 138 |
131 html[dir='rtl'] #delete-profile-message { | 139 html[dir='rtl'] #delete-profile-message { |
132 background-position: right; | 140 background-position: right; |
133 | 141 |
OLD | NEW |