blob: 905907d84346ad7171d947e4453fd7229d3d7cbe (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#navbar{
input {
margin: 0px 5px 0px 2px;
}
.navbar-default {
position: absolute;
border: none;
min-height: 45px;
background: $primary-color;
.navbar-nav {
> li {
> a {
height: 45px;
padding: 0 1.3em;
i {
line-height: 45px;
}
}
}
}
.navbar-toggle {
float: left;
border-color: transparent;
border-radius: 0;
margin: 0;
padding: 0 10px;
line-height: 48px;
height: 44px;
z-index: 5;
fill: #fff;
.icon-bar {
background: #fff;
width: 21px;
}
&:hover, &:active, &:focus {
background: inherit;
}
}
.navbar-brand {
padding: 0 0.5em;
height: 45px;
line-height: 45px;
float: none;
font-size: 16px;
.heading {
margin-right: 3px;
font-weight: 600;
color: #fff;
}
.header-dropdown__icon {
top: 1px;
}
.dropdown-toggle {
color: #fff;
}
.description {
display: inline-block;
margin-right: 0.5em;
color: #fff;
&.info-popover {
width: 19px;
height: 19px;
background: url("../images/info__icon.png");
@include background-size(100% 100%);
vertical-align: middle;
top: -1px;
position: relative;
cursor: pointer;
}
}
}
}
.sidebar-channel {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
span {
white-space: nowrap;
margin-left: 2px;
}
}
.channel-create-btn {
margin-right: 15px;
}
.more-channel-table {
width: 100%;
border: 1px solid #dbdbdc;
td {
padding: 7px;
}
button {
width: 110px;
}
}
}
.badge-notify {
background:red;
position: absolute;
right: -5px;
top: -5px;
z-index: 100;
}
|