~cytrogen/masto-fe

ref: dc35e2d7569a293bbda92ee3ecba8d2d4e6a7b64 masto-fe/app/javascript/flavours/glitch/styles/components/sensitive.css -rw-r--r-- 498 bytes
dc35e2d7 — Cytrogen Rename .scss → .css and remove sass dependency (Phase 9-10) 13 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.sensitive-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 4px;
  inset-inline-start: 4px;
  z-index: 100;
}

.sensitive-marker {
  margin: 0 3px;
  border-radius: 2px;
  padding: 2px 6px;
  color: var(--primary-text-color-a80);
  background: var(--base-overlay-background-a50);
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.1s ease;

  .media-gallery:hover & {
    opacity: 1;
  }
}