blob: 6f4a0cc3839e3c4c9bb8579d7ba2ef75e647ef4a (
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
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
|
.sidebar--menu {
position: absolute;
width: 220px;
right: 0;
height: 100%;
border-right: $border-gray;
padding: 0 0 2em 0;
background: #fafafa;
display: none;
.nav-pills__container {
padding-top: 5px;
}
.team__header {
display: none;
padding: 0 15px;
@include legacy-pie-clearfix;
a {
color: #fff;
}
.navbar-right {
font-size: 0.85em;
margin: 16px -5px 0;
.dropdown-toggle {
padding: 0 10px;
}
.dropdown-menu {
li a {
padding: 3 20px;
color: #555;
}
}
.dropdown__icon {
background: url("../images/dropdown-icon.png");
width: 4px;
height: 16px;
@include background-size(100% 100%);
display: inline-block;
}
}
.team__name {
float: left;
line-height: 50px;
font-weight: 600;
font-size: 1.2em;
max-width: 80%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-decoration: none;
}
}
.nav {
> li {
> a {
font-size: 15px;
background: none !important;
color: inherit;
line-height: 40px;
padding: 0 15px;
.glyphicon {
width: 25px;
}
}
}
}
}
|