12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
- * Copyright 2009 The Closure Library Authors. All Rights Reserved.
- *
- * Use of this source code is governed by the Apache License, Version 2.0.
- * See the COPYING file for details.
- */
- /*
- * Styling for flat buttons created by goog.ui.FlatButtonRenderer.
- *
- * @author brianp@google.com (Brian Peterson)
- */
- .goog-flat-button {
- position: relative;
- /*width: 20ex;*/
- margin: 2px;
- border: 1px solid #000;
- padding: 2px 6px;
- font: normal 13px "Trebuchet MS", Tahoma, Arial, sans-serif;
- color: #fff;
- background-color: #8c2425;
- cursor: pointer;
- outline: none;
- }
- /* State: disabled. */
- .goog-flat-button-disabled {
- border-color: #888;
- color: #888;
- background-color: #ccc;
- cursor: default;
- }
- /* State: hover. */
- .goog-flat-button-hover {
- border-color: #8c2425;
- color: #8c2425;
- background-color: #eaa4a5;
- }
- /* State: active, selected, checked. */
- .goog-flat-button-active,
- .goog-flat-button-selected,
- .goog-flat-button-checked {
- border-color: #5b4169;
- color: #5b4169;
- background-color: #d1a8ea;
- }
- /* State: focused. */
- .goog-flat-button-focused {
- border-color: #5b4169;
- }
- /* Pill (collapsed border) styles. */
- .goog-flat-button-collapse-right {
- margin-right: 0;
- }
- .goog-flat-button-collapse-left {
- margin-left: 0;
- border-left: none;
- }
|