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 #change-home-page-section { | 5 #change-home-page-section { |
6 margin-left: 30px; | 6 margin-left: 30px; |
7 } | 7 } |
8 | 8 |
9 #home-page-url { | 9 #home-page-url { |
10 display: inline-block; | 10 display: inline-block; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 | 80 |
81 #sync-buttons { | 81 #sync-buttons { |
82 clear: both; | 82 clear: both; |
83 } | 83 } |
84 | 84 |
85 #profiles-list { | 85 #profiles-list { |
86 margin-bottom: 10px; | 86 margin-bottom: 10px; |
87 min-height: 0; | 87 min-height: 0; |
88 } | 88 } |
89 | 89 |
| 90 #profiles-list .profile-container { |
| 91 -webkit-box-align: center; |
| 92 display: -webkit-box; |
| 93 max-width: 100%; |
| 94 } |
| 95 |
90 #profiles-list .profile-name { | 96 #profiles-list .profile-name { |
91 -webkit-box-flex: 1; | 97 -webkit-box-flex: 1; |
92 overflow: hidden; | 98 overflow: hidden; |
93 text-overflow: ellipsis; | 99 text-overflow: ellipsis; |
94 white-space: nowrap; | 100 white-space: nowrap; |
95 } | 101 } |
96 | 102 |
| 103 #profiles-list .profile-supervised { |
| 104 color: #999; |
| 105 margin-left: 5px; |
| 106 } |
| 107 |
97 #profiles-list > * { | 108 #profiles-list > * { |
98 height: 40px; | 109 height: 40px; |
99 } | 110 } |
100 | 111 |
101 #profiles-list:focus { | 112 #profiles-list:focus { |
102 border-color: rgb(77, 144, 254); | 113 border-color: rgb(77, 144, 254); |
103 } | 114 } |
104 | 115 |
105 .profile-img { | 116 .profile-img { |
106 height: 31px; | 117 height: 31px; |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 } | 433 } |
423 | 434 |
424 #accessibility-autoclick .controlled-setting-with-label { | 435 #accessibility-autoclick .controlled-setting-with-label { |
425 -webkit-box-align: baseline; | 436 -webkit-box-align: baseline; |
426 } | 437 } |
427 | 438 |
428 #accessibility-autoclick label + select { | 439 #accessibility-autoclick label + select { |
429 /* Same as .controlled-setting-with-label > input + span. */ | 440 /* Same as .controlled-setting-with-label > input + span. */ |
430 -webkit-margin-start: 0.6em; | 441 -webkit-margin-start: 0.6em; |
431 } | 442 } |
OLD | NEW |