-
Notifications
You must be signed in to change notification settings - Fork 3
/
DockableAdminPanel.scss
74 lines (56 loc) · 1.1 KB
/
DockableAdminPanel.scss
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@import 'include/css/variables.scss';
.DockableAdminPanel{
#simplepanel{
z-index: 9004;
top: 0 !important;
left: 0 !important;
width: 180px;
> div{
box-shadow: none;
border: none;
border-radius: 0 0 5px 0;
.admin-panel-notifications{
display: inline-block !important;
position: fixed;
top: 0;
left: 10.5em;
width: 36px;
height: $gp_nav_height;
span{
display: none;
}
}
}
&:not(.compact) .admin-panel-notifications .submenu{
display: none !important;
}
.toolbar{
min-width: 180px !important;
a{
height: $gp_nav_height;
}
}
.toolbar:after{
content: '';
height: $gp_nav_height;
position: absolute;
right: 0;
top: 0;
width: 1px;
background-color: lighten($gp_panel_bg, 10%);
}
.submenu li > a{
text-overflow: ellipsis;
}
&.minb .toolbar a:nth-child(n+2){
display: inline-block !important;
}
&.compact .admin-panel-notifications .panelgroup2{
top: $gp_nav_height + 3 !important;
left: 0 !important;
}
}
body.gpAdmin #admincontent_panel.fixed{
padding-left: 180px;
}
}