summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss
blob: 5729f7625991bcd1c43152f13717bca2076da262 (plain)
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
@use './src/styles/vendor/variables' as vv;

.running i {
  color: vv.$primary;
}

.running:hover i {
  color: vv.$white;
}

a {
  .dot {
    background-color: vv.$primary;
    border: 2px solid vv.$secondary;
    border-radius: 50%;
    height: 11px;
    position: absolute;
    right: 17px;
    top: 10px;
    width: 10px;
  }

  &:hover .dot {
    background-color: vv.$white;
    border-color: vv.$primary;
  }
}