Path: blob/trunk/third_party/closure/goog/css/combobox.css
2868 views
/*1* Copyright 2007 The Closure Library Authors. All Rights Reserved.2*3* Use of this source code is governed by the Apache License, Version 2.0.4* See the COPYING file for details.5*/67/* Author: [email protected] (Daniel Pupius) */8/* Author: [email protected] (Peter Pallos) */910/* Styles for goog.ui.ComboBox and its derivatives. */111213.goog-combobox {14background: #ddd url(//ssl.gstatic.com/closure/button-bg.gif) repeat-x scroll left top;15border: 1px solid #b5b6b5;16font: normal small arial, sans-serif;17}1819.goog-combobox input {20background-color: #fff;21border: 0;22border-right: 1px solid #b5b6b5;23color: #000;24font: normal small arial, sans-serif;25margin: 0;26padding: 0 0 0 2px;27vertical-align: bottom; /* override demo.css */28width: 200px;29}3031.goog-combobox input.label-input-label {32background-color: #fff;33color: #aaa;34}3536.goog-combobox .goog-menu {37margin-top: -1px;38width: 219px; /* input width + button width + 3 * 1px border */39z-index: 1000;40}4142.goog-combobox-button {43cursor: pointer;44display: inline-block;45font-size: 10px;46text-align: center;47width: 16px;48}4950/* IE6 only hack */51* html .goog-combobox-button {52padding: 0 3px;53}545556