Path: blob/trunk/third_party/closure/goog/css/combobox.css
4058 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/*8* Styles for goog.ui.ComboBox and its derivatives.9*/101112@require './menu';13@require './menuitem';14@require './menuseparator';1516.goog-combobox {17background: #ddd url(//ssl.gstatic.com/closure/button-bg.gif) repeat-x scroll left top;18border: 1px solid #b5b6b5;19font: normal small arial, sans-serif;20}2122.goog-combobox input {23background-color: #fff;24border: 0;25border-right: 1px solid #b5b6b5;26color: #000;27font: normal small arial, sans-serif;28margin: 0;29padding: 0 0 0 2px;30vertical-align: bottom; /* override demo.css */31width: 200px;32}3334.goog-combobox input.label-input-label {35background-color: #fff;36color: #aaa;37}3839.goog-combobox .goog-menu {40margin-top: -1px;41width: 219px; /* input width + button width + 3 * 1px border */42z-index: 1000;43}4445.goog-combobox-button {46cursor: pointer;47display: inline-block;48font-size: 10px;49text-align: center;50width: 16px;51}5253/* IE6 only hack */54* html .goog-combobox-button {55padding: 0 3px;56}575859