Path: blob/trunk/third_party/closure/goog/css/menubutton.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.MenuButtonRenderer.9*10* @author [email protected] (Attila Bodis)11*/121314/* State: resting. */15.goog-menu-button {16/* Client apps may override the URL at which they serve the image. */17background: #ddd url(//ssl.gstatic.com/editor/button-bg.png) repeat-x top left;18border: 0;19color: #000;20cursor: pointer;21list-style: none;22margin: 2px;23outline: none;24padding: 0;25text-decoration: none;26vertical-align: middle;27}2829/* Pseudo-rounded corners. */30.goog-menu-button-outer-box,31.goog-menu-button-inner-box {32border-style: solid;33border-color: #aaa;34vertical-align: top;35}36.goog-menu-button-outer-box {37margin: 0;38border-width: 1px 0;39padding: 0;40}41.goog-menu-button-inner-box {42margin: 0 -1px;43border-width: 0 1px;44padding: 3px 4px;45}4647/* Pre-IE7 IE hack; ignored by IE7 and all non-IE browsers. */48* html .goog-menu-button-inner-box {49/* IE6 needs to have the box shifted to make the borders line up. */50left: -1px;51}5253/* Pre-IE7 BiDi fixes. */54* html .goog-menu-button-rtl .goog-menu-button-outer-box {55/* @noflip */ left: -1px;56/* @noflip */ right: auto;57}58* html .goog-menu-button-rtl .goog-menu-button-inner-box {59/* @noflip */ right: auto;60}6162/* IE7-only hack; ignored by all other browsers. */63*:first-child+html .goog-menu-button-inner-box {64/* IE7 needs to have the box shifted to make the borders line up. */65left: -1px;66}67/* IE7 BiDi fix. */68*:first-child+html .goog-menu-button-rtl .goog-menu-button-inner-box {69/* @noflip */ left: 1px;70/* @noflip */ right: auto;71}7273/* Safari-only hacks. */74::root .goog-menu-button,75::root .goog-menu-button-outer-box,76::root .goog-menu-button-inner-box {77/* Required to make pseudo-rounded corners work on Safari. */78line-height: 0;79}80::root .goog-menu-button-caption,81::root .goog-menu-button-dropdown {82/* Required to make pseudo-rounded corners work on Safari. */83line-height: normal;84}8586/* State: disabled. */87.goog-menu-button-disabled {88background-image: none !important;89opacity: 0.3;90-moz-opacity: 0.3;91filter: alpha(opacity=30);92}93.goog-menu-button-disabled .goog-menu-button-outer-box,94.goog-menu-button-disabled .goog-menu-button-inner-box,95.goog-menu-button-disabled .goog-menu-button-caption,96.goog-menu-button-disabled .goog-menu-button-dropdown {97color: #333 !important;98border-color: #999 !important;99}100101/* Pre-IE7 IE hack; ignored by IE7 and all non-IE browsers. */102* html .goog-menu-button-disabled {103margin: 2px 1px !important;104padding: 0 1px !important;105}106107/* IE7-only hack; ignored by all other browsers. */108*:first-child+html .goog-menu-button-disabled {109margin: 2px 1px !important;110padding: 0 1px !important;111}112113/* State: hover. */114.goog-menu-button-hover .goog-menu-button-outer-box,115.goog-menu-button-hover .goog-menu-button-inner-box {116border-color: #9cf #69e #69e #7af !important; /* Hover border wins. */117}118119/* State: active, open. */120.goog-menu-button-active,121.goog-menu-button-open {122background-color: #bbb;123background-position: bottom left;124}125126/* State: focused. */127.goog-menu-button-focused .goog-menu-button-outer-box,128.goog-menu-button-focused .goog-menu-button-inner-box {129border-color: orange;130}131132/* Caption style. */133.goog-menu-button-caption {134padding: 0 4px 0 0;135vertical-align: top;136}137138/* Dropdown arrow style. */139.goog-menu-button-dropdown {140height: 15px;141width: 7px;142/* Client apps may override the URL at which they serve the sprite. */143background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -388px 0;144vertical-align: top;145}146147/* Pill (collapsed border) styles. */148/* TODO(gboyer): Remove specific menu button styles and have any button support being a menu button. */149.goog-menu-button-collapse-right,150.goog-menu-button-collapse-right .goog-menu-button-outer-box,151.goog-menu-button-collapse-right .goog-menu-button-inner-box {152margin-right: 0;153}154155.goog-menu-button-collapse-left,156.goog-menu-button-collapse-left .goog-menu-button-outer-box,157.goog-menu-button-collapse-left .goog-menu-button-inner-box {158margin-left: 0;159}160161.goog-menu-button-collapse-left .goog-menu-button-inner-box {162border-left: 1px solid #fff;163}164165.goog-menu-button-collapse-left.goog-menu-button-checked166.goog-menu-button-inner-box {167border-left: 1px solid #ddd;168}169170171