summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_sidebar--right.scss
blob: d6000a515a1e8fd3e1f371b9c26c5e5307795c02 (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
.sidebar--right {
    position: absolute;
    width: 400px;
    height: 100%;
    right: 0px;
    padding: 0 0 2em 0;
    background: #fff;
    @include single-transition(transform, 0.5s, ease);
    right: -320px;
    &.move--left {
        right: 0;
    }
    .sidebar-right__body {
        border-left: $border-gray;
        border-top: $border-gray;
    }
    .post {
        .post-header {
            .post-header-col {
                &.post-header__reply {
                    text-align: right;
                    float: right;
                }
            }
        }
    }
    .post-create__container {
        .post-create-footer {
            padding-top: 10px;
        }
    }
    .sidebar__overlay {
        width: 100%;
        height: 100%;
        background-color: yellow;
        @include opacity(0.1);
        position: absolute;
        z-index: 5;
        pointer-events: none;
    }
    .input-group {
        word-break: break-word;
    }
    .sidebar--right__close {
        margin: 11px 0 0 0;
        width: 22px;
        height: 22px;
        background: url("../images/closeSidebar.png");
        @include background-size(100% 100%);
        opacity: 0.5;
        float: right;
        outline: none;
        border: none;
        @include single-transition(all, 0.2s, ease-in);
        &:hover, &:active {
            opacity: 0.8;
        }
    }
    .sidebar--right__header {
        font-size: 1em;
        text-transform: uppercase;
        color: #444;
        height: 44px;
        padding: 0 1em;
        line-height: 44px;
        background: #F5F5F5;
        border-bottom: $border-gray;
    }
    .sidebar--right__subheader {
        font-size: 1em;
        text-transform: uppercase;
        color: #999;
        font-weight: 400;
        color: #888;
        height: 44px;
        line-height: 44px;
        padding: 0 1em;
    }
}

.sidebar-right-container {
    height: 100%;
}