action_link.css 577 B

1234567891011121314151617181920212223242526272829
  1. /* Copyright 2015 The Chromium Authors. All rights reserved.
  2. * Use of this source code is governed by a BSD-style license that can be
  3. * found in the LICENSE file. */
  4. [is='action-link'] {
  5. cursor: pointer;
  6. display: inline-block;
  7. text-decoration: none;
  8. }
  9. [is='action-link']:hover {
  10. text-decoration: underline;
  11. }
  12. [is='action-link']:active {
  13. color: rgb(5, 37, 119);
  14. text-decoration: underline;
  15. }
  16. [is='action-link'][disabled] {
  17. color: #999;
  18. cursor: default;
  19. pointer-events: none;
  20. text-decoration: none;
  21. }
  22. [is='action-link'].no-outline {
  23. outline: none;
  24. }