lemmatized-entity-ref.component.scss 749 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import "../../../assets/scss/colors";
  2. @import "../../../assets/scss/themes";
  3. @import "../../../assets/scss/mixins";
  4. .lemmatizedEntityRef {
  5. &:not(.noDetails) {
  6. cursor: pointer;
  7. &.opened {
  8. border-bottom: 3px solid;
  9. }
  10. }
  11. &:not(.opened):not(:hover) {
  12. background-color: transparent;
  13. }
  14. }
  15. .lemmatizedEntityRef:hover:not(.noDetails),
  16. .lemmatizedEntityRef.highlighted,
  17. .lemmatizedEntityRef.opened:not(.noDetails) {
  18. &.lem {
  19. @include lemmatizedEntityRefColors(get-ne-color(lemBase), get-ne-color(lemMiddle), get-ne-color(lemDarker));
  20. }
  21. }
  22. .lemmatizedEntityRefDetail {
  23. &.lem {
  24. background: get-ne-color(personBase);
  25. }
  26. }
  27. .not-found-msg {
  28. font-size: .9rem;
  29. }
  30. .entityHighlight {
  31. background: #ffffcc !important;
  32. }