button.css 688 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright 2009 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /*
  8. * Styling for buttons rendered by goog.ui.ButtonRenderer.
  9. *
  10. * @author attila@google.com (Attila Bodis)
  11. */
  12. .goog-button {
  13. color: #036;
  14. border-color: #036;
  15. background-color: #69c;
  16. }
  17. /* State: disabled. */
  18. .goog-button-disabled {
  19. border-color: #333;
  20. color: #333;
  21. background-color: #999;
  22. }
  23. /* State: hover. */
  24. .goog-button-hover {
  25. color: #369;
  26. border-color: #369;
  27. background-color: #9cf;
  28. }
  29. /* State: active. */
  30. .goog-button-active {
  31. color: #69c;
  32. border-color: #69c;
  33. }