summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_admin-console.scss
blob: abba9de02385a9c6180ad5adba5e356fb862f870 (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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
@charset "UTF-8";

#admin_controller {
    > div {
        height: 100%;
    }

    h3 {
        font-weight: 600;
        border-bottom: 1px solid #ddd;
        padding-bottom: 0.5em;
        margin: 1em 0;
    }

    .table {
        background: #fff;
    }

    .sidebar--left {
        &.sidebar--collapsable {
            background: #333;
            .team__header {
                background: transparent;
                margin-bottom: 5px;
            }
            .nav {
                li {
                    padding: 0;
                    @include opacity(1);
                    .icon {
                        width: 17px;
                    }
                    > a {
                        &:hover, &.active, &:focus  {
                            background-color: #EAEAEA;
                        }
                    }
                    > h4 {
                        background: #333;
                        padding: 10px 10px;
                        margin: 1px 0 0;
                        .menu-icon--right {
                            top: 6px;
                            right: 12px;
                        }
                    }
                }
                .menu-icon--right {
                    position: absolute;
                    right: 10px;
                    top: 3px;
                    font-size: 18px;
                    font-weight: 600;
                    width: 20px;
                    height: 20px;
                    line-height: 20px;
                    text-align: center;
                    .fa {
                        font-size: 13px;
                        right: -2px;
                        position: relative;
                        color: #fff;
                    }
                }
                &.nav__sub-menu {
                    background: #111;
                    -webkit-font-smoothing: auto;
                    &.padded {
                        padding: 5px 0;
                    }
                    li {
                        > a {
                            font-size: 13px;
                            padding: 5px 35px 5px 15px;
                            background: transparent;
                            color: #bbb;
                            &:hover {
                                color: lighten($primary-color, 10);
                            }
                            &.active {
                                color: #fff;
                                font-weight: 600;
                            }
                        }
                        .nav-more {
                            font-size: 13px;
                            padding: 5px 15px;
                            background: transparent;
                            color: #bbb;
                            display: block;
                            cursor: pointer;
                            &:hover {
                                color: lighten($primary-color, 10);
                            }
                        }
                    }
                }
                &.nav__inner-menu {
                    li {
                        > a {
                            padding-left: 20px;
                        }
                    }
                }
            }
        }
    }

    .log__panel {
        overflow: scroll;
        width: 100%;
        height: 800px;
        border: 1px solid #ddd;
        margin-top: 10px;
        padding: 5px;
        background-color: white;
    }

    .app__content {
        &.admin {
            overflow: auto;
            background-color: #f1f1f1;
            padding: 0 20px 20px;
            min-height: 600px;
        }
        .wrapper--fixed {
            max-width: 800px;
        }
        .form-horizontal {
            margin-top: 40px;
            .control-label {
                text-align: left;
                padding-right: 0;
                font-weight: 600;
            }
            .form-group {
                margin-bottom: 25px;
            }
            .help-text {
                ul, ol {
                    padding-left: 23px;
                }
            }
            .help-text {
                margin: 10px 0 0 15px;
                color: #777;
                .help-link {
                    margin-right: 5px;
                }
                .btn {
                    font-size: 13px;
                }
            }
            .alert {
                display: inline-block;
                padding: 5px 7px;
                margin: 1em 0 0;
                top: 1px;
                position: relative;
                .fa {
                    margin-right: 5px;
                }
            }
        }
        .banner {
            background: #fff;
            border: 1px solid #ddd;
            padding: 0.7em 1.5em;
            font-size: 0.95em;
            margin: 2em 0;
            .banner__heading {
                font-size: 1.5em;
            }
            .banner__content {
                width: 80%;
            }
        }
        .popover {
            border-radius: 3px;
            width: 100%;
            font-size: 0.95em;
        }
        .panel {
            border: none;
            background-color: transparent;
        }
        .panel-default {
            > .panel-heading {
                padding: 10px 0;
                background-color: transparent;
            }
            .panel-body {
                padding: 30px 0 10px;
            }
        }
        .panel-group {
            margin-bottom: 50px;
        }
        .panel-title {
            font-size: 24px;
            line-height: 1.5;
            a {
                text-decoration: none;
                display: block;
                @include clearfix;
                &.collapsed {
                    .fa-minus {
                        display: none;
                    }
                    .fa-plus {
                        display: inline-block;
                    }
                }
                .fa {
                    font-size: 18px;
                    float: right;
                    margin-top: 8px;
                    color: #aaa;
                }
                .fa-plus {
                    display: none;
                }
            }
        }
    }
}