You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
477 B

  1. .sensitive-info {
  2. display: flex;
  3. flex-direction: row;
  4. align-items: center;
  5. position: absolute;
  6. top: 4px;
  7. left: 4px;
  8. z-index: 100;
  9. }
  10. .sensitive-marker {
  11. margin: 0 3px;
  12. border-radius: 2px;
  13. padding: 2px 6px;
  14. color: rgba($primary-text-color, 0.8);
  15. background: rgba($base-overlay-background, 0.5);
  16. font-size: 12px;
  17. line-height: 15px;
  18. text-transform: uppercase;
  19. opacity: .9;
  20. transition: opacity .1s ease;
  21. .media-gallery:hover & { opacity: 1 }
  22. }