summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_sidebar--left.scss
blob: 831c19cffce685e06d4cb34c9ce4ae1dc1bfc577 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
.sidebar--left {
    position: absolute;
    width: 220px;
    left: 0;
    height: 100%;
    border-right: $border-gray;
    padding: 0 0 2em 0;
    background: #fafafa;
    z-index: 5;
    &.sidebar--padded {
        padding-top: 44px;
    }
    .dropdown-menu {
        max-height: 400px;
        overflow-x: hidden;
        overflow-y: auto;
        max-width: 200px;
        width: 200px;
    }
    .search__form {
        margin: 0;
        padding: 1em 1em 0;
        display: none;
    }
    > div {
        height: 100%;
        position: absolute;
        padding-bottom: 70px;
        width: 100%;
    }
    .badge {
        background-color: $primary-color;
        position: absolute;
        right: 10px;
        top: 5px;
    }
    .status {
        position:relative;
        top:1px;
        margin-right: 6px;
        width: 12px;
        display: inline-block;
        .online--icon {
            fill: #7DBE00;
        }
    }
    .nav-pills__container {
        height: 100%;
        position: relative;
        overflow: auto;
    }

    .nav-pills__unread-indicator {
        position: absolute;
        left: 0;
        right: 0;
        width: 72%;
        color: #fff;
        background: #2389D7;
        @include border-radius(50px);
        margin: 0 auto;
        padding: 3px 0 4px;
        font-size: 13.5px;
        text-align: center;
        z-index: 1;
    }

    .nav-pills__unread-indicator-top {
        top: 66px;
    }
    .nav-pills__unread-indicator-bottom {
        bottom: 20px;
    }

    .nav {
        &.nav-stacked {
            > li+li {
                margin: 0;
            }
        }
        li {
            > h4 {
                font-size: 1em;
                text-transform: uppercase;
                margin: 1.1em 0 0.5em;
                font-weight: 400;
                color: #AAA;
                letter-spacing: -0.3px;
                padding: 0 10px 0 15px;
            }
            > a {
                padding: 3px 10px 3px 25px;
                line-height: 1.5;
                border-radius: 0;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                &.has-badge {
                    padding-right: 30px;
                }
                &.has-close {
                    padding-right: 30px;
                    &:hover {
                        .btn-close {
                            display: block;
                            @include opacity(0.8);
                        }
                    }
                    .btn-close {
                        position: absolute;
                        right: 15px;
                        top: -1px;
                        font-size: 20px;
                        font-weight: 600;
                        @include opacity(0);
                        display: none;
                        &:hover {
                            @include opacity(1);
                        }
                    }
                }
                &.nav-more {
                    text-decoration: underline;
                }
                &.unread-title {
                    font-weight: 600;
                }
            }
            &.active {
                a, a:hover, a:focus {
                    color: #111;
                    padding-right: 10px;
                    background-color: #e1e1e1;
                    border-radius: 0;
                    font-weight: 400;
                }
            }
        }
    }
    .modal-title {
        line-height: 2em;
    }

    .add-channel-btn {
        float: right;
        outline: none;
        margin: -2px 0 0 0;
        color: #AAA;
        padding: 0 5px;
        text-decoration: none;
        font-size: 22px;
        line-height: 18px;
        font-weight: 700;
        &:hover {
            color: #666;
        }
    }
}

.channel-loading-gif {
    height: 15px;
    width: 15px;
    margin-top: 2px;
}

.join-channel-loading-gif {
    margin-top: 5px;
    margin-left: 10px;
    height: 25px;
    width: 25px;

}