aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/users/user-notifications.component.scss
blob: 0ae26ea3990f8bdac24c90a2d24306b4d8aca9e4 (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
.no-notification {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.notification {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: inherit;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);

  .mark-as-read {
    min-width: 35px;

    .glyphicon {
      display: none;
      cursor: pointer;
      color: rgba(20, 20, 20, 0.5)
    }
  }

  &.unread {
    background-color: rgba(0, 0, 0, 0.05);

    &:hover .mark-as-read .glyphicon {
      display: block;

      &:hover {
        color: rgba(20, 20, 20, 0.8);
      }
    }
  }
}