Path: blob/trunk/third_party/closure/goog/css/css3button.css
2868 views
/*1* Copyright 2010 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/* Author: [email protected] (Alex Russell) */8/* Author: [email protected] (Emil A Eklund) */910/* Imageless button styles. */11.goog-css3-button {12margin: 0 2px;13padding: 3px 6px;14text-align: center;15vertical-align: middle;16white-space: nowrap;17cursor: default;18outline: none;19font-family: Arial, sans-serif;20color: #000;21border: 1px solid #bbb;22-webkit-border-radius: 3px;23-moz-border-radius: 3px;24/* TODO(eae): Change this to -webkit-linear-gradient once25https://bugs.webkit.org/show_bug.cgi?id=28152 is resolved. */26background: -webkit-gradient(linear, 0% 40%, 0% 70%, from(#f9f9f9),27to(#e3e3e3));28/* @alternate */ background: -moz-linear-gradient(top, #f9f9f9, #e3e3e3);29}303132/* Styles for different states (hover, active, focused, open, checked). */33.goog-css3-button-hover {34border-color: #939393 !important;35}3637.goog-css3-button-focused {38border-color: #444;39}4041.goog-css3-button-active, .goog-css3-button-open, .goog-css3-button-checked {42border-color: #444 !important;43background: -webkit-gradient(linear, 0% 40%, 0% 70%, from(#e3e3e3),44to(#f9f9f9));45/* @alternate */ background: -moz-linear-gradient(top, #e3e3e3, #f9f9f9);46}4748.goog-css3-button-disabled {49color: #888;50}5152.goog-css3-button-primary {53font-weight: bold;54}555657/*58* Pill (collapsed border) styles.59*/60.goog-css3-button-collapse-right {61margin-right: 0 !important;62border-right: 1px solid #bbb;63-webkit-border-top-right-radius: 0px;64-webkit-border-bottom-right-radius: 0px;65-moz-border-radius-topright: 0px;66-moz-border-radius-bottomright: 0px;67}6869.goog-css3-button-collapse-left {70border-left: 1px solid #f9f9f9;71margin-left: 0 !important;72-webkit-border-top-left-radius: 0px;73-webkit-border-bottom-left-radius: 0px;74-moz-border-radius-topleft: 0px;75-moz-border-radius-bottomleft: 0px;76}777879