| 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 /* TODO(jhawkins): Organize these by page. */ | 5 /* TODO(jhawkins): Organize these by page. */ |
| 6 | 6 |
| 7 #sync-setup-overlay * h4 { | 7 #sync-setup-overlay * h4 { |
| 8 margin: 5px 0; | 8 margin: 15px 0 5px; |
| 9 } | 9 } |
| 10 | 10 |
| 11 #sync-setup-overlay * form { | 11 #sync-setup-overlay * form { |
| 12 -webkit-user-select: none; | 12 -webkit-user-select: none; |
| 13 } | 13 } |
| 14 | 14 |
| 15 #sync-setup-overlay * .content-area { | 15 #sync-setup-overlay * .content-area { |
| 16 padding: 10px 15px; | 16 padding: 10px 15px; |
| 17 } | 17 } |
| 18 | 18 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 } | 73 } |
| 74 | 74 |
| 75 #sync-setup-overlay * a:visited { | 75 #sync-setup-overlay * a:visited { |
| 76 color: rgb(85, 26, 139); | 76 color: rgb(85, 26, 139); |
| 77 } | 77 } |
| 78 | 78 |
| 79 #sync-setup-overlay * a:active { | 79 #sync-setup-overlay * a:active { |
| 80 color: rgb(255, 0, 0); | 80 color: rgb(255, 0, 0); |
| 81 } | 81 } |
| 82 | 82 |
| 83 #sync-setup-overlay * hr { | |
| 84 background-color: #ddd; | |
| 85 border: 0; | |
| 86 height: 1px; | |
| 87 text-align: left; | |
| 88 width: 100%; | |
| 89 } | |
| 90 | |
| 91 #sync-setup-delete-profile { | 83 #sync-setup-delete-profile { |
| 92 margin: 10px 0 0 0; | 84 margin: 10px 0 0 0; |
| 93 } | 85 } |
| 94 | 86 |
| 95 #email-readonly { | 87 #email-readonly { |
| 96 font-size: 15px; | 88 font-size: 15px; |
| 97 height: 29px; | 89 height: 29px; |
| 98 line-height: 29px; | 90 line-height: 29px; |
| 99 margin: 0; | 91 margin: 0; |
| 100 } | 92 } |
| 101 | 93 |
| 102 #encryption-section-message { | 94 #encryption-section-message { |
| 103 color: gray; | 95 color: gray; |
| 104 margin-bottom: 5px; | 96 margin-bottom: 5px; |
| 105 } | 97 } |
| 106 | 98 |
| 107 #basic-encryption-body, | 99 #basic-encryption-body, |
| 108 #full-encryption-body { | 100 #full-encryption-body { |
| 109 display: table; | 101 display: table; |
| 110 } | 102 } |
| 111 | 103 |
| 104 #customize-sync-encryption-new, |
| 105 #personalize-google-services { |
| 106 border-top: 1px solid #ddd; |
| 107 margin-top: 5px; |
| 108 } |
| 109 |
| 110 #personalize-google-services { |
| 111 line-height: 1.6em; |
| 112 } |
| 113 |
| 114 #personalize-google-services .title { |
| 115 align-items: center; |
| 116 display: flex; |
| 117 justify-content: space-between; |
| 118 } |
| 119 |
| 120 #googleg-logo { |
| 121 background-image: url(../../../../ui/webui/resources/images/200-logo_googleg.p
ng); |
| 122 background-size: cover; |
| 123 height: 20px; |
| 124 width: 20px; |
| 125 } |
| 126 |
| 112 #passphrase-input { | 127 #passphrase-input { |
| 113 margin-bottom: 5px; | 128 margin-bottom: 5px; |
| 114 margin-top: 5px; | 129 margin-top: 5px; |
| 115 } | 130 } |
| 116 | 131 |
| 117 #incorrect-passphrase { | 132 #incorrect-passphrase { |
| 118 margin-top: 5px; | 133 margin-top: 5px; |
| 119 } | 134 } |
| 120 | 135 |
| 121 #sync-setup-overlay * .error { | 136 #sync-setup-overlay * .error { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 } | 206 } |
| 192 | 207 |
| 193 html[dir='rtl'] #learn-more-link { | 208 html[dir='rtl'] #learn-more-link { |
| 194 float: left; | 209 float: left; |
| 195 } | 210 } |
| 196 | 211 |
| 197 #customize-link, | 212 #customize-link, |
| 198 #use-default-link { | 213 #use-default-link { |
| 199 -webkit-transition: opacity 250ms; | 214 -webkit-transition: opacity 250ms; |
| 200 } | 215 } |
| OLD | NEW |