summaryrefslogtreecommitdiffstats
path: root/webapp/sass/layout/_sidebar-menu.scss
blob: b4d4f15fdfdfa64284d6f79939a16fa91a34ba30 (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
@charset 'UTF-8';

.sidebar--menu {
    -webkit-overflow-scrolling: touch;
    background: #fafafa;
    border-right: $border-gray;
    display: none;
    height: 100%;
    overflow: auto;
    padding: 0 0 2em;
    position: absolute;
    right: 0;
    width: 220px;

    .nav-pills__container {
        padding-top: 5px;
    }

    .team__header {
        @include legacy-pie-clearfix;
        display: none;
        padding: 0 15px;

        a {
            color: $white;
        }

        .navbar-right {
            font-size: .85em;
            margin: 16px -5px 0;

            .dropdown-toggle {
                padding: 0 10px;
            }

            .dropdown-menu {
                li a {
                    color: #555;
                    padding: 3 20px;
                }
            }

            .dropdown__icon {
                @include background-size(100% 100%);
                display: inline-block;
                height: 16px;
                width: 4px;
            }
        }

        .team__name {
            float: left;
            font-size: 1.2em;
            font-weight: 600;
            line-height: 50px;
            max-width: 80%;
            overflow: hidden;
            text-decoration: none;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    }

    .nav {
        > li {
            > a {
                background: none !important;
                color: inherit;
                font-size: 15px;
                line-height: 40px;
                padding: 0 15px;

                svg {
                    fill-opacity: 0.85;
                    position: relative;
                    top: 4px;
                    width: 18px;
                }

                .icon {
                    display: inline-block;
                    left: -5px;
                    position: relative;
                    text-align: center;
                    width: 25px;
                }

                .mentions {
                    font-size: 17px;
                    font-weight: bold;
                }
            }
        }
    }
}