Path: blob/trunk/third_party/closure/goog/css/button.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 buttons rendered by goog.ui.ButtonRenderer.9*10* @author [email protected] (Attila Bodis)11*/1213.goog-button {14color: #036;15border-color: #036;16background-color: #69c;17}1819/* State: disabled. */20.goog-button-disabled {21border-color: #333;22color: #333;23background-color: #999;24}2526/* State: hover. */27.goog-button-hover {28color: #369;29border-color: #369;30background-color: #9cf;31}3233/* State: active. */34.goog-button-active {35color: #69c;36border-color: #69c;37}383940