Path: blob/trunk/third_party/closure/goog/css/flatmenubutton.css
2868 views
/*1* Copyright 2009 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* Standard styling for buttons created by goog.ui.FlatMenuButtonRenderer.9*10* @author [email protected] (Attila Bodis)11* @author [email protected] (Thierry Le Boulenge)12*/131415.goog-flat-menu-button {16background-color: #fff;17border: 1px solid #c9c9c9;18color: #333;19cursor: pointer;20font: normal 95%;21list-style: none;22margin: 0 2px;23outline: none;24padding: 1px 4px;25position: relative;26text-decoration: none;27vertical-align: middle;28}2930.goog-flat-menu-button-disabled * {31border-color: #ccc;32color: #999;33cursor: default;34}3536.goog-flat-menu-button-hover {37border-color: #9cf #69e #69e #7af !important; /* Hover border wins. */38}3940.goog-flat-menu-button-active {41background-color: #bbb;42background-position: bottom left;43}4445.goog-flat-menu-button-focused {46border-color: #bbb;47}4849.goog-flat-menu-button-caption {50padding-right: 10px;51vertical-align: top;52}5354.goog-flat-menu-button-dropdown {55/* Client apps may override the URL at which they serve the sprite. */56background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -388px 0;57position: absolute;58right: 2px;59top: 0;60vertical-align: top;61width: 7px;62}636465