Path: blob/trunk/third_party/closure/goog/css/flatbutton.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* Styling for flat buttons created by goog.ui.FlatButtonRenderer.9*10* @author [email protected] (Brian Peterson)11*/1213.goog-flat-button {14position: relative;15/*width: 20ex;*/16margin: 2px;17border: 1px solid #000;18padding: 2px 6px;19font: normal 13px "Trebuchet MS", Tahoma, Arial, sans-serif;20color: #fff;21background-color: #8c2425;22cursor: pointer;23outline: none;24}2526/* State: disabled. */27.goog-flat-button-disabled {28border-color: #888;29color: #888;30background-color: #ccc;31cursor: default;32}3334/* State: hover. */35.goog-flat-button-hover {36border-color: #8c2425;37color: #8c2425;38background-color: #eaa4a5;39}4041/* State: active, selected, checked. */42.goog-flat-button-active,43.goog-flat-button-selected,44.goog-flat-button-checked {45border-color: #5b4169;46color: #5b4169;47background-color: #d1a8ea;48}4950/* State: focused. */51.goog-flat-button-focused {52border-color: #5b4169;53}5455/* Pill (collapsed border) styles. */56.goog-flat-button-collapse-right {57margin-right: 0;58}5960.goog-flat-button-collapse-left {61margin-left: 0;62border-left: none;63}646566