Chromium Code Reviews| 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 border: none !important; | |
| 11 height: 31px; | 10 height: 31px; |
| 12 margin: 4px 6px; | 11 margin: 4px 6px; |
| 13 padding: 4px; | 12 padding: 4px; |
| 14 width: 38px; | 13 width: 38px; |
| 15 } | 14 } |
| 16 | 15 |
| 17 .profile-icon { | 16 .profile-icon { |
| 18 height: 31px; | 17 height: 31px; |
| 19 width: 38px; | 18 width: 38px; |
| 20 } | 19 } |
| 21 | 20 |
| 21 .profile-name-area { | |
| 22 -webkit-box-align: center; | |
| 23 -webkit-box-orient: horizontal; | |
| 24 -webkit-box-pack: center; | |
| 25 display: -webkit-box; | |
| 26 margin-left: auto; | |
| 27 margin-right: auto; | |
| 28 width: 50%; | |
| 29 } | |
| 30 | |
| 22 #create-profile-name:invalid { | 31 #create-profile-name:invalid { |
| 23 background-color: pink; | 32 background-color: pink; |
| 24 } | 33 } |
| 25 | 34 |
| 26 #manage-profile-name:invalid { | 35 #manage-profile-name:invalid { |
| 27 background-color: pink; | 36 background-color: pink; |
| 28 } | 37 } |
| 29 | 38 |
| 30 #create-profile-error-bubble { | 39 #create-profile-error-bubble { |
| 31 -webkit-transition: max-height 200ms, padding 200ms; | 40 -webkit-transition: max-height 200ms, padding 200ms; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 92 #create-profile-content > :not(:first-child):not(:last-child) { | 101 #create-profile-content > :not(:first-child):not(:last-child) { |
| 93 margin-bottom: 10px; | 102 margin-bottom: 10px; |
| 94 margin-top: 10px; | 103 margin-top: 10px; |
| 95 } | 104 } |
| 96 | 105 |
| 97 #manage-profile-content > :not(:first-child):not(:last-child) { | 106 #manage-profile-content > :not(:first-child):not(:last-child) { |
| 98 margin-bottom: 10px; | 107 margin-bottom: 10px; |
| 99 margin-top: 10px; | 108 margin-top: 10px; |
| 100 } | 109 } |
| 101 | 110 |
| 102 #create-profile-name-div, | 111 #create-profile-separator, |
| 103 #manage-profile-name-div { | 112 #manage-profile-separator { |
| 104 -webkit-box-align: center; | 113 border-top: 1px solid #c0c0c0; |
| 105 -webkit-box-orient: horizontal; | |
| 106 -webkit-box-pack: center; | |
| 107 display: -webkit-box; | |
| 108 margin-left: auto; | 114 margin-left: auto; |
| 109 margin-right: auto; | 115 margin-right: auto; |
| 110 width: 50%; | 116 width: 92%; |
|
James Hawkins
2012/07/31 17:01:07
Why 92%?
Halli
2012/07/31 17:37:05
It looks right to me as the same width as the cont
| |
| 111 } | |
| 112 | |
| 113 #create-profile-name-label, | |
| 114 #manage-profile-name-label { | |
| 115 -webkit-margin-end: 20px; | |
| 116 } | |
| 117 | |
| 118 #create-profile-name, | |
| 119 #manage-profile-name { | |
| 120 -webkit-box-flex: 1; | |
| 121 } | 117 } |
| 122 | 118 |
| 123 .action-area-checkbox-container { | 119 .action-area-checkbox-container { |
| 124 -webkit-box-flex: 1; | 120 -webkit-box-flex: 1; |
| 125 } | 121 } |
| 126 | 122 |
| 127 #delete-profile-message { | 123 #delete-profile-message { |
| 128 -webkit-padding-start: 48px; | 124 -webkit-padding-start: 48px; |
| 129 background-repeat: no-repeat; | 125 background-repeat: no-repeat; |
| 130 } | 126 } |
| 131 | 127 |
| 132 html[dir='rtl'] #delete-profile-message { | 128 html[dir='rtl'] #delete-profile-message { |
| 133 background-position: right; | 129 background-position: right; |
| 134 | 130 |
| OLD | NEW |