_links.scss 487 B

12345678910111213141516171819202122232425262728293031
  1. .textLink {
  2. @extend .unselectable;
  3. font-weight: bold;
  4. color: $linkColor;
  5. &:hover {
  6. color: $linkHoverColor;
  7. cursor: pointer;
  8. &:active {
  9. color: $linkActiveColor;
  10. }
  11. }
  12. &[data-shortcut]:before {
  13. content: attr(data-shortcut) ") ";
  14. }
  15. }
  16. .statusLink {
  17. @extend .unselectable;
  18. font-weight: bold;
  19. color: $linkColorLight;
  20. &:hover {
  21. color: $linkHoverColorLight;
  22. cursor: pointer;
  23. &:active {
  24. color: $linkActiveColorLight;
  25. }
  26. }
  27. }