aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/users/user-notifications.component.scss
blob: 0493b10d9330f1bf32fb7a08734aafe3277d0098 (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
.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);
      }
    }
  }
}