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 3 * found in the LICENSE file. */ 4 5.buttonbar button.combobutton { 6 -webkit-box-align: stretch; 7 display: -webkit-box; 8} 9 10.buttonbar .combobutton > .action { 11 background-position: left center; 12 background-repeat: no-repeat; 13 background-size: 16px 16px; 14 padding-left: 21px; 15} 16 17.buttonbar .combobutton > .trigger { 18 border-left: solid 1px #dcdcdc; 19 margin-left: 8px; 20 margin-right: -8px; 21 width: 22px; 22} 23 24.buttonbar .combobutton:not([multiple]) > .trigger { 25 display: none; 26} 27 28.buttonbar .combobutton > div > span.disclosureindicator { 29 -webkit-transform: rotate(90deg); 30} 31 32.buttonbar .combobutton[hidden] { 33 display: none; 34} 35