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-flex: 1; | |
Patrick Dubroy
2014/04/02 14:42:05
We shouldn't mix and match different flexbox specs
Marc Treib
2014/04/03 10:13:32
Done.
| |
92 display: -webkit-flex; | |
93 } | |
94 | |
90 #profiles-list .profile-name { | 95 #profiles-list .profile-name { |
91 -webkit-box-flex: 1; | 96 -webkit-flex-grow: 0; |
97 -webkit-flex-shrink: 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 -webkit-flex-grow: 1; | |
105 -webkit-flex-shrink: 0; | |
106 color: gray; | |
107 margin-left: 5px; | |
108 } | |
109 | |
97 #profiles-list > * { | 110 #profiles-list > * { |
98 height: 40px; | 111 height: 40px; |
99 } | 112 } |
100 | 113 |
101 #profiles-list:focus { | 114 #profiles-list:focus { |
102 border-color: rgb(77, 144, 254); | 115 border-color: rgb(77, 144, 254); |
103 } | 116 } |
104 | 117 |
105 .profile-img { | 118 .profile-img { |
106 height: 31px; | 119 height: 31px; |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
422 } | 435 } |
423 | 436 |
424 #accessibility-autoclick .controlled-setting-with-label { | 437 #accessibility-autoclick .controlled-setting-with-label { |
425 -webkit-box-align: baseline; | 438 -webkit-box-align: baseline; |
426 } | 439 } |
427 | 440 |
428 #accessibility-autoclick label + select { | 441 #accessibility-autoclick label + select { |
429 /* Same as .controlled-setting-with-label > input + span. */ | 442 /* Same as .controlled-setting-with-label > input + span. */ |
430 -webkit-margin-start: 0.6em; | 443 -webkit-margin-start: 0.6em; |
431 } | 444 } |
OLD | NEW |