smart_admin 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +0 -0
- data/Rakefile +34 -0
- data/app/assets/images/landing/avatar1.jpg +0 -0
- data/app/assets/images/landing/avatar2.jpg +0 -0
- data/app/assets/images/landing/avatar3.jpg +0 -0
- data/app/assets/images/landing/avatar4.jpg +0 -0
- data/app/assets/images/landing/avatar5.jpg +0 -0
- data/app/assets/images/landing/avatar6.jpg +0 -0
- data/app/assets/images/landing/avatar7.jpg +0 -0
- data/app/assets/images/landing/avatar8.jpg +0 -0
- data/app/assets/images/landing/avatar9.jpg +0 -0
- data/app/assets/images/landing/avatar_all.png +0 -0
- data/app/assets/images/landing/dashboard.png +0 -0
- data/app/assets/images/landing/header_one.jpg +0 -0
- data/app/assets/images/landing/header_two.jpg +0 -0
- data/app/assets/images/landing/iphone.jpg +0 -0
- data/app/assets/images/landing/laptop.png +0 -0
- data/app/assets/images/landing/perspective.png +0 -0
- data/app/assets/images/landing/shattered.png +0 -0
- data/app/assets/images/landing/word_map.png +0 -0
- data/app/assets/images/patterns/header-profile-skin-1.png +0 -0
- data/app/assets/images/patterns/header-profile-skin-2.png +0 -0
- data/app/assets/images/patterns/header-profile-skin-3.png +0 -0
- data/app/assets/images/patterns/header-profile.png +0 -0
- data/app/assets/images/patterns/otis_redding.png +0 -0
- data/app/assets/images/patterns/shattered.png +0 -0
- data/app/assets/javascripts/inspinia.js +270 -0
- data/app/assets/javascripts/smart_admin.js +9 -0
- data/app/assets/stylesheets/smart_admin.scss +6 -0
- data/app/assets/stylesheets/smart_admin/base/badgets_labels.scss +66 -0
- data/app/assets/stylesheets/smart_admin/base/base.scss +1298 -0
- data/app/assets/stylesheets/smart_admin/base/buttons.scss +306 -0
- data/app/assets/stylesheets/smart_admin/base/chat.scss +126 -0
- data/app/assets/stylesheets/smart_admin/base/custom.scss +14 -0
- data/app/assets/stylesheets/smart_admin/base/elements.scss +2341 -0
- data/app/assets/stylesheets/smart_admin/base/landing.scss +636 -0
- data/app/assets/stylesheets/smart_admin/base/md-skin.scss +388 -0
- data/app/assets/stylesheets/smart_admin/base/media.scss +103 -0
- data/app/assets/stylesheets/smart_admin/base/metismenu.scss +81 -0
- data/app/assets/stylesheets/smart_admin/base/mixins.scss +0 -0
- data/app/assets/stylesheets/smart_admin/base/navigation.scss +501 -0
- data/app/assets/stylesheets/smart_admin/base/pages.scss +1318 -0
- data/app/assets/stylesheets/smart_admin/base/rtl.scss +267 -0
- data/app/assets/stylesheets/smart_admin/base/sidebar.scss +201 -0
- data/app/assets/stylesheets/smart_admin/base/skins.scss +460 -0
- data/app/assets/stylesheets/smart_admin/base/spinners.scss +760 -0
- data/app/assets/stylesheets/smart_admin/base/theme-config.scss +111 -0
- data/app/assets/stylesheets/smart_admin/base/top_navigation.scss +128 -0
- data/app/assets/stylesheets/smart_admin/base/typography.scss +32 -0
- data/app/assets/stylesheets/smart_admin/base/variables.scss +41 -0
- data/app/assets/stylesheets/smart_admin/style.scss +51 -0
- data/lib/generators/smart_admin/install_generator.rb +32 -0
- data/lib/generators/smart_admin/smart_admin_generator.rb +0 -0
- data/lib/generators/smart_admin/templates/assets/admin.js +1 -0
- data/lib/generators/smart_admin/templates/assets/admin.scss +3 -0
- data/lib/generators/smart_admin/templates/controllers/base_controller.rb +3 -0
- data/lib/generators/smart_admin/templates/controllers/dashboards_controller.rb +6 -0
- data/lib/generators/smart_admin/templates/views/admin/dashboards/index.html.haml +0 -0
- data/lib/generators/smart_admin/templates/views/layouts/_flash.html.erb +10 -0
- data/lib/generators/smart_admin/templates/views/layouts/_footer.html.haml +0 -0
- data/lib/generators/smart_admin/templates/views/layouts/_navigation.html.haml +32 -0
- data/lib/generators/smart_admin/templates/views/layouts/_rightsidebar.html.haml +0 -0
- data/lib/generators/smart_admin/templates/views/layouts/_skinconfig.html.haml +0 -0
- data/lib/generators/smart_admin/templates/views/layouts/_topnavbar.html.haml +9 -0
- data/lib/generators/smart_admin/templates/views/layouts/admin.html.haml +20 -0
- data/lib/smart_admin.rb +6 -0
- data/lib/smart_admin/engine.rb +4 -0
- data/lib/smart_admin/version.rb +3 -0
- data/lib/tasks/smart_admin_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/log/development.log +58 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/smart_admin_test.rb +7 -0
- data/test/test_helper.rb +20 -0
- metadata +285 -0
@@ -0,0 +1,1318 @@
|
|
1
|
+
/* SEARCH PAGE */
|
2
|
+
|
3
|
+
.search-form {
|
4
|
+
margin-top: 10px;
|
5
|
+
}
|
6
|
+
|
7
|
+
.search-result h3 {
|
8
|
+
margin-bottom: 0;
|
9
|
+
color: #1e0fbe;
|
10
|
+
}
|
11
|
+
|
12
|
+
.search-result .search-link {
|
13
|
+
color: #006621;
|
14
|
+
}
|
15
|
+
|
16
|
+
.search-result p {
|
17
|
+
font-size: 12px;
|
18
|
+
margin-top: 5px;
|
19
|
+
}
|
20
|
+
|
21
|
+
/* CONTACTS */
|
22
|
+
|
23
|
+
.contact-box {
|
24
|
+
background-color: white;
|
25
|
+
border: 1px solid $border-color;
|
26
|
+
padding: 20px;
|
27
|
+
margin-bottom: 20px;
|
28
|
+
}
|
29
|
+
|
30
|
+
.contact-box > a {
|
31
|
+
color: inherit;
|
32
|
+
}
|
33
|
+
|
34
|
+
.contact-box.center-version {
|
35
|
+
|
36
|
+
border: 1px solid $border-color;
|
37
|
+
padding: 0;
|
38
|
+
}
|
39
|
+
|
40
|
+
.contact-box.center-version > a {
|
41
|
+
display: block;
|
42
|
+
background-color: #ffffff;
|
43
|
+
padding: 20px;
|
44
|
+
text-align: center;
|
45
|
+
}
|
46
|
+
|
47
|
+
.contact-box.center-version > a img {
|
48
|
+
width: 80px;
|
49
|
+
height: 80px;
|
50
|
+
margin-top: 10px;
|
51
|
+
margin-bottom: 10px;
|
52
|
+
}
|
53
|
+
|
54
|
+
.contact-box.center-version address {
|
55
|
+
margin-bottom: 0;
|
56
|
+
}
|
57
|
+
|
58
|
+
.contact-box .contact-box-footer {
|
59
|
+
text-align: center;
|
60
|
+
background-color: #ffffff;
|
61
|
+
border-top: 1px solid $border-color;
|
62
|
+
padding: 15px 20px;
|
63
|
+
}
|
64
|
+
|
65
|
+
/* INVOICE */
|
66
|
+
|
67
|
+
.invoice-table tbody > tr > td:last-child, .invoice-table tbody > tr > td:nth-child(4), .invoice-table tbody > tr > td:nth-child(3), .invoice-table tbody > tr > td:nth-child(2) {
|
68
|
+
text-align: right;
|
69
|
+
}
|
70
|
+
|
71
|
+
.invoice-table thead > tr > th:last-child, .invoice-table thead > tr > th:nth-child(4), .invoice-table thead > tr > th:nth-child(3), .invoice-table thead > tr > th:nth-child(2) {
|
72
|
+
text-align: right;
|
73
|
+
}
|
74
|
+
|
75
|
+
.invoice-total > tbody > tr > td:first-child {
|
76
|
+
text-align: right;
|
77
|
+
}
|
78
|
+
|
79
|
+
.invoice-total > tbody > tr > td {
|
80
|
+
border: 0 none;
|
81
|
+
}
|
82
|
+
|
83
|
+
.invoice-total > tbody > tr > td:last-child {
|
84
|
+
border-bottom: 1px solid #dddddd;
|
85
|
+
text-align: right;
|
86
|
+
width: 15%;
|
87
|
+
}
|
88
|
+
|
89
|
+
/* ERROR & LOGIN & LOCKSCREEN */
|
90
|
+
|
91
|
+
.middle-box {
|
92
|
+
max-width: 400px;
|
93
|
+
z-index: 100;
|
94
|
+
margin: 0 auto;
|
95
|
+
padding-top: 40px;
|
96
|
+
}
|
97
|
+
|
98
|
+
.lockscreen.middle-box {
|
99
|
+
width: 200px;
|
100
|
+
padding-top: 110px;
|
101
|
+
}
|
102
|
+
|
103
|
+
.loginscreen.middle-box {
|
104
|
+
width: 300px;
|
105
|
+
}
|
106
|
+
|
107
|
+
.loginColumns {
|
108
|
+
max-width: 800px;
|
109
|
+
margin: 0 auto;
|
110
|
+
padding: 100px 20px 20px 20px;
|
111
|
+
}
|
112
|
+
|
113
|
+
.passwordBox {
|
114
|
+
max-width: 460px;
|
115
|
+
margin: 0 auto;
|
116
|
+
padding: 100px 20px 20px 20px;
|
117
|
+
}
|
118
|
+
|
119
|
+
.logo-name {
|
120
|
+
color: #e6e6e6;
|
121
|
+
font-size: 180px;
|
122
|
+
font-weight: 800;
|
123
|
+
letter-spacing: -10px;
|
124
|
+
margin-bottom: 0px;
|
125
|
+
}
|
126
|
+
|
127
|
+
.middle-box h1 {
|
128
|
+
font-size: 170px;
|
129
|
+
}
|
130
|
+
|
131
|
+
.wrapper .middle-box {
|
132
|
+
margin-top: 140px;
|
133
|
+
}
|
134
|
+
|
135
|
+
.lock-word {
|
136
|
+
z-index: 10;
|
137
|
+
position: absolute;
|
138
|
+
top: 110px;
|
139
|
+
left: 50%;
|
140
|
+
margin-left: -470px;
|
141
|
+
}
|
142
|
+
|
143
|
+
.lock-word span {
|
144
|
+
font-size: 100px;
|
145
|
+
font-weight: 600;
|
146
|
+
color: #e9e9e9;
|
147
|
+
display: inline-block;
|
148
|
+
}
|
149
|
+
|
150
|
+
.lock-word .first-word {
|
151
|
+
margin-right: 160px;
|
152
|
+
}
|
153
|
+
|
154
|
+
/* DASBOARD */
|
155
|
+
|
156
|
+
.dashboard-header {
|
157
|
+
border-top: 0;
|
158
|
+
padding: 20px 20px 20px 20px;
|
159
|
+
}
|
160
|
+
|
161
|
+
.dashboard-header h2 {
|
162
|
+
margin-top: 10px;
|
163
|
+
font-size: 26px;
|
164
|
+
}
|
165
|
+
|
166
|
+
.fist-item {
|
167
|
+
border-top: none !important;
|
168
|
+
}
|
169
|
+
|
170
|
+
.statistic-box {
|
171
|
+
margin-top: 40px;
|
172
|
+
}
|
173
|
+
|
174
|
+
.dashboard-header .list-group-item span.label {
|
175
|
+
margin-right: 10px;
|
176
|
+
}
|
177
|
+
|
178
|
+
.list-group.clear-list .list-group-item {
|
179
|
+
border-top: 1px solid $border-color;
|
180
|
+
border-bottom: 0;
|
181
|
+
border-right: 0;
|
182
|
+
border-left: 0;
|
183
|
+
padding: 10px 0;
|
184
|
+
}
|
185
|
+
|
186
|
+
ul.clear-list:first-child {
|
187
|
+
border-top: none !important;
|
188
|
+
}
|
189
|
+
|
190
|
+
/* Intimeline */
|
191
|
+
|
192
|
+
.timeline-item .date i {
|
193
|
+
position: absolute;
|
194
|
+
top: 0;
|
195
|
+
right: 0;
|
196
|
+
padding: 5px;
|
197
|
+
width: 30px;
|
198
|
+
text-align: center;
|
199
|
+
border-top: 1px solid $border-color;
|
200
|
+
border-bottom: 1px solid $border-color;
|
201
|
+
border-left: 1px solid $border-color;
|
202
|
+
background: #f8f8f8;
|
203
|
+
}
|
204
|
+
|
205
|
+
.timeline-item .date {
|
206
|
+
text-align: right;
|
207
|
+
width: 110px;
|
208
|
+
position: relative;
|
209
|
+
padding-top: 30px;
|
210
|
+
}
|
211
|
+
|
212
|
+
.timeline-item .content {
|
213
|
+
border-left: 1px solid $border-color;
|
214
|
+
border-top: 1px solid $border-color;
|
215
|
+
padding-top: 10px;
|
216
|
+
min-height: 100px;
|
217
|
+
}
|
218
|
+
|
219
|
+
.timeline-item .content:hover {
|
220
|
+
background: #f6f6f6;
|
221
|
+
}
|
222
|
+
|
223
|
+
/* PIN BOARD */
|
224
|
+
ul.notes li, ul.tag-list li {
|
225
|
+
list-style: none;
|
226
|
+
}
|
227
|
+
|
228
|
+
ul.notes li h4 {
|
229
|
+
margin-top: 20px;
|
230
|
+
font-size: 16px;
|
231
|
+
}
|
232
|
+
|
233
|
+
ul.notes li div {
|
234
|
+
text-decoration: none;
|
235
|
+
color: black;
|
236
|
+
background: #ffffcc;
|
237
|
+
display: block;
|
238
|
+
height: 140px;
|
239
|
+
width: 140px;
|
240
|
+
padding: 1em;
|
241
|
+
position: relative;
|
242
|
+
}
|
243
|
+
|
244
|
+
ul.notes li div small {
|
245
|
+
position: absolute;
|
246
|
+
top: 5px;
|
247
|
+
right: 5px;
|
248
|
+
font-size: 10px;
|
249
|
+
}
|
250
|
+
|
251
|
+
ul.notes li div a {
|
252
|
+
position: absolute;
|
253
|
+
right: 10px;
|
254
|
+
bottom: 10px;
|
255
|
+
color: inherit;
|
256
|
+
}
|
257
|
+
|
258
|
+
ul.notes li {
|
259
|
+
margin: 10px 40px 50px 0px;
|
260
|
+
float: left;
|
261
|
+
}
|
262
|
+
|
263
|
+
ul.notes li div p {
|
264
|
+
font-size: 12px;
|
265
|
+
}
|
266
|
+
|
267
|
+
ul.notes li div {
|
268
|
+
text-decoration: none;
|
269
|
+
color: black;
|
270
|
+
background: #ffffcc;
|
271
|
+
display: block;
|
272
|
+
height: 140px;
|
273
|
+
width: 140px;
|
274
|
+
padding: 1em;
|
275
|
+
/* Firefox */
|
276
|
+
-moz-box-shadow: 5px 5px 2px rgba(33, 33, 33, 1);
|
277
|
+
/* Safari+Chrome */
|
278
|
+
-webkit-box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);
|
279
|
+
/* Opera */
|
280
|
+
box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);
|
281
|
+
}
|
282
|
+
|
283
|
+
ul.notes li div {
|
284
|
+
-webkit-transform: rotate(-6deg);
|
285
|
+
-o-transform: rotate(-6deg);
|
286
|
+
-moz-transform: rotate(-6deg);
|
287
|
+
}
|
288
|
+
|
289
|
+
ul.notes li:nth-child(even) div {
|
290
|
+
-o-transform: rotate(4deg);
|
291
|
+
-webkit-transform: rotate(4deg);
|
292
|
+
-moz-transform: rotate(4deg);
|
293
|
+
position: relative;
|
294
|
+
top: 5px;
|
295
|
+
}
|
296
|
+
|
297
|
+
ul.notes li:nth-child(3n) div {
|
298
|
+
-o-transform: rotate(-3deg);
|
299
|
+
-webkit-transform: rotate(-3deg);
|
300
|
+
-moz-transform: rotate(-3deg);
|
301
|
+
position: relative;
|
302
|
+
top: -5px;
|
303
|
+
}
|
304
|
+
|
305
|
+
ul.notes li:nth-child(5n) div {
|
306
|
+
-o-transform: rotate(5deg);
|
307
|
+
-webkit-transform: rotate(5deg);
|
308
|
+
-moz-transform: rotate(5deg);
|
309
|
+
position: relative;
|
310
|
+
top: -10px;
|
311
|
+
}
|
312
|
+
|
313
|
+
ul.notes li div:hover, ul.notes li div:focus {
|
314
|
+
-webkit-transform: scale(1.1);
|
315
|
+
-moz-transform: scale(1.1);
|
316
|
+
-o-transform: scale(1.1);
|
317
|
+
position: relative;
|
318
|
+
z-index: 5;
|
319
|
+
}
|
320
|
+
|
321
|
+
ul.notes li div {
|
322
|
+
text-decoration: none;
|
323
|
+
color: black;
|
324
|
+
background: #ffffcc;
|
325
|
+
display: block;
|
326
|
+
height: 210px;
|
327
|
+
width: 210px;
|
328
|
+
padding: 1em;
|
329
|
+
-moz-box-shadow: 5px 5px 7px rgba(33, 33, 33, 1);
|
330
|
+
-webkit-box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);
|
331
|
+
box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);
|
332
|
+
-moz-transition: -moz-transform 0.15s linear;
|
333
|
+
-o-transition: -o-transform 0.15s linear;
|
334
|
+
-webkit-transition: -webkit-transform 0.15s linear;
|
335
|
+
}
|
336
|
+
|
337
|
+
/* FILE MANAGER */
|
338
|
+
|
339
|
+
.file-box {
|
340
|
+
float: left;
|
341
|
+
width: 220px;
|
342
|
+
}
|
343
|
+
|
344
|
+
.file-manager h5 {
|
345
|
+
text-transform: uppercase;
|
346
|
+
}
|
347
|
+
|
348
|
+
.file-manager {
|
349
|
+
list-style: none outside none;
|
350
|
+
margin: 0;
|
351
|
+
padding: 0;
|
352
|
+
}
|
353
|
+
|
354
|
+
.folder-list li a {
|
355
|
+
color: #666666;
|
356
|
+
display: block;
|
357
|
+
padding: 5px 0;
|
358
|
+
}
|
359
|
+
|
360
|
+
.folder-list li {
|
361
|
+
border-bottom: 1px solid $border-color;
|
362
|
+
display: block;
|
363
|
+
}
|
364
|
+
|
365
|
+
.folder-list li i {
|
366
|
+
margin-right: 8px;
|
367
|
+
color: #3d4d5d;
|
368
|
+
}
|
369
|
+
|
370
|
+
.category-list li a {
|
371
|
+
color: #666666;
|
372
|
+
display: block;
|
373
|
+
padding: 5px 0;
|
374
|
+
}
|
375
|
+
|
376
|
+
.category-list li {
|
377
|
+
display: block;
|
378
|
+
}
|
379
|
+
|
380
|
+
.category-list li i {
|
381
|
+
margin-right: 8px;
|
382
|
+
color: #3d4d5d;
|
383
|
+
}
|
384
|
+
|
385
|
+
.category-list li a .text-navy {
|
386
|
+
color: $navy;
|
387
|
+
}
|
388
|
+
|
389
|
+
.category-list li a .text-primary {
|
390
|
+
color: $blue;
|
391
|
+
}
|
392
|
+
|
393
|
+
.category-list li a .text-info {
|
394
|
+
color: $lazur;
|
395
|
+
}
|
396
|
+
|
397
|
+
.category-list li a .text-danger {
|
398
|
+
color: #ef5352;
|
399
|
+
}
|
400
|
+
|
401
|
+
.category-list li a .text-warning {
|
402
|
+
color: #f8ac59;
|
403
|
+
}
|
404
|
+
|
405
|
+
.file-manager h5.tag-title {
|
406
|
+
margin-top: 20px;
|
407
|
+
}
|
408
|
+
|
409
|
+
.tag-list li {
|
410
|
+
float: left;
|
411
|
+
}
|
412
|
+
|
413
|
+
.tag-list li a {
|
414
|
+
font-size: 10px;
|
415
|
+
background-color: $gray;
|
416
|
+
padding: 5px 12px;
|
417
|
+
color: inherit;
|
418
|
+
border-radius: 2px;
|
419
|
+
border: 1px solid $border-color;
|
420
|
+
margin-right: 5px;
|
421
|
+
margin-top: 5px;
|
422
|
+
display: block;
|
423
|
+
}
|
424
|
+
|
425
|
+
.file {
|
426
|
+
border: 1px solid $border-color;
|
427
|
+
padding: 0;
|
428
|
+
background-color: white;
|
429
|
+
position: relative;
|
430
|
+
margin-bottom: 20px;
|
431
|
+
margin-right: 20px;
|
432
|
+
}
|
433
|
+
|
434
|
+
.file-manager .hr-line-dashed {
|
435
|
+
margin: 15px 0;
|
436
|
+
}
|
437
|
+
|
438
|
+
.file .icon, .file .image {
|
439
|
+
height: 100px;
|
440
|
+
overflow: hidden;
|
441
|
+
}
|
442
|
+
|
443
|
+
.file .icon {
|
444
|
+
padding: 15px 10px;
|
445
|
+
text-align: center;
|
446
|
+
}
|
447
|
+
|
448
|
+
.file-control {
|
449
|
+
color: inherit;
|
450
|
+
font-size: 11px;
|
451
|
+
margin-right: 10px;
|
452
|
+
}
|
453
|
+
|
454
|
+
.file-control.active {
|
455
|
+
text-decoration: underline;
|
456
|
+
}
|
457
|
+
|
458
|
+
.file .icon i {
|
459
|
+
font-size: 70px;
|
460
|
+
color: #dadada;
|
461
|
+
}
|
462
|
+
|
463
|
+
.file .file-name {
|
464
|
+
padding: 10px;
|
465
|
+
background-color: #f8f8f8;
|
466
|
+
border-top: 1px solid $border-color;
|
467
|
+
}
|
468
|
+
|
469
|
+
.file-name small {
|
470
|
+
color: $text-color;
|
471
|
+
}
|
472
|
+
|
473
|
+
.corner {
|
474
|
+
position: absolute;
|
475
|
+
display: inline-block;
|
476
|
+
width: 0;
|
477
|
+
height: 0;
|
478
|
+
line-height: 0;
|
479
|
+
border: 0.6em solid transparent;
|
480
|
+
border-right: 0.6em solid #f1f1f1;
|
481
|
+
border-bottom: 0.6em solid #f1f1f1;
|
482
|
+
right: 0em;
|
483
|
+
bottom: 0em;
|
484
|
+
}
|
485
|
+
|
486
|
+
a.compose-mail {
|
487
|
+
padding: 8px 10px;
|
488
|
+
}
|
489
|
+
|
490
|
+
.mail-search {
|
491
|
+
max-width: 300px;
|
492
|
+
}
|
493
|
+
|
494
|
+
/* PROFILE */
|
495
|
+
|
496
|
+
.profile-content {
|
497
|
+
border-top: none !important;
|
498
|
+
}
|
499
|
+
|
500
|
+
.profile-stats {
|
501
|
+
margin-right: 10px;
|
502
|
+
}
|
503
|
+
|
504
|
+
.profile-image {
|
505
|
+
width: 120px;
|
506
|
+
float: left;
|
507
|
+
}
|
508
|
+
|
509
|
+
.profile-image img {
|
510
|
+
width: 96px;
|
511
|
+
height: 96px;
|
512
|
+
}
|
513
|
+
|
514
|
+
.profile-info {
|
515
|
+
margin-left: 120px;
|
516
|
+
}
|
517
|
+
|
518
|
+
.feed-activity-list .feed-element {
|
519
|
+
border-bottom: 1px solid $border-color;
|
520
|
+
}
|
521
|
+
|
522
|
+
.feed-element:first-child {
|
523
|
+
margin-top: 0;
|
524
|
+
}
|
525
|
+
|
526
|
+
.feed-element {
|
527
|
+
padding-bottom: 15px;
|
528
|
+
}
|
529
|
+
|
530
|
+
.feed-element, .feed-element .media {
|
531
|
+
margin-top: 15px;
|
532
|
+
}
|
533
|
+
|
534
|
+
.feed-element, .media-body {
|
535
|
+
overflow: hidden;
|
536
|
+
}
|
537
|
+
|
538
|
+
.feed-element > .pull-left {
|
539
|
+
margin-right: 10px;
|
540
|
+
}
|
541
|
+
|
542
|
+
.feed-element img.img-circle, .dropdown-messages-box img.img-circle {
|
543
|
+
width: 38px;
|
544
|
+
height: 38px;
|
545
|
+
}
|
546
|
+
|
547
|
+
.feed-element .well {
|
548
|
+
border: 1px solid $border-color;
|
549
|
+
box-shadow: none;
|
550
|
+
margin-top: 10px;
|
551
|
+
margin-bottom: 5px;
|
552
|
+
padding: 10px 20px;
|
553
|
+
font-size: 11px;
|
554
|
+
line-height: 16px;
|
555
|
+
}
|
556
|
+
|
557
|
+
.feed-element .actions {
|
558
|
+
margin-top: 10px;
|
559
|
+
}
|
560
|
+
|
561
|
+
.feed-element .photos {
|
562
|
+
margin: 10px 0;
|
563
|
+
}
|
564
|
+
|
565
|
+
.feed-photo {
|
566
|
+
max-height: 180px;
|
567
|
+
border-radius: 4px;
|
568
|
+
overflow: hidden;
|
569
|
+
margin-right: 10px;
|
570
|
+
margin-bottom: 10px;
|
571
|
+
}
|
572
|
+
|
573
|
+
.file-list li {
|
574
|
+
padding: 5px 10px;
|
575
|
+
font-size: 11px;
|
576
|
+
border-radius: 2px;
|
577
|
+
border: 1px solid $border-color;
|
578
|
+
margin-bottom: 5px;
|
579
|
+
|
580
|
+
}
|
581
|
+
|
582
|
+
.file-list li a {
|
583
|
+
color: inherit;
|
584
|
+
}
|
585
|
+
|
586
|
+
.file-list li a:hover {
|
587
|
+
color: $navy;
|
588
|
+
}
|
589
|
+
|
590
|
+
.user-friends img {
|
591
|
+
width: 42px;
|
592
|
+
height: 42px;
|
593
|
+
margin-bottom: 5px;
|
594
|
+
margin-right: 5px;
|
595
|
+
|
596
|
+
}
|
597
|
+
|
598
|
+
/* MAILBOX */
|
599
|
+
|
600
|
+
.mail-box {
|
601
|
+
background-color: white;
|
602
|
+
border: 1px solid $border-color;
|
603
|
+
border-top: 0;
|
604
|
+
padding: 0px;
|
605
|
+
margin-bottom: 20px;
|
606
|
+
}
|
607
|
+
|
608
|
+
.mail-box-header {
|
609
|
+
background-color: white;
|
610
|
+
border: 1px solid $border-color;
|
611
|
+
border-bottom: 0;
|
612
|
+
padding: 30px 20px 20px 20px;
|
613
|
+
}
|
614
|
+
|
615
|
+
.mail-box-header h2 {
|
616
|
+
margin-top: 0px;
|
617
|
+
}
|
618
|
+
|
619
|
+
.mailbox-content .tag-list li a {
|
620
|
+
background: white;
|
621
|
+
}
|
622
|
+
|
623
|
+
.mail-body {
|
624
|
+
border-top: 1px solid $border-color;
|
625
|
+
padding: 20px;
|
626
|
+
}
|
627
|
+
|
628
|
+
.mail-text {
|
629
|
+
border-top: 1px solid $border-color;
|
630
|
+
}
|
631
|
+
|
632
|
+
.mail-text .note-toolbar {
|
633
|
+
padding: 10px 15px;
|
634
|
+
}
|
635
|
+
|
636
|
+
.mail-body .form-group {
|
637
|
+
margin-bottom: 5px;
|
638
|
+
}
|
639
|
+
|
640
|
+
.mail-text .note-editor .note-toolbar {
|
641
|
+
background-color: #f9f8f8;
|
642
|
+
}
|
643
|
+
|
644
|
+
.mail-attachment {
|
645
|
+
border-top: 1px solid $border-color;
|
646
|
+
padding: 20px;
|
647
|
+
font-size: 12px;
|
648
|
+
}
|
649
|
+
|
650
|
+
.mailbox-content {
|
651
|
+
background: none;
|
652
|
+
border: none;
|
653
|
+
padding: 10px;
|
654
|
+
}
|
655
|
+
|
656
|
+
.mail-ontact {
|
657
|
+
width: 23%;
|
658
|
+
}
|
659
|
+
|
660
|
+
/* PROJECTS */
|
661
|
+
.project-people, .project-actions {
|
662
|
+
text-align: right;
|
663
|
+
vertical-align: middle;
|
664
|
+
}
|
665
|
+
|
666
|
+
dd.project-people {
|
667
|
+
text-align: left;
|
668
|
+
margin-top: 5px;
|
669
|
+
}
|
670
|
+
|
671
|
+
.project-people img {
|
672
|
+
width: 32px;
|
673
|
+
height: 32px;
|
674
|
+
}
|
675
|
+
|
676
|
+
.project-title a {
|
677
|
+
font-size: 14px;
|
678
|
+
color: $text-color;
|
679
|
+
font-weight: 600;
|
680
|
+
}
|
681
|
+
|
682
|
+
.project-list table tr td {
|
683
|
+
border-top: none;
|
684
|
+
border-bottom: 1px solid $border-color;
|
685
|
+
padding: 15px 10px;
|
686
|
+
vertical-align: middle;
|
687
|
+
}
|
688
|
+
|
689
|
+
.project-manager .tag-list li a {
|
690
|
+
font-size: 10px;
|
691
|
+
background-color: white;
|
692
|
+
padding: 5px 12px;
|
693
|
+
color: inherit;
|
694
|
+
border-radius: 2px;
|
695
|
+
border: 1px solid $border-color;
|
696
|
+
margin-right: 5px;
|
697
|
+
margin-top: 5px;
|
698
|
+
display: block;
|
699
|
+
}
|
700
|
+
|
701
|
+
.project-files li a {
|
702
|
+
font-size: 11px;
|
703
|
+
color: $text-color;
|
704
|
+
margin-left: 10px;
|
705
|
+
line-height: 22px;
|
706
|
+
}
|
707
|
+
|
708
|
+
/* FAQ */
|
709
|
+
|
710
|
+
.faq-item {
|
711
|
+
padding: 20px;
|
712
|
+
margin-bottom: 2px;
|
713
|
+
background: white;
|
714
|
+
}
|
715
|
+
|
716
|
+
.faq-question {
|
717
|
+
font-size: 18px;
|
718
|
+
font-weight: 600;
|
719
|
+
color: $navy;
|
720
|
+
display: block;
|
721
|
+
}
|
722
|
+
|
723
|
+
.faq-question:hover {
|
724
|
+
color: darken($navy, 5%);
|
725
|
+
}
|
726
|
+
|
727
|
+
.faq-answer {
|
728
|
+
margin-top: 10px;
|
729
|
+
background: $gray;
|
730
|
+
border: 1px solid $border-color;
|
731
|
+
border-radius: 3px;
|
732
|
+
padding: 15px;
|
733
|
+
}
|
734
|
+
|
735
|
+
.faq-item .tag-item {
|
736
|
+
background: $gray;
|
737
|
+
padding: 2px 6px;
|
738
|
+
font-size: 10px;
|
739
|
+
text-transform: uppercase;
|
740
|
+
}
|
741
|
+
|
742
|
+
|
743
|
+
/* Chat view */
|
744
|
+
.message-input {
|
745
|
+
height: 90px !important;
|
746
|
+
}
|
747
|
+
|
748
|
+
.chat-avatar {
|
749
|
+
white: 36px;
|
750
|
+
height: 36px;
|
751
|
+
float: left;
|
752
|
+
margin-right: 10px;
|
753
|
+
}
|
754
|
+
|
755
|
+
.chat-user-name {
|
756
|
+
padding: 10px;
|
757
|
+
}
|
758
|
+
|
759
|
+
.chat-user {
|
760
|
+
padding: 8px 10px;
|
761
|
+
border-bottom: 1px solid #e7eaec;
|
762
|
+
}
|
763
|
+
|
764
|
+
.chat-user a {
|
765
|
+
color: inherit;
|
766
|
+
}
|
767
|
+
|
768
|
+
.chat-view {
|
769
|
+
z-index: 20012;
|
770
|
+
}
|
771
|
+
|
772
|
+
.chat-users, .chat-statistic {
|
773
|
+
margin-left: -30px;
|
774
|
+
}
|
775
|
+
|
776
|
+
@media (max-width: 992px) {
|
777
|
+
.chat-users,.chat-statistic {
|
778
|
+
margin-left: 0px;
|
779
|
+
}
|
780
|
+
}
|
781
|
+
.chat-view .ibox-content {
|
782
|
+
padding: 0;
|
783
|
+
}
|
784
|
+
|
785
|
+
.chat-message {
|
786
|
+
padding: 10px 20px;
|
787
|
+
}
|
788
|
+
|
789
|
+
.message-avatar {
|
790
|
+
height: 48px;
|
791
|
+
width: 48px;
|
792
|
+
border: 1px solid #e7eaec;
|
793
|
+
border-radius: 4px;
|
794
|
+
margin-top: 1px;
|
795
|
+
}
|
796
|
+
|
797
|
+
.chat-discussion .chat-message.left .message-avatar {
|
798
|
+
float: left;
|
799
|
+
margin-right: 10px;
|
800
|
+
}
|
801
|
+
|
802
|
+
.chat-discussion .chat-message.right .message-avatar {
|
803
|
+
float: right;
|
804
|
+
margin-left: 10px;
|
805
|
+
}
|
806
|
+
|
807
|
+
.message {
|
808
|
+
background-color: #fff;
|
809
|
+
border: 1px solid #e7eaec;
|
810
|
+
text-align: left;
|
811
|
+
display: block;
|
812
|
+
padding: 10px 20px;
|
813
|
+
position: relative;
|
814
|
+
border-radius: 4px;
|
815
|
+
}
|
816
|
+
|
817
|
+
.chat-discussion .chat-message.left .message-date {
|
818
|
+
float: right;
|
819
|
+
}
|
820
|
+
|
821
|
+
.chat-discussion .chat-message.right .message-date {
|
822
|
+
float: left;
|
823
|
+
}
|
824
|
+
|
825
|
+
.chat-discussion .chat-message.left .message {
|
826
|
+
text-align: left;
|
827
|
+
margin-left: 55px;
|
828
|
+
}
|
829
|
+
|
830
|
+
.chat-discussion .chat-message.right .message {
|
831
|
+
text-align: right;
|
832
|
+
margin-right: 55px;
|
833
|
+
}
|
834
|
+
|
835
|
+
.message-date {
|
836
|
+
font-size: 10px;
|
837
|
+
color: #888888;
|
838
|
+
}
|
839
|
+
|
840
|
+
.message-content {
|
841
|
+
display: block;
|
842
|
+
}
|
843
|
+
|
844
|
+
.chat-discussion {
|
845
|
+
background: #eee;
|
846
|
+
padding: 15px;
|
847
|
+
height: 400px;
|
848
|
+
overflow-y: auto;
|
849
|
+
}
|
850
|
+
|
851
|
+
.chat-users {
|
852
|
+
overflow-y: auto;
|
853
|
+
height: 400px;
|
854
|
+
}
|
855
|
+
|
856
|
+
.chat-message-form .form-group {
|
857
|
+
margin-bottom: 0;
|
858
|
+
}
|
859
|
+
|
860
|
+
/* jsTree */
|
861
|
+
.jstree-open > .jstree-anchor > .fa-folder:before {
|
862
|
+
content: "\f07c";
|
863
|
+
}
|
864
|
+
|
865
|
+
.jstree-default .jstree-icon.none {
|
866
|
+
width: 0;
|
867
|
+
}
|
868
|
+
|
869
|
+
|
870
|
+
/* CLIENTS */
|
871
|
+
|
872
|
+
.clients-list {
|
873
|
+
margin-top: 20px;
|
874
|
+
}
|
875
|
+
|
876
|
+
.clients-list .tab-pane {
|
877
|
+
position: relative;
|
878
|
+
height: 600px;
|
879
|
+
}
|
880
|
+
|
881
|
+
.client-detail {
|
882
|
+
position: relative;
|
883
|
+
height: 620px;
|
884
|
+
}
|
885
|
+
|
886
|
+
.clients-list table tr td {
|
887
|
+
height: 46px;
|
888
|
+
vertical-align: middle;
|
889
|
+
border: none ;
|
890
|
+
}
|
891
|
+
|
892
|
+
.client-link {
|
893
|
+
font-weight: 600;
|
894
|
+
color: inherit;
|
895
|
+
}
|
896
|
+
|
897
|
+
.client-link:hover {
|
898
|
+
color: inherit;
|
899
|
+
}
|
900
|
+
|
901
|
+
.client-avatar {
|
902
|
+
width: 42px;
|
903
|
+
}
|
904
|
+
|
905
|
+
.client-avatar img {
|
906
|
+
width: 28px;
|
907
|
+
height: 28px;
|
908
|
+
border-radius: 50%;
|
909
|
+
}
|
910
|
+
|
911
|
+
.contact-type {
|
912
|
+
width: 20px;
|
913
|
+
color: lighten($text-color, 35%);
|
914
|
+
}
|
915
|
+
|
916
|
+
.client-status {
|
917
|
+
text-align: left;
|
918
|
+
}
|
919
|
+
|
920
|
+
.client-detail .vertical-timeline-content p {
|
921
|
+
margin: 0;
|
922
|
+
}
|
923
|
+
|
924
|
+
.client-detail .vertical-timeline-icon.gray-bg {
|
925
|
+
color: lighten($text-color, 25px);
|
926
|
+
}
|
927
|
+
|
928
|
+
.clients-list {
|
929
|
+
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
|
930
|
+
border-bottom: 1px solid #fff;
|
931
|
+
}
|
932
|
+
}
|
933
|
+
|
934
|
+
/* BLOG ARTICLE */
|
935
|
+
.blog h2 {
|
936
|
+
font-weight: 700;
|
937
|
+
}
|
938
|
+
|
939
|
+
.blog h5 {
|
940
|
+
margin: 0 0 5px 0;
|
941
|
+
}
|
942
|
+
|
943
|
+
.blog .btn{
|
944
|
+
margin: 0 0 5px 0;
|
945
|
+
}
|
946
|
+
|
947
|
+
.article h1 {
|
948
|
+
font-size: 48px;
|
949
|
+
font-weight: 700;
|
950
|
+
color: #2F4050;
|
951
|
+
}
|
952
|
+
|
953
|
+
.article p {
|
954
|
+
font-size: 15px;
|
955
|
+
line-height: 26px;
|
956
|
+
}
|
957
|
+
|
958
|
+
.article-title {
|
959
|
+
text-align: center;
|
960
|
+
margin: 40px 0 100px 0;
|
961
|
+
}
|
962
|
+
|
963
|
+
.article .ibox-content {
|
964
|
+
padding: 40px;
|
965
|
+
}
|
966
|
+
|
967
|
+
/* ISSUE TRACKER */
|
968
|
+
|
969
|
+
.issue-tracker .btn-link {
|
970
|
+
color: $navy;
|
971
|
+
}
|
972
|
+
|
973
|
+
table.issue-tracker tbody tr td {
|
974
|
+
vertical-align: middle;
|
975
|
+
height: 50px;
|
976
|
+
}
|
977
|
+
|
978
|
+
.issue-info {
|
979
|
+
width: 50%;
|
980
|
+
}
|
981
|
+
|
982
|
+
.issue-info a {
|
983
|
+
font-weight: 600;
|
984
|
+
color: $text-color;
|
985
|
+
}
|
986
|
+
|
987
|
+
.issue-info small {
|
988
|
+
display: block;
|
989
|
+
}
|
990
|
+
|
991
|
+
/* TEAMS */
|
992
|
+
.team-members {
|
993
|
+
margin: 10px 0;
|
994
|
+
}
|
995
|
+
|
996
|
+
.team-members img.img-circle {
|
997
|
+
width: 42px;
|
998
|
+
height: 42px;
|
999
|
+
margin-bottom: 5px;
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
/* AGILE BOARD */
|
1003
|
+
|
1004
|
+
.sortable-list {
|
1005
|
+
padding: 10px 0;
|
1006
|
+
}
|
1007
|
+
.agile-list {
|
1008
|
+
list-style: none;
|
1009
|
+
margin: 0;
|
1010
|
+
}
|
1011
|
+
.agile-list li {
|
1012
|
+
|
1013
|
+
background: #FAFAFB;
|
1014
|
+
border: 1px solid #e7eaec;
|
1015
|
+
margin: 0px 0 10px 0;
|
1016
|
+
padding: 10px;
|
1017
|
+
border-radius: 2px;
|
1018
|
+
}
|
1019
|
+
.agile-list li:hover {
|
1020
|
+
cursor: pointer;
|
1021
|
+
background: #fff;
|
1022
|
+
}
|
1023
|
+
.agile-list li.warning-element {
|
1024
|
+
border-left: 3px solid $yellow;
|
1025
|
+
}
|
1026
|
+
.agile-list li.danger-element {
|
1027
|
+
border-left: 3px solid $red;
|
1028
|
+
}
|
1029
|
+
.agile-list li.info-element {
|
1030
|
+
border-left: 3px solid $blue;
|
1031
|
+
}
|
1032
|
+
.agile-list li.success-element {
|
1033
|
+
border-left: 3px solid $navy;
|
1034
|
+
}
|
1035
|
+
.agile-detail {
|
1036
|
+
margin-top: 5px;
|
1037
|
+
font-size: 12px;
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
/* DIFF */
|
1041
|
+
ins {
|
1042
|
+
background-color: #c6ffc6;
|
1043
|
+
text-decoration: none;
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
del {
|
1047
|
+
background-color: #ffc6c6;
|
1048
|
+
}
|
1049
|
+
|
1050
|
+
|
1051
|
+
/* E-commerce */
|
1052
|
+
.product-box {
|
1053
|
+
padding: 0;
|
1054
|
+
|
1055
|
+
border: 1px solid $border-color;
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
.product-box:hover,
|
1059
|
+
.product-box.active {
|
1060
|
+
border: 1px solid transparent;
|
1061
|
+
-webkit-box-shadow: 0px 3px 7px 0px rgba(168,168,168,1);
|
1062
|
+
-moz-box-shadow: 0px 3px 7px 0px rgba(168,168,168,1);
|
1063
|
+
box-shadow: 0px 3px 7px 0px rgba(168,168,168,1);
|
1064
|
+
}
|
1065
|
+
|
1066
|
+
.product-imitation {
|
1067
|
+
text-align: center;
|
1068
|
+
padding: 90px 0;
|
1069
|
+
background-color: lighten($gray, 2%);
|
1070
|
+
color: darken($gray, 20%);
|
1071
|
+
font-weight: 600;
|
1072
|
+
}
|
1073
|
+
|
1074
|
+
.product-imitation.xl {
|
1075
|
+
padding: 120px 0;
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
.product-desc {
|
1079
|
+
padding: 20px;
|
1080
|
+
position: relative;
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
.ecommerce .tag-list {
|
1084
|
+
padding: 0;
|
1085
|
+
}
|
1086
|
+
|
1087
|
+
.ecommerce .fa-star {
|
1088
|
+
color: $light-gray;
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
.ecommerce .fa-star.active {
|
1092
|
+
color: $yellow;
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
.ecommerce .note-editor {
|
1096
|
+
border: 1px solid $border-color;
|
1097
|
+
}
|
1098
|
+
|
1099
|
+
.product-name {
|
1100
|
+
font-size: 16px;
|
1101
|
+
font-weight: 600;
|
1102
|
+
color: $text-color;
|
1103
|
+
display: block;
|
1104
|
+
margin: 2px 0 5px 0;
|
1105
|
+
}
|
1106
|
+
|
1107
|
+
.product-name:hover,
|
1108
|
+
.product-name:focus {
|
1109
|
+
color: $navy;
|
1110
|
+
}
|
1111
|
+
|
1112
|
+
.product-price {
|
1113
|
+
font-size: 14px;
|
1114
|
+
font-weight: 600;
|
1115
|
+
color: #ffffff;
|
1116
|
+
background-color: $navy;
|
1117
|
+
padding: 6px 12px;
|
1118
|
+
|
1119
|
+
position: absolute;
|
1120
|
+
top: -32px;
|
1121
|
+
right: 0;
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
.product-detail .ibox-content{
|
1125
|
+
padding: 30px 30px 50px 30px;
|
1126
|
+
}
|
1127
|
+
|
1128
|
+
.image-imitation {
|
1129
|
+
background-color: lighten($gray, 2%);
|
1130
|
+
text-align: center;
|
1131
|
+
padding: 200px 0;
|
1132
|
+
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
.product-main-price small {
|
1136
|
+
font-size: 10px;
|
1137
|
+
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
.product-images {
|
1141
|
+
margin: 0 20px;
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
/* Social feed */
|
1145
|
+
.social-feed-separated .social-feed-box {
|
1146
|
+
margin-left: 62px;
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
.social-feed-separated .social-avatar {
|
1150
|
+
float: left;
|
1151
|
+
padding: 0;
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
.social-feed-separated .social-avatar img {
|
1155
|
+
width: 52px;
|
1156
|
+
height: 52px;
|
1157
|
+
border: 1px solid #e7eaec;
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
.social-feed-separated .social-feed-box .social-avatar {
|
1161
|
+
padding: 15px 15px 0 15px;
|
1162
|
+
float: none;
|
1163
|
+
}
|
1164
|
+
|
1165
|
+
.social-feed-box {
|
1166
|
+
/*padding: 15px;*/
|
1167
|
+
border: 1px solid #e7eaec;
|
1168
|
+
background: #fff;
|
1169
|
+
margin-bottom: 15px;
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
.article .social-feed-box {
|
1173
|
+
margin-bottom: 0;
|
1174
|
+
border-bottom: none;
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
.article .social-feed-box:last-child{
|
1178
|
+
margin-bottom: 0;
|
1179
|
+
border-bottom: 1px solid $border-color;
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
.article .social-feed-box p {
|
1183
|
+
font-size: 13px;
|
1184
|
+
line-height: 18px;
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
.social-action {
|
1188
|
+
margin: 15px;
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
.social-avatar {
|
1192
|
+
padding: 15px 15px 0 15px;
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
.social-comment .social-comment {
|
1196
|
+
margin-left: 45px;
|
1197
|
+
}
|
1198
|
+
|
1199
|
+
.social-avatar img {
|
1200
|
+
height: 40px;
|
1201
|
+
width: 40px;
|
1202
|
+
margin-right: 10px;
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.social-avatar .media-body a {
|
1206
|
+
font-size: 14px;
|
1207
|
+
display: block;
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
.social-body {
|
1211
|
+
padding: 15px;
|
1212
|
+
}
|
1213
|
+
|
1214
|
+
.social-body img {
|
1215
|
+
margin-bottom: 10px;
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
.social-footer {
|
1219
|
+
border-top: 1px solid #e7eaec;
|
1220
|
+
padding: 10px 15px;
|
1221
|
+
background: #f9f9f9;
|
1222
|
+
}
|
1223
|
+
|
1224
|
+
.social-footer .social-comment img {
|
1225
|
+
width: 32px;
|
1226
|
+
margin-right: 10px;
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
.social-comment:first-child {
|
1230
|
+
margin-top: 0;
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
.social-comment {
|
1234
|
+
margin-top: 15px;
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.social-comment textarea {
|
1238
|
+
font-size: 12px;
|
1239
|
+
}
|
1240
|
+
|
1241
|
+
|
1242
|
+
/* Vote list */
|
1243
|
+
|
1244
|
+
.vote-item {
|
1245
|
+
padding: 20px 25px;
|
1246
|
+
background: #ffffff;
|
1247
|
+
border-top: 1px solid $border-color;
|
1248
|
+
}
|
1249
|
+
|
1250
|
+
.vote-item:last-child {
|
1251
|
+
border-bottom: 1px solid $border-color;
|
1252
|
+
}
|
1253
|
+
|
1254
|
+
.vote-item:hover {
|
1255
|
+
background: lighten($gray, 3%);
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
.vote-actions {
|
1259
|
+
float: left;
|
1260
|
+
width: 30px;
|
1261
|
+
margin-right: 15px;
|
1262
|
+
text-align: center;
|
1263
|
+
|
1264
|
+
}
|
1265
|
+
|
1266
|
+
.vote-actions a {
|
1267
|
+
color: $navy;
|
1268
|
+
font-weight: 600;
|
1269
|
+
}
|
1270
|
+
.vote-actions {
|
1271
|
+
font-weight: 600;
|
1272
|
+
}
|
1273
|
+
|
1274
|
+
.vote-title {
|
1275
|
+
display: block;
|
1276
|
+
color: inherit;
|
1277
|
+
font-size: 18px;
|
1278
|
+
font-weight: 600;
|
1279
|
+
margin-top: 5px;
|
1280
|
+
margin-bottom: 2px;
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
.vote-title:hover,.vote-title:focus{
|
1284
|
+
color: inherit;
|
1285
|
+
}
|
1286
|
+
|
1287
|
+
.vote-info, .vote-title {
|
1288
|
+
margin-left: 45px;
|
1289
|
+
}
|
1290
|
+
|
1291
|
+
.vote-info, .vote-info a {
|
1292
|
+
color: lighten($text-color, 30%);
|
1293
|
+
font-size: 12px;
|
1294
|
+
}
|
1295
|
+
|
1296
|
+
.vote-info a {
|
1297
|
+
margin-right: 10px;
|
1298
|
+
}
|
1299
|
+
|
1300
|
+
.vote-info a:hover {
|
1301
|
+
color: $navy;
|
1302
|
+
}
|
1303
|
+
|
1304
|
+
.vote-icon {
|
1305
|
+
text-align: right;
|
1306
|
+
font-size: 38px;
|
1307
|
+
display: block;
|
1308
|
+
color: lighten($text-color, 50%);
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
.vote-icon.active {
|
1312
|
+
color: $navy;
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
body.body-small .vote-icon {
|
1316
|
+
display: none;
|
1317
|
+
}
|
1318
|
+
|