_scala.scss 628 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ._scala {
  2. @extend %simple;
  3. .deprecated { @extend %label-red; }
  4. .attributes dl,
  5. .attributes pre {
  6. margin: 0;
  7. }
  8. .related-types {
  9. @extend %pre;
  10. margin: 0;
  11. white-space: normal;
  12. }
  13. .links {
  14. @extend %box;
  15. margin-left: -1rem;
  16. text-align: center;
  17. padding: .5em;
  18. a { padding: .4em }
  19. @include print {
  20. display: none;
  21. }
  22. }
  23. .source-link {
  24. float: right;
  25. font-size: .75rem;
  26. color: var(--linkColor);
  27. cursor: pointer;
  28. @extend %user-select-none;
  29. &:hover { text-decoration: underline; }
  30. @include print {
  31. display: none;
  32. }
  33. }
  34. }