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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 -webkit-box-flex: 0; | 229 -webkit-box-flex: 0; |
230 -webkit-transform: scale(0.6); | 230 -webkit-transform: scale(0.6); |
231 background-image: none; | 231 background-image: none; |
232 background-position: center center; | 232 background-position: center center; |
233 display: block; | 233 display: block; |
234 opacity: 0.5; | 234 opacity: 0.5; |
235 vertical-align: middle; | 235 vertical-align: middle; |
236 width: 19px; | 236 width: 19px; |
237 } | 237 } |
238 | 238 |
239 .network-menu-item:hover .network-options-button { | |
240 background-image: url('chrome://theme/IDR_STATUSBAR_EDIT'); | |
241 background-size: 25px; | |
242 } | |
243 | |
244 .network-group > .controlled-setting-indicator, | 239 .network-group > .controlled-setting-indicator, |
245 .network-menu-item > .controlled-setting-indicator { | 240 .network-menu-item > .controlled-setting-indicator { |
246 -webkit-box-flex: 0; | 241 -webkit-box-flex: 0; |
247 -webkit-margin-end: 5px; | 242 -webkit-margin-end: 5px; |
248 display: block; | 243 display: block; |
249 height: 16px; | 244 height: 16px; |
250 margin-top: 9px; | 245 margin-top: 9px; |
251 width: 16px; | 246 width: 16px; |
252 } | 247 } |
253 | 248 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 -webkit-box-flex: 1; | 328 -webkit-box-flex: 1; |
334 color: #555; | 329 color: #555; |
335 display: block; | 330 display: block; |
336 overflow-x: hidden; | 331 overflow-x: hidden; |
337 padding-top: 8px; | 332 padding-top: 8px; |
338 text-overflow: ellipsis; | 333 text-overflow: ellipsis; |
339 vertical-align: middle; | 334 vertical-align: middle; |
340 white-space: nowrap; | 335 white-space: nowrap; |
341 } | 336 } |
342 | 337 |
| 338 .active-network { |
| 339 color: black; |
| 340 font-weight: bold; |
| 341 } |
| 342 |
343 @media (pointer:coarse) { | 343 @media (pointer:coarse) { |
344 .network-menu-item-label { | 344 .network-menu-item-label { |
345 padding-top: 14px; | 345 padding-top: 14px; |
346 } | 346 } |
347 } | 347 } |
348 | 348 |
349 .network-disabled-control { | 349 .network-disabled-control { |
350 color: #999; | 350 color: #999; |
351 } | 351 } |
352 | 352 |
353 .network-menu-header { | |
354 -webkit-padding-start: 36px; | |
355 color: #999; | |
356 padding-bottom: 8px; | |
357 padding-top: 8px; | |
358 } | |
359 | |
360 /* Restrict the size of the networks menu, by limiting the number of | 353 /* Restrict the size of the networks menu, by limiting the number of |
361 visible networks. */ | 354 visible networks. */ |
362 .network-menu-group { | 355 .network-menu-group { |
363 max-height: 192px; | 356 max-height: 192px; |
364 overflow-x: hidden; | 357 overflow-x: hidden; |
365 overflow-y: auto; | 358 overflow-y: auto; |
366 text-overflow: ellipsis; | 359 text-overflow: ellipsis; |
367 } | 360 } |
368 | 361 |
369 @media (pointer:coarse) { | 362 @media (pointer:coarse) { |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 } | 407 } |
415 | 408 |
416 #auto-open-file-types-label { | 409 #auto-open-file-types-label { |
417 padding: 0.45em 0 | 410 padding: 0.45em 0 |
418 } | 411 } |
419 | 412 |
420 .sliding { | 413 .sliding { |
421 -webkit-transition: height 200ms; | 414 -webkit-transition: height 200ms; |
422 overflow-y: hidden; | 415 overflow-y: hidden; |
423 } | 416 } |
OLD | NEW |