Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
.dashboard {
2
 
3
    .overview {
4
        padding: 0 !important;
5
        min-height: 140px;
6
        position: relative;
7
        margin-bottom: 0px !important;
8
 
9
        .overview-content {
10
            padding: 16px;
11
 
12
            .overview-title {
13
                font-size: 18px;
14
            }
15
 
16
            .overview-badge {
17
                float: right;
18
                color: $textSecondaryColor;
19
            }
20
 
21
            .overview-detail {
22
                display: block;
23
                font-size: 24px;
24
                margin-top: 5px;
25
            }
26
        }
27
 
28
        .overview-footer {
29
            position: absolute;
30
            bottom: 0;
31
            width: 100%;
32
 
33
            img {
34
                display: block;
35
            }
36
        }
37
    }
38
 
39
    .colorbox {
40
        padding: 0 !important;
41
        text-align: center;
42
        overflow: hidden;
43
        margin-bottom: 0px !important;
44
 
45
        i {
46
            font-size: 48px;
47
            margin-top: 10px;
48
            color: #ffffff;
49
        }
50
 
51
        .colorbox-name {
52
            font-size: 20px;
53
            display: inline-block;
54
            width: 100%;
55
            margin: 4px 0 10px 0;
56
            color: #ffffff;
57
        }
58
 
59
        .colorbox-count {
60
            color: #ffffff;
61
            font-size: 36px;
62
        }
63
 
64
        .colorbox-count {
65
            font-weight: bold;
66
        }
67
 
68
        &.colorbox-1 {
69
            div:first-child {
70
                background-color: #2E7D32;
71
            }
72
 
73
            div:last-child {
74
                background-color: #4CAF50;
75
            }
76
        }
77
 
78
        &.colorbox-2 {
79
            div:first-child {
80
                background-color: #0277BD;
81
            }
82
 
83
            div:last-child {
84
                background-color: #03A9F4;
85
            }
86
        }
87
 
88
        &.colorbox-3 {
89
            div:first-child {
90
                background-color: #4527A0;
91
            }
92
 
93
            div:last-child {
94
                background-color: #673AB7;
95
            }
96
        }
97
 
98
        &.colorbox-4 {
99
            div:first-child {
100
                background-color: #00695C;
101
            }
102
 
103
            div:last-child {
104
                background-color: #009688;
105
            }
106
        }
107
    }
108
 
109
    .task-list {
110
        overflow: hidden;
111
 
112
        > .ui-panel {
113
            min-height: 340px;
114
        }
115
 
116
        .ui-panel-content {
117
            padding: 10px 0 !important;
118
        }
119
 
120
        ul {
121
            list-style-type: none;
122
            margin: 0;
123
            padding: 0;
124
 
125
            li {
126
                padding: $inputOptionPadding;
127
                border-bottom: 1px solid #dbdbdb;
128
 
129
                &:first-child {
130
                    margin-top: 10px;
131
                }
132
            }
133
 
134
            .ui-chkbox {
135
                vertical-align: middle;
136
                margin-right: 5px;
137
            }
138
 
139
            .task-name {
140
                vertical-align: middle;
141
            }
142
 
143
            i {
144
                color: $textSecondaryColor;
145
                float: right;
146
            }
147
        }
148
    }
149
 
150
    .contact-form {
151
        overflow: hidden;
152
 
153
        .ui-panel {
154
            min-height: 340px;
155
        }
156
 
157
        .ui-g-12 {
158
            padding: 16px 10px;
159
        }
160
 
161
        .ui-button {
162
            margin-top: 20px;
163
        }
164
    }
165
 
166
    .contacts {
167
        overflow: hidden;
168
 
169
        > .ui-panel {
170
            min-height: 340px;
171
        }
172
 
173
        .ui-panel-content{
174
            padding: 15px 0 10px 0 !important;
175
        }
176
 
177
        ul {
178
            list-style-type: none;
179
            padding: 0;
180
            margin: 0;
181
 
182
            li {
183
                border-bottom: 1px solid #d8d8d8;
184
 
185
                a {
186
                    padding: 9px;
187
                    width: 100%;
188
                    box-sizing: border-box;
189
                    text-decoration: none;
190
                    position: relative;
191
                    display: block;
192
                    @include border-radius(2px);
193
                    @include transition(background-color .2s);
194
 
195
                    .name {
196
                        position: absolute;
197
                        right: 10px;
198
                        top: 10px;
199
                        font-size: 18px;
200
                        color: $textColor;
201
                    }
202
 
203
                    .email {
204
                        position: absolute;
205
                        right: 10px;
206
                        top: 30px;
207
                        font-size: 14px;
208
                        color: $textSecondaryColor;
209
                    }
210
 
211
                    &:hover {
212
                        cursor: pointer;
213
                        background-color: #e8e8e8;;
214
                    }
215
                }
216
 
217
                &:last-child {
218
                    border: 0;
219
                }
220
            }
221
        }
222
    }
223
 
224
    .activity-list {
225
        list-style-type: none;
226
        padding: 0;
227
        margin: 0;
228
 
229
        li {
230
            border-bottom: 1px solid #bdbdbd;
231
            padding: 15px 0 9px 9px;
232
 
233
            .count {
234
                font-size: 24px;
235
                color: #ffffff;
236
                background-color: #03A9F4;
237
                font-weight: bold;
238
                width: 60px;
239
                padding: 5px;
240
                @include border-radius(2px);
241
            }
242
 
243
            &:first-child {
244
                border-top: 1px solid #bdbdbd;
245
            }
246
 
247
            &:last-child {
248
                border: 0;
249
            }
250
 
251
            .ui-g-6:first-child {
252
                font-size: 18px;
253
                padding-left: 0;
254
            }
255
 
256
            .ui-g-6:last-child {
257
                text-align: right;
258
                color: $textSecondaryColor;
259
            }
260
        }
261
    }
262
 
263
    .timeline {
264
        height: 100%;
265
        box-sizing: border-box;
266
 
267
        > .ui-g {
268
            .ui-g-3 {
269
                font-size: 14px;
270
                position: relative;
271
                border-right: 1px solid #bdbdbd;
272
 
273
                i {
274
                    background-color: #ffffff;
275
                    font-size: 36px;
276
                    position: absolute;
277
                    top: 0px;
278
                    right: -18px;
279
                }
280
            }
281
 
282
            .ui-g-9 {
283
                padding-left: 1.5em;
284
                .event-owner {
285
 
286
                }
287
 
288
                .event-text {
289
                    color: $textSecondaryColor;
290
                    font-size: 14px;
291
                    display: block;
292
                    padding-bottom: 20px;
293
                }
294
 
295
                .event-content {
296
                    img {
297
                        width: 100%;
298
                    }
299
                }
300
            }
301
        }
302
    }
303
 
304
    > div {
305
        > .ui-panel {
306
            @include content-shadow();
307
        }
308
    }
309
}