linkbutton.css 535 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright 2010 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 link buttons created by goog.ui.LinkButtonRenderer.
  9. *
  10. * @author robbyw@google.com (Robby Walker)
  11. */
  12. .goog-link-button {
  13. position: relative;
  14. color: #00f;
  15. text-decoration: underline;
  16. cursor: pointer;
  17. }
  18. /* State: disabled. */
  19. .goog-link-button-disabled {
  20. color: #888;
  21. text-decoration: none;
  22. cursor: default;
  23. }