linkdialog.css 737 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright 2007 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. * Styles for the Editor's Edit Link dialog.
  9. *
  10. * @author marcosalmeida@google.com (Marcos Almeida)
  11. */
  12. .tr-link-dialog-explanation-text {
  13. font-size: 83%;
  14. margin-top: 15px;
  15. }
  16. .tr-link-dialog-target-input {
  17. width: 98%; /* 98% prevents scroll bars in standards mode. */
  18. /* Input boxes for URLs and email address should always be LTR. */
  19. direction: ltr;
  20. }
  21. .tr-link-dialog-email-warning {
  22. text-align: center;
  23. color: #c00;
  24. font-weight: bold;
  25. }
  26. .tr_pseudo-link {
  27. color: #00c;
  28. text-decoration: underline;
  29. cursor: pointer;
  30. }