components-frame.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* vim:set ts=2 sw=2 sts=2 et: */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  4. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. /**
  6. * Frame Component
  7. * Styles for React component at `devtools/client/shared/components/frame.js`
  8. */
  9. .frame-link {
  10. display: flex;
  11. justify-content: space-between;
  12. }
  13. .frame-link-async-cause {
  14. color: var(--theme-body-color-inactive);
  15. }
  16. .frame-link .frame-link-source {
  17. flex: initial;
  18. color: var(--theme-highlight-blue);
  19. }
  20. .frame-link a.frame-link-source {
  21. cursor: pointer;
  22. text-decoration: none;
  23. font-style: normal;
  24. }
  25. .frame-link a.frame-link-source:hover {
  26. text-decoration: underline;
  27. }
  28. .frame-link .frame-link-host {
  29. margin-inline-start: 5px;
  30. font-size: 90%;
  31. color: var(--theme-content-color2);
  32. }
  33. .frame-link .frame-link-function-display-name {
  34. margin-inline-end: 5px;
  35. }
  36. .frame-link .frame-link-line {
  37. color: var(--theme-highlight-orange);
  38. }
  39. .focused .frame-link .frame-link-source,
  40. .focused .frame-link .frame-link-line,
  41. .focused .frame-link .frame-link-host {
  42. color: var(--theme-selection-color);
  43. }