Project

General

Profile

1
#notifications-switcher {
2
  top: 250px !important;
3
  position: fixed;
4
  height: 36px;
5
  background-color: var(--portal-main-color);
6
  color: var(--portal-main-contrast);
7
  border-radius: 4px 0 0 4px;
8
  cursor: pointer;
9
  padding: 4px;
10
  box-shadow: -2px 2px 5px rgba(0, 0, 0, .26);
11
  box-sizing: border-box;
12
  right: 0;
13
  z-index: 980;
14
}
15

    
16
#notifications-switcher #notifications-count {
17
  position: absolute;
18
  top: 0;
19
  left: 0;
20
  font-size: 10px;
21
  -webkit-transform: translate(-50%, -50%);
22
  transform: translate(-50%, -50%);
23
  height: 14px;
24
  border-radius: 50%;
25
  padding: 1px 5px;
26
}
27

    
28
#notifications .uk-offcanvas-bar {
29
  background-color: white;
30
  color: #1a1a1a;
31
  font-size: 14px;
32
  top: 100px;
33
  padding: 0;
34
  border: 1px solid var(--portal-main-color);
35
  width: 550px;
36
}
37

    
38
#notifications .uk-offcanvas-flip .uk-offcanvas-bar {
39
  right: -550px;
40
}
41

    
42
#notifications .uk-offcanvas-bar .text-small {
43
  font-size: 12px;
44
}
45

    
46
#notifications .uk-offcanvas-bar h5, #notifications .uk-offcanvas-bar h6 {
47
  color: #1a1a1a;
48
}
49

    
50
#notifications button.notification-close, #notifications button.notification-close:focus {
51
  border-radius: 4px;
52
  background-color: #F0F0F0;
53
  color: #76706B;
54
  border: none;
55
  outline: none;
56
}
57

    
58
#notifications button.notification-close:hover, #notifications button.notification-close:focus {
59
  color: #1a1a1a;
60
}
61

    
62
#notifications .notification-list {
63
  padding: 45px 0 45px 45px;
64
}
65

    
66
#notifications .notification-list:not(:last-child) {
67
  height: 440px;
68
  border-bottom: 1px solid #E4E4E4;
69
}
70

    
71
#notifications .notification-list ul {
72
  overflow: auto;
73
  padding: 10px 45px 10px 0;
74
  height: calc(100% - 66px);
75
}
76

    
77
#notifications .notification-list ul > li:nth-child(n+2){
78
  margin-top: 15px;
79
}
80

    
81
#notifications .notify {
82
  padding: 20px 45px;
83
}
84

    
85
#notifications .notification {
86
  padding: 45px 45px;
87
  overflow: auto;
88
}
89

    
90
#notifications .uk-offcanvas-bar a {
91
  color: #2D72D6 ;
92
}
93

    
94
#notifications .uk-offcanvas-bar a:hover {
95
  color: var(--portal-main-color);
96
}
97

    
98
#notifications .uk-offcanvas-bar .uk-button-secondary {
99
  background-color: #4687e6;
100
  color: #fff;
101
  border: 1px solid transparent;
102
}
103

    
104
#notifications .uk-offcanvas-bar .uk-button-secondary:focus, #notifications .uk-offcanvas-bar .uk-button-secondary:hover {
105
  background-color: transparent;
106
  color: #4687e6;
107
  border-color: #4687e6;
108
}
109

    
110
#notifications .uk-offcanvas-bar .uk-button-secondary:disabled {
111
  background-color: transparent;
112
  color: #bfbfbf;
113
  border: 1px solid #ededed;
114
  background-image: none;
115
  box-shadow: none;
116
}
(1-1/3)