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.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +0 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/images/landing/avatar1.jpg +0 -0
  5. data/app/assets/images/landing/avatar2.jpg +0 -0
  6. data/app/assets/images/landing/avatar3.jpg +0 -0
  7. data/app/assets/images/landing/avatar4.jpg +0 -0
  8. data/app/assets/images/landing/avatar5.jpg +0 -0
  9. data/app/assets/images/landing/avatar6.jpg +0 -0
  10. data/app/assets/images/landing/avatar7.jpg +0 -0
  11. data/app/assets/images/landing/avatar8.jpg +0 -0
  12. data/app/assets/images/landing/avatar9.jpg +0 -0
  13. data/app/assets/images/landing/avatar_all.png +0 -0
  14. data/app/assets/images/landing/dashboard.png +0 -0
  15. data/app/assets/images/landing/header_one.jpg +0 -0
  16. data/app/assets/images/landing/header_two.jpg +0 -0
  17. data/app/assets/images/landing/iphone.jpg +0 -0
  18. data/app/assets/images/landing/laptop.png +0 -0
  19. data/app/assets/images/landing/perspective.png +0 -0
  20. data/app/assets/images/landing/shattered.png +0 -0
  21. data/app/assets/images/landing/word_map.png +0 -0
  22. data/app/assets/images/patterns/header-profile-skin-1.png +0 -0
  23. data/app/assets/images/patterns/header-profile-skin-2.png +0 -0
  24. data/app/assets/images/patterns/header-profile-skin-3.png +0 -0
  25. data/app/assets/images/patterns/header-profile.png +0 -0
  26. data/app/assets/images/patterns/otis_redding.png +0 -0
  27. data/app/assets/images/patterns/shattered.png +0 -0
  28. data/app/assets/javascripts/inspinia.js +270 -0
  29. data/app/assets/javascripts/smart_admin.js +9 -0
  30. data/app/assets/stylesheets/smart_admin.scss +6 -0
  31. data/app/assets/stylesheets/smart_admin/base/badgets_labels.scss +66 -0
  32. data/app/assets/stylesheets/smart_admin/base/base.scss +1298 -0
  33. data/app/assets/stylesheets/smart_admin/base/buttons.scss +306 -0
  34. data/app/assets/stylesheets/smart_admin/base/chat.scss +126 -0
  35. data/app/assets/stylesheets/smart_admin/base/custom.scss +14 -0
  36. data/app/assets/stylesheets/smart_admin/base/elements.scss +2341 -0
  37. data/app/assets/stylesheets/smart_admin/base/landing.scss +636 -0
  38. data/app/assets/stylesheets/smart_admin/base/md-skin.scss +388 -0
  39. data/app/assets/stylesheets/smart_admin/base/media.scss +103 -0
  40. data/app/assets/stylesheets/smart_admin/base/metismenu.scss +81 -0
  41. data/app/assets/stylesheets/smart_admin/base/mixins.scss +0 -0
  42. data/app/assets/stylesheets/smart_admin/base/navigation.scss +501 -0
  43. data/app/assets/stylesheets/smart_admin/base/pages.scss +1318 -0
  44. data/app/assets/stylesheets/smart_admin/base/rtl.scss +267 -0
  45. data/app/assets/stylesheets/smart_admin/base/sidebar.scss +201 -0
  46. data/app/assets/stylesheets/smart_admin/base/skins.scss +460 -0
  47. data/app/assets/stylesheets/smart_admin/base/spinners.scss +760 -0
  48. data/app/assets/stylesheets/smart_admin/base/theme-config.scss +111 -0
  49. data/app/assets/stylesheets/smart_admin/base/top_navigation.scss +128 -0
  50. data/app/assets/stylesheets/smart_admin/base/typography.scss +32 -0
  51. data/app/assets/stylesheets/smart_admin/base/variables.scss +41 -0
  52. data/app/assets/stylesheets/smart_admin/style.scss +51 -0
  53. data/lib/generators/smart_admin/install_generator.rb +32 -0
  54. data/lib/generators/smart_admin/smart_admin_generator.rb +0 -0
  55. data/lib/generators/smart_admin/templates/assets/admin.js +1 -0
  56. data/lib/generators/smart_admin/templates/assets/admin.scss +3 -0
  57. data/lib/generators/smart_admin/templates/controllers/base_controller.rb +3 -0
  58. data/lib/generators/smart_admin/templates/controllers/dashboards_controller.rb +6 -0
  59. data/lib/generators/smart_admin/templates/views/admin/dashboards/index.html.haml +0 -0
  60. data/lib/generators/smart_admin/templates/views/layouts/_flash.html.erb +10 -0
  61. data/lib/generators/smart_admin/templates/views/layouts/_footer.html.haml +0 -0
  62. data/lib/generators/smart_admin/templates/views/layouts/_navigation.html.haml +32 -0
  63. data/lib/generators/smart_admin/templates/views/layouts/_rightsidebar.html.haml +0 -0
  64. data/lib/generators/smart_admin/templates/views/layouts/_skinconfig.html.haml +0 -0
  65. data/lib/generators/smart_admin/templates/views/layouts/_topnavbar.html.haml +9 -0
  66. data/lib/generators/smart_admin/templates/views/layouts/admin.html.haml +20 -0
  67. data/lib/smart_admin.rb +6 -0
  68. data/lib/smart_admin/engine.rb +4 -0
  69. data/lib/smart_admin/version.rb +3 -0
  70. data/lib/tasks/smart_admin_tasks.rake +4 -0
  71. data/test/dummy/README.rdoc +28 -0
  72. data/test/dummy/Rakefile +6 -0
  73. data/test/dummy/app/assets/javascripts/application.js +13 -0
  74. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  75. data/test/dummy/app/controllers/application_controller.rb +5 -0
  76. data/test/dummy/app/helpers/application_helper.rb +2 -0
  77. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  78. data/test/dummy/bin/bundle +3 -0
  79. data/test/dummy/bin/rails +4 -0
  80. data/test/dummy/bin/rake +4 -0
  81. data/test/dummy/bin/setup +29 -0
  82. data/test/dummy/config.ru +4 -0
  83. data/test/dummy/config/application.rb +26 -0
  84. data/test/dummy/config/boot.rb +5 -0
  85. data/test/dummy/config/database.yml +25 -0
  86. data/test/dummy/config/environment.rb +5 -0
  87. data/test/dummy/config/environments/development.rb +41 -0
  88. data/test/dummy/config/environments/production.rb +79 -0
  89. data/test/dummy/config/environments/test.rb +42 -0
  90. data/test/dummy/config/initializers/assets.rb +11 -0
  91. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  92. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  93. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  94. data/test/dummy/config/initializers/inflections.rb +16 -0
  95. data/test/dummy/config/initializers/mime_types.rb +4 -0
  96. data/test/dummy/config/initializers/session_store.rb +3 -0
  97. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  98. data/test/dummy/config/locales/en.yml +23 -0
  99. data/test/dummy/config/routes.rb +56 -0
  100. data/test/dummy/config/secrets.yml +22 -0
  101. data/test/dummy/log/development.log +58 -0
  102. data/test/dummy/public/404.html +67 -0
  103. data/test/dummy/public/422.html +67 -0
  104. data/test/dummy/public/500.html +66 -0
  105. data/test/dummy/public/favicon.ico +0 -0
  106. data/test/smart_admin_test.rb +7 -0
  107. data/test/test_helper.rb +20 -0
  108. metadata +285 -0
@@ -0,0 +1,1298 @@
1
+ body {
2
+ font-family: $font-stack;
3
+ background-color: $nav-bg;
4
+ font-size: 13px;
5
+ color: $text-color;
6
+ overflow-x: hidden;
7
+
8
+ }
9
+
10
+ html,body {
11
+ height: 100%;
12
+
13
+ }
14
+
15
+ body.full-height-layout #wrapper,
16
+ body.full-height-layout #page-wrapper {
17
+ height: 100%;
18
+ }
19
+
20
+ #page-wrapper {
21
+ min-height: auto;
22
+ }
23
+
24
+ body.boxed-layout {
25
+ background: $boxed-backgound;
26
+ }
27
+
28
+ body.boxed-layout #wrapper {
29
+ background-color: #2f4050;
30
+ max-width: $boxed-width;
31
+ margin: 0 auto;
32
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
33
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
34
+ box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
35
+ }
36
+
37
+ .top-navigation.boxed-layout #wrapper,
38
+ .boxed-layout #wrapper.top-navigation {
39
+ max-width: 1300px !important;
40
+ }
41
+
42
+ .block {
43
+ display: block;
44
+ }
45
+
46
+ .clear {
47
+ display: block;
48
+ overflow: hidden;
49
+ }
50
+
51
+ a {
52
+ cursor: pointer;
53
+ }
54
+
55
+ a:hover, a:focus {
56
+ text-decoration: none;
57
+ }
58
+
59
+ .border-bottom {
60
+ border-bottom: 1px solid $border-color !important;
61
+ }
62
+
63
+ .font-bold {
64
+ font-weight: 600;
65
+ }
66
+
67
+ .font-noraml {
68
+ font-weight: 400;
69
+ }
70
+
71
+
72
+
73
+ .text-uppercase {
74
+ text-transform: uppercase;
75
+ }
76
+
77
+ .b-r {
78
+ border-right: 1px solid $border-color;
79
+ }
80
+
81
+ .hr-line-dashed {
82
+ border-top: 1px dashed $border-color;
83
+ color: #ffffff;
84
+ background-color: #ffffff;
85
+ height: 1px;
86
+ margin: 20px 0;
87
+ }
88
+
89
+ .hr-line-solid {
90
+ border-bottom: 1px solid $border-color;
91
+ background-color: rgba(0, 0, 0, 0);
92
+ border-style: solid !important;
93
+ margin-top: 15px;
94
+ margin-bottom: 15px;
95
+ }
96
+
97
+ video {
98
+ width: 100% !important;
99
+ height: auto !important;
100
+ }
101
+
102
+ /* GALLERY */
103
+ .gallery > .row > div {
104
+ margin-bottom: 15px;
105
+ }
106
+
107
+ .fancybox img {
108
+ margin-bottom: 5px;
109
+ /* Only for demo */
110
+ width: 24%;
111
+ }
112
+
113
+ /* Summernote text editor */
114
+ .note-editor {
115
+ height: auto !important;
116
+ min-height: 300px;
117
+ }
118
+
119
+ /* MODAL */
120
+ .modal-content {
121
+ background-clip: padding-box;
122
+ background-color: #FFFFFF;
123
+ border: 1px solid rgba(0, 0, 0, 0);
124
+ border-radius: 4px;
125
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
126
+ outline: 0 none;
127
+ position: relative;
128
+ }
129
+
130
+ .modal-dialog {
131
+ z-index: 2200;
132
+ }
133
+
134
+ .modal-body {
135
+ padding: 20px 30px 30px 30px;
136
+ }
137
+
138
+
139
+ .inmodal .modal-body {
140
+ background: #f8fafb;
141
+ }
142
+
143
+ .inmodal .modal-header {
144
+ padding: 30px 15px;
145
+ text-align: center;
146
+ }
147
+
148
+ .animated.modal.fade .modal-dialog {
149
+ -webkit-transform: none;
150
+ -ms-transform: none;
151
+ -o-transform: none;
152
+ transform: none;
153
+ }
154
+
155
+ .inmodal .modal-title {
156
+ font-size: 26px;
157
+ }
158
+
159
+ .inmodal .modal-icon {
160
+ font-size: 84px;
161
+ color: #e2e3e3;
162
+ }
163
+
164
+ .modal-footer {
165
+ margin-top: 0;
166
+ }
167
+
168
+
169
+ /* WRAPPERS */
170
+
171
+ #wrapper {
172
+ width: 100%;
173
+ overflow-x: hidden;
174
+ }
175
+
176
+ .wrapper {
177
+ padding: 0 20px;
178
+ }
179
+
180
+ .wrapper-content {
181
+ padding: 20px 10px 40px;
182
+ }
183
+
184
+ #page-wrapper {
185
+ padding: 0 15px;
186
+ min-height: 568px;
187
+ position: relative !important;
188
+ }
189
+
190
+ @media (min-width: 768px) {
191
+ #page-wrapper {
192
+ position: inherit;
193
+ margin: 0 0 0 240px;
194
+ min-height: 1000px;
195
+ }
196
+ }
197
+
198
+ .title-action {
199
+ text-align: right;
200
+ padding-top: 30px;
201
+ }
202
+
203
+ .ibox-content h1, .ibox-content h2, .ibox-content h3, .ibox-content h4, .ibox-content h5,
204
+ .ibox-title h1, .ibox-title h2, .ibox-title h3, .ibox-title h4, .ibox-title h5 {
205
+ margin-top: 5px;
206
+ }
207
+
208
+ ul.unstyled, ol.unstyled {
209
+ list-style: none outside none;
210
+ margin-left: 0;
211
+ }
212
+
213
+ .big-icon {
214
+ font-size: 160px !important;
215
+ color: #e5e6e7;
216
+ }
217
+
218
+
219
+ /* FOOTER */
220
+
221
+ .footer {
222
+
223
+ background: none repeat scroll 0 0 white;
224
+ border-top: 1px solid $border-color;
225
+ bottom: 0;
226
+ left: 0;
227
+ padding: 10px 20px;
228
+ position: absolute;
229
+ right: 0;
230
+ }
231
+
232
+ .footer.fixed_full {
233
+ position: fixed;
234
+ bottom: 0;
235
+ left: 0;
236
+ right: 0;
237
+ z-index: 1000;
238
+ padding:10px 20px;
239
+ background: white;
240
+ border-top: 1px solid $border-color;
241
+ }
242
+
243
+ .footer.fixed {
244
+ position: fixed;
245
+ bottom: 0;
246
+ left: 0;
247
+ right: 0;
248
+ z-index: 1000;
249
+ padding:10px 20px;
250
+ background: white;
251
+ border-top: 1px solid $border-color;
252
+ margin-left: $sidebar-width;
253
+ }
254
+
255
+ body.mini-navbar .footer.fixed,
256
+ body.body-small.mini-navbar .footer.fixed {
257
+ margin: 0 0 0 70px;
258
+ }
259
+
260
+ body.mini-navbar.canvas-menu .footer.fixed,
261
+ body.canvas-menu .footer.fixed {
262
+ margin: 0 !important;
263
+ }
264
+
265
+ body.fixed-sidebar.body-small.mini-navbar .footer.fixed {
266
+ margin: 0 0 0 $sidebar-width;
267
+ }
268
+
269
+ body.body-small .footer.fixed {
270
+ margin-left: 0px;
271
+ }
272
+
273
+ /* PANELS */
274
+
275
+ .page-heading {
276
+ border-top: 0;
277
+ padding: 0px 10px 20px 10px;
278
+ }
279
+
280
+ .panel-heading h1, .panel-heading h2 {
281
+ margin-bottom: 5px;
282
+ }
283
+
284
+ /* TABLES */
285
+
286
+ .table-bordered {
287
+ border: 1px solid #EBEBEB;
288
+ }
289
+
290
+ .table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
291
+ background-color: #F5F5F6;
292
+ border-bottom-width: 1px;
293
+ }
294
+
295
+ .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
296
+ border: 1px solid #e7e7e7;
297
+ }
298
+
299
+ .table > thead > tr > th {
300
+ border-bottom: 1px solid #DDDDDD;
301
+ vertical-align: bottom;
302
+ }
303
+
304
+ .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
305
+ border-top: 1px solid $border-color;
306
+ line-height: 1.42857;
307
+ padding: 8px;
308
+ vertical-align: top;
309
+ }
310
+
311
+ /* PANELS */
312
+
313
+ .panel.blank-panel {
314
+ background: none;
315
+ margin: 0;
316
+ }
317
+
318
+ .blank-panel .panel-heading {
319
+ padding-bottom: 0;
320
+ }
321
+
322
+ .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
323
+ -moz-border-bottom-colors: none;
324
+ -moz-border-left-colors: none;
325
+ -moz-border-right-colors: none;
326
+ -moz-border-top-colors: none;
327
+ background: none;
328
+ border-color: #DDDDDD #DDDDDD rgba(0, 0, 0, 0);
329
+ border-bottom: $gray;
330
+ border-image: none;
331
+ border-style: solid;
332
+ border-width: 1px;
333
+ color: #555555;
334
+ cursor: default;
335
+ }
336
+
337
+ .nav.nav-tabs li {
338
+ background: none;
339
+ border: none;
340
+ }
341
+
342
+ .nav-tabs > li > a {
343
+ color: #A7B1C2;
344
+ font-weight: 600;
345
+ padding: 10px 20px 10px 25px;
346
+ }
347
+
348
+ .nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
349
+ background-color: #e6e6e6;
350
+ color: $text-color;
351
+ }
352
+
353
+ .ui-tab .tab-content {
354
+ padding: 20px 0px;
355
+ }
356
+
357
+ /* GLOBAL */
358
+
359
+ .no-padding {
360
+ padding: 0 !important;
361
+ }
362
+
363
+ .no-borders {
364
+ border: none !important;
365
+ }
366
+
367
+ .no-margins {
368
+ margin: 0 !important;
369
+ }
370
+
371
+ .no-top-border {
372
+ border-top: 0 !important;
373
+ }
374
+
375
+ .ibox-content.text-box {
376
+ padding-bottom: 0px;
377
+ padding-top: 15px;
378
+ }
379
+
380
+ .border-left-right {
381
+ border-left: 1px solid $border-color;
382
+ border-right: 1px solid $border-color;
383
+ border-top: none;
384
+ border-bottom: none;
385
+ }
386
+
387
+ .border-left{
388
+ border-left: 1px solid $border-color;
389
+ border-right: none;
390
+ border-top: none;
391
+ border-bottom: none;
392
+ }
393
+
394
+ .border-right {
395
+ border-left: none;
396
+ border-right: 1px solid $border-color;
397
+ border-top: none;
398
+ border-bottom: none;
399
+ }
400
+
401
+ .full-width {
402
+ width: 100% !important;
403
+ }
404
+
405
+ .link-block {
406
+ font-size: 12px;
407
+ padding: 10px;
408
+ }
409
+
410
+ .nav.navbar-top-links .link-block a {
411
+ font-size: 12px;
412
+ }
413
+
414
+ .link-block a {
415
+ font-size: 10px;
416
+ color: inherit;
417
+
418
+ }
419
+
420
+ body.mini-navbar .branding {
421
+ display: none;
422
+ }
423
+
424
+ img.circle-border {
425
+ border: 6px solid #FFFFFF;
426
+ border-radius: 50%;
427
+ }
428
+
429
+ .branding {
430
+ float: left;
431
+ color: #FFFFFF;
432
+ font-size: 18px;
433
+ font-weight: 600;
434
+ padding: 17px 20px;
435
+ text-align: center;
436
+ background-color: $navy;
437
+ }
438
+
439
+ .login-panel {
440
+ margin-top: 25%;
441
+ }
442
+
443
+ .icons-box h3 {
444
+ margin-top: 10px;
445
+ margin-bottom: 10px;
446
+ }
447
+
448
+ .icons-box .infont a i {
449
+ font-size: 25px;
450
+ display: block;
451
+ color: $text-color;
452
+ }
453
+
454
+ .icons-box .infont a {
455
+ color: #a6a8a9;
456
+ }
457
+
458
+ .icons-box .infont a {
459
+ padding: 10px;
460
+
461
+ margin: 1px;
462
+ display: block;
463
+ }
464
+
465
+ .ui-draggable .ibox-title {
466
+ cursor: move;
467
+ }
468
+
469
+ .breadcrumb {
470
+ background-color: #ffffff;
471
+ padding: 0;
472
+ margin-bottom: 0;
473
+ }
474
+
475
+ .breadcrumb > li a {
476
+ color: inherit;
477
+ }
478
+
479
+ .breadcrumb > .active {
480
+ color: inherit;
481
+ }
482
+
483
+ code {
484
+ background-color: #F9F2F4;
485
+ border-radius: 4px;
486
+ color: #ca4440;
487
+ font-size: 90%;
488
+ padding: 2px 4px;
489
+ white-space: nowrap;
490
+ }
491
+
492
+ .ibox {
493
+ clear: both;
494
+ margin-bottom: 25px;
495
+ margin-top: 0;
496
+ padding: 0;
497
+ }
498
+
499
+ .ibox.collapsed .ibox-content{
500
+ display: none;
501
+ }
502
+ .ibox.collapsed .fa.fa-chevron-up:before {
503
+ content: "\f078";
504
+ }
505
+ .ibox.collapsed .fa.fa-chevron-down:before {
506
+ content: "\f077";
507
+ }
508
+
509
+ .ibox:after, .ibox:before {
510
+ display: table;
511
+ }
512
+
513
+ .ibox-title {
514
+ -moz-border-bottom-colors: none;
515
+ -moz-border-left-colors: none;
516
+ -moz-border-right-colors: none;
517
+ -moz-border-top-colors: none;
518
+ background-color: $ibox-title-bg;
519
+ border-color: $border-color;
520
+ border-image: none;
521
+ border-style: solid solid none;
522
+ border-width: 3px 0px 0;
523
+ color: inherit;
524
+ margin-bottom: 0;
525
+ padding: 14px 15px 7px;
526
+ min-height: 48px;
527
+ }
528
+
529
+ .ibox-content {
530
+ background-color: $ibox-content-bg;
531
+ color: inherit;
532
+ padding: 15px 20px 20px 20px;
533
+
534
+ border-color: $border-color;
535
+ border-image: none;
536
+ border-style: solid solid none;
537
+ border-width: 1px 0px;
538
+ }
539
+
540
+ .ibox-footer {
541
+ color: inherit;
542
+ border-top: 1px solid $border-color;
543
+ font-size: 90%;
544
+ background: #ffffff;
545
+ padding: 10px 15px;
546
+ }
547
+
548
+ table.table-mail tr td {
549
+ padding: 12px;
550
+ }
551
+
552
+ .table-mail .check-mail {
553
+ padding-left: 20px;
554
+ }
555
+
556
+ .table-mail .mail-date {
557
+ padding-right: 20px;
558
+ }
559
+
560
+ .star-mail, .check-mail {
561
+ width: 40px;
562
+ }
563
+
564
+ .unread td a, .unread td {
565
+ font-weight: 600;
566
+ color: inherit;
567
+ }
568
+
569
+ .read td a, .read td {
570
+ font-weight: normal;
571
+ color: inherit;
572
+ }
573
+
574
+ .unread td {
575
+ background-color: #f9f8f8;
576
+ }
577
+
578
+ .ibox-content {
579
+ clear: both;
580
+ }
581
+
582
+ .ibox-heading {
583
+ background-color: #f3f6fb;
584
+ border-bottom: none;
585
+ }
586
+
587
+ .ibox-heading h3 {
588
+ font-weight: 200;
589
+ font-size: 24px;
590
+ }
591
+
592
+ .ibox-title h5 {
593
+ display: inline-block;
594
+ font-size: 14px;
595
+ margin: 0 0 7px;
596
+ padding: 0;
597
+ text-overflow: ellipsis;
598
+ float: left;
599
+ }
600
+
601
+ .ibox-title .label {
602
+ float: left;
603
+ margin-left: 4px;
604
+ }
605
+
606
+ .ibox-tools {
607
+ display: block;
608
+ float: none;
609
+ margin-top: 0;
610
+ position: relative;
611
+ padding: 0;
612
+ text-align: right;
613
+ }
614
+
615
+ .ibox-tools a {
616
+ cursor: pointer;
617
+ margin-left: 5px;
618
+ color: #c4c4c4;
619
+ }
620
+
621
+ .ibox-tools a.btn-primary {
622
+ color: #fff;
623
+ }
624
+
625
+ .ibox-tools .dropdown-menu > li > a {
626
+ padding: 4px 10px;
627
+ font-size: 12px;
628
+ }
629
+
630
+ .ibox .ibox-tools.open > .dropdown-menu {
631
+ left: auto;
632
+ right: 0;
633
+ }
634
+
635
+ /* BACKGROUNDS */
636
+
637
+ .gray-bg {
638
+ background-color: $gray;
639
+ }
640
+
641
+ .white-bg {
642
+ background-color: #ffffff;
643
+ }
644
+
645
+ .navy-bg {
646
+ background-color: $navy;
647
+ color: #ffffff;
648
+ }
649
+
650
+ .blue-bg {
651
+ background-color: $blue;
652
+ color: #ffffff;
653
+ }
654
+
655
+ .lazur-bg {
656
+ background-color: $lazur;
657
+ color: #ffffff;
658
+ }
659
+
660
+ .yellow-bg {
661
+ background-color: $yellow;
662
+ color: #ffffff;
663
+ }
664
+
665
+ .red-bg {
666
+ background-color: $red;
667
+ color: #ffffff;
668
+ }
669
+
670
+ .black-bg {
671
+ background-color: #262626;
672
+ }
673
+
674
+ .panel-primary {
675
+ border-color: $navy;
676
+ }
677
+
678
+ .panel-primary > .panel-heading {
679
+ background-color: $navy;
680
+ border-color: $navy;
681
+ }
682
+
683
+ .panel-success {
684
+ border-color: $blue;
685
+ }
686
+
687
+ .panel-success > .panel-heading {
688
+ background-color: $blue;
689
+ border-color: $blue;
690
+ color: #ffffff;
691
+ }
692
+
693
+ .panel-info {
694
+ border-color: $lazur;
695
+ }
696
+
697
+ .panel-info > .panel-heading {
698
+ background-color: $lazur;
699
+ border-color: $lazur;
700
+ color: #ffffff;
701
+ }
702
+
703
+ .panel-warning {
704
+ border-color: $yellow;
705
+ }
706
+
707
+ .panel-warning > .panel-heading {
708
+ background-color: $yellow;
709
+ border-color: $yellow;
710
+ color: #ffffff;
711
+ }
712
+
713
+ .panel-danger {
714
+ border-color: $red;
715
+ }
716
+
717
+ .panel-danger > .panel-heading {
718
+ background-color: $red;
719
+ border-color: $red;
720
+ color: #ffffff;
721
+ }
722
+
723
+ .progress-bar {
724
+ background-color: $navy;
725
+ }
726
+
727
+ .progress-small, .progress-small .progress-bar {
728
+ height: 10px;
729
+ }
730
+
731
+ .progress-small, .progress-mini {
732
+ margin-top: 5px;
733
+ }
734
+
735
+ .progress-mini, .progress-mini .progress-bar {
736
+ height: 5px;
737
+ margin-bottom: 0px;
738
+ }
739
+
740
+ .progress-bar-navy-light {
741
+ background-color: #3dc7ab;
742
+ }
743
+
744
+ .progress-bar-success {
745
+ background-color: $blue;
746
+ }
747
+
748
+ .progress-bar-info {
749
+ background-color: $lazur;
750
+ }
751
+
752
+ .progress-bar-warning {
753
+ background-color: $yellow;
754
+ }
755
+
756
+ .progress-bar-danger {
757
+ background-color: $red;
758
+ }
759
+
760
+ .panel-title {
761
+ font-size: inherit;
762
+ }
763
+
764
+ .jumbotron {
765
+ border-radius: 6px;
766
+ padding: 40px;
767
+ }
768
+
769
+ .jumbotron h1 {
770
+ margin-top: 0;
771
+ }
772
+
773
+ /* COLORS */
774
+
775
+ .text-navy {
776
+ color: $navy;
777
+ }
778
+
779
+ .text-primary {
780
+ color: inherit;
781
+ }
782
+
783
+ .text-success {
784
+ color: $blue;
785
+ }
786
+
787
+ .text-info {
788
+ color: $lazur;
789
+ }
790
+
791
+ .text-warning {
792
+ color: $yellow;
793
+ }
794
+
795
+ .text-danger {
796
+ color: $red;
797
+ }
798
+
799
+ .text-muted {
800
+ color: #888888;
801
+ }
802
+
803
+ .text-white {
804
+ color: #ffffff;
805
+ }
806
+
807
+ .simple_tag {
808
+ background-color: #f3f3f4;
809
+ border: 1px solid #e7eaec;
810
+ border-radius: 2px;
811
+ color: inherit;
812
+ font-size: 10px;
813
+ margin-right: 5px;
814
+ margin-top: 5px;
815
+ padding: 5px 12px;
816
+ display: inline-block;
817
+ }
818
+
819
+ .img-shadow {
820
+ -webkit-box-shadow: 0px 0px 3px 0px rgba(145,145,145,1);
821
+ -moz-box-shadow: 0px 0px 3px 0px rgba(145,145,145,1);
822
+ box-shadow: 0px 0px 3px 0px rgba(145,145,145,1);
823
+ }
824
+
825
+ /* For handle diferent bg color in AngularJS version */
826
+ .dashboards\.dashboard_2 nav.navbar,
827
+ .dashboards\.dashboard_3 nav.navbar,
828
+ .mailbox\.inbox nav.navbar,
829
+ .mailbox\.email_view nav.navbar,
830
+ .mailbox\.email_compose nav.navbar,
831
+ .dashboards\.dashboard_4_1 nav.navbar,
832
+ .metrics nav.navbar, .metrics\.index nav.navbar,
833
+ .dashboards\.dashboard_5 nav.navbar
834
+ {
835
+ background: #fff;
836
+ }
837
+
838
+ /* For handle diferent bg color in MVC version */
839
+ .Dashboard_2 .navbar.navbar-static-top,
840
+ .Dashboard_3 .navbar.navbar-static-top,
841
+ .Dashboard_4_1 .navbar.navbar-static-top,
842
+ .ComposeEmail .navbar.navbar-static-top,
843
+ .EmailView .navbar.navbar-static-top,
844
+ .Inbox .navbar.navbar-static-top,
845
+ .Metrics .navbar.navbar-static-top,
846
+ .Dashboard_5 .navbar.navbar-static-top
847
+ {
848
+ background: #fff;
849
+ }
850
+
851
+
852
+
853
+ a.close-canvas-menu {
854
+ position: absolute;
855
+ top:10px;
856
+ right: 15px;
857
+ z-index: 1011;
858
+ color: #a7b1c2;
859
+ }
860
+
861
+ a.close-canvas-menu:hover {
862
+ color: #fff;
863
+ }
864
+
865
+ /* FULL HEIGHT */
866
+
867
+
868
+ .full-height {
869
+ height: 100%;
870
+ }
871
+
872
+ .fh-breadcrumb {
873
+ height: calc(100% - 196px);
874
+ margin: 0 -15px;
875
+ position: relative
876
+ }
877
+
878
+ .fh-no-breadcrumb {
879
+ height: calc(100% - 99px);
880
+ margin: 0 -15px;
881
+ position: relative
882
+ }
883
+
884
+ .fh-column {
885
+ background: #fff;
886
+ height: 100%;
887
+ width: 240px;
888
+ float: left
889
+ }
890
+
891
+ .modal-backdrop {
892
+ z-index: 2040 !important;
893
+ }
894
+
895
+ .modal {
896
+ z-index: 2050 !important;
897
+ }
898
+
899
+ .spiner-example {
900
+ height: 200px;
901
+ padding-top: 70px;
902
+ }
903
+
904
+ /* MARGINS & PADDINGS */
905
+
906
+ .p-xxs {
907
+ padding: 5px;
908
+ }
909
+
910
+ .p-xs {
911
+ padding: 10px;
912
+ }
913
+
914
+ .p-sm {
915
+ padding: 15px;
916
+ }
917
+
918
+ .p-m {
919
+ padding: 20px;
920
+ }
921
+
922
+ .p-md {
923
+ padding: 25px;
924
+ }
925
+
926
+ .p-lg {
927
+ padding: 30px;
928
+ }
929
+
930
+ .p-xl {
931
+ padding: 40px;
932
+ }
933
+
934
+ .p-w-xs {
935
+ padding: 0 10px;
936
+ }
937
+
938
+ .p-w-sm {
939
+ padding: 0 15px;
940
+
941
+ }
942
+
943
+ .p-w-m {
944
+ padding: 0 20px;
945
+
946
+ }
947
+
948
+ .p-w-md {
949
+ padding: 0 25px;
950
+
951
+ }
952
+
953
+ .p-w-lg {
954
+ padding: 0 30px;
955
+
956
+ }
957
+
958
+ .p-w-xl {
959
+ padding: 0 40px;
960
+
961
+ }
962
+
963
+ .m-xxs {
964
+ margin: 2px 4px;
965
+ }
966
+
967
+ .m-xs {
968
+ margin: 5px;
969
+ }
970
+
971
+ .m-sm {
972
+ margin: 10px;
973
+ }
974
+
975
+ .m {
976
+ margin: 15px;
977
+ }
978
+
979
+ .m-md {
980
+ margin: 20px;
981
+ }
982
+
983
+ .m-lg {
984
+ margin: 30px;
985
+ }
986
+
987
+ .m-xl {
988
+ margin: 50px;
989
+ }
990
+
991
+ .m-n {
992
+ margin: 0 !important;
993
+ }
994
+
995
+ .m-l-none {
996
+ margin-left: 0;
997
+ }
998
+
999
+ .m-l-xs {
1000
+ margin-left: 5px;
1001
+ }
1002
+
1003
+ .m-l-sm {
1004
+ margin-left: 10px;
1005
+ }
1006
+
1007
+ .m-l {
1008
+ margin-left: 15px;
1009
+ }
1010
+
1011
+ .m-l-md {
1012
+ margin-left: 20px;
1013
+ }
1014
+
1015
+ .m-l-lg {
1016
+ margin-left: 30px;
1017
+ }
1018
+
1019
+ .m-l-xl {
1020
+ margin-left: 40px;
1021
+ }
1022
+
1023
+ .m-l-n-xxs {
1024
+ margin-left: -1px;
1025
+ }
1026
+
1027
+ .m-l-n-xs {
1028
+ margin-left: -5px;
1029
+ }
1030
+
1031
+ .m-l-n-sm {
1032
+ margin-left: -10px;
1033
+ }
1034
+
1035
+ .m-l-n {
1036
+ margin-left: -15px;
1037
+ }
1038
+
1039
+ .m-l-n-md {
1040
+ margin-left: -20px;
1041
+ }
1042
+
1043
+ .m-l-n-lg {
1044
+ margin-left: -30px;
1045
+ }
1046
+
1047
+ .m-l-n-xl {
1048
+ margin-left: -40px;
1049
+ }
1050
+
1051
+ .m-t-none {
1052
+ margin-top: 0;
1053
+ }
1054
+
1055
+ .m-t-xxs {
1056
+ margin-top: 1px;
1057
+ }
1058
+
1059
+ .m-t-xs {
1060
+ margin-top: 5px;
1061
+ }
1062
+
1063
+ .m-t-sm {
1064
+ margin-top: 10px;
1065
+ }
1066
+
1067
+ .m-t {
1068
+ margin-top: 15px;
1069
+ }
1070
+
1071
+ .m-t-md {
1072
+ margin-top: 20px;
1073
+ }
1074
+
1075
+ .m-t-lg {
1076
+ margin-top: 30px;
1077
+ }
1078
+
1079
+ .m-t-xl {
1080
+ margin-top: 40px;
1081
+ }
1082
+
1083
+ .m-t-n-xxs {
1084
+ margin-top: -1px;
1085
+ }
1086
+
1087
+ .m-t-n-xs {
1088
+ margin-top: -5px;
1089
+ }
1090
+
1091
+ .m-t-n-sm {
1092
+ margin-top: -10px;
1093
+ }
1094
+
1095
+ .m-t-n {
1096
+ margin-top: -15px;
1097
+ }
1098
+
1099
+ .m-t-n-md {
1100
+ margin-top: -20px;
1101
+ }
1102
+
1103
+ .m-t-n-lg {
1104
+ margin-top: -30px;
1105
+ }
1106
+
1107
+ .m-t-n-xl {
1108
+ margin-top: -40px;
1109
+ }
1110
+
1111
+ .m-r-none {
1112
+ margin-right: 0;
1113
+ }
1114
+
1115
+ .m-r-xxs {
1116
+ margin-right: 1px;
1117
+ }
1118
+
1119
+ .m-r-xs {
1120
+ margin-right: 5px;
1121
+ }
1122
+
1123
+ .m-r-sm {
1124
+ margin-right: 10px;
1125
+ }
1126
+
1127
+ .m-r {
1128
+ margin-right: 15px;
1129
+ }
1130
+
1131
+ .m-r-md {
1132
+ margin-right: 20px;
1133
+ }
1134
+
1135
+ .m-r-lg {
1136
+ margin-right: 30px;
1137
+ }
1138
+
1139
+ .m-r-xl {
1140
+ margin-right: 40px;
1141
+ }
1142
+
1143
+ .m-r-n-xxs {
1144
+ margin-right: -1px;
1145
+ }
1146
+
1147
+ .m-r-n-xs {
1148
+ margin-right: -5px;
1149
+ }
1150
+
1151
+ .m-r-n-sm {
1152
+ margin-right: -10px;
1153
+ }
1154
+
1155
+ .m-r-n {
1156
+ margin-right: -15px;
1157
+ }
1158
+
1159
+ .m-r-n-md {
1160
+ margin-right: -20px;
1161
+ }
1162
+
1163
+ .m-r-n-lg {
1164
+ margin-right: -30px;
1165
+ }
1166
+
1167
+ .m-r-n-xl {
1168
+ margin-right: -40px;
1169
+ }
1170
+
1171
+ .m-b-none {
1172
+ margin-bottom: 0;
1173
+ }
1174
+
1175
+ .m-b-xxs {
1176
+ margin-bottom: 1px;
1177
+ }
1178
+
1179
+ .m-b-xs {
1180
+ margin-bottom: 5px;
1181
+ }
1182
+
1183
+ .m-b-sm {
1184
+ margin-bottom: 10px;
1185
+ }
1186
+
1187
+ .m-b {
1188
+ margin-bottom: 15px;
1189
+ }
1190
+
1191
+ .m-b-md {
1192
+ margin-bottom: 20px;
1193
+ }
1194
+
1195
+ .m-b-lg {
1196
+ margin-bottom: 30px;
1197
+ }
1198
+
1199
+ .m-b-xl {
1200
+ margin-bottom: 40px;
1201
+ }
1202
+
1203
+ .m-b-n-xxs {
1204
+ margin-bottom: -1px;
1205
+ }
1206
+
1207
+ .m-b-n-xs {
1208
+ margin-bottom: -5px;
1209
+ }
1210
+
1211
+ .m-b-n-sm {
1212
+ margin-bottom: -10px;
1213
+ }
1214
+
1215
+ .m-b-n {
1216
+ margin-bottom: -15px;
1217
+ }
1218
+
1219
+ .m-b-n-md {
1220
+ margin-bottom: -20px;
1221
+ }
1222
+
1223
+ .m-b-n-lg {
1224
+ margin-bottom: -30px;
1225
+ }
1226
+
1227
+ .m-b-n-xl {
1228
+ margin-bottom: -40px;
1229
+ }
1230
+
1231
+ .space-15 {
1232
+ margin: 15px 0;
1233
+ }
1234
+
1235
+ .space-20 {
1236
+ margin: 20px 0;
1237
+ }
1238
+
1239
+ .space-25 {
1240
+ margin: 25px 0;
1241
+ }
1242
+
1243
+ .space-30 {
1244
+ margin: 30px 0;
1245
+ }
1246
+
1247
+ // Bootstrap issue in 3.3.0 with modal https://github.com/twbs/bootstrap/issues/9855
1248
+ // Fix
1249
+ body.modal-open { padding-right:inherit !important; }
1250
+
1251
+ // Fullscreen functions
1252
+
1253
+ .fullscreen-ibox-mode .animated {
1254
+ animation: none;
1255
+ }
1256
+
1257
+ body.fullscreen-ibox-mode {
1258
+ overflow-y: hidden;
1259
+ }
1260
+
1261
+ .ibox.fullscreen {
1262
+ z-index: 2030;
1263
+ position: fixed;
1264
+ top: 0;
1265
+ left: 0;
1266
+ right: 0;
1267
+ bottom: 0;
1268
+ overflow: auto;
1269
+ margin-bottom: 0;
1270
+ }
1271
+
1272
+ .ibox.fullscreen .collapse-link {
1273
+ display: none;
1274
+ }
1275
+
1276
+ .ibox.fullscreen .ibox-content {
1277
+ min-height: calc(100% - 48px);
1278
+ }
1279
+
1280
+ // Bootstrap issue in 3.3.0 with modal https://github.com/twbs/bootstrap/issues/9855
1281
+ // Fix
1282
+ body.modal-open { padding-right:inherit !important; }
1283
+
1284
+ // Fix for modal backdrop with animate.css
1285
+ body.modal-open .animated { animation-fill-mode: initial; }
1286
+
1287
+ /* Show profile dropdown on fixed sidebar */
1288
+ body.mini-navbar.fixed-sidebar .profile-element, .block {
1289
+ display: block !important;
1290
+ }
1291
+
1292
+ body.mini-navbar.fixed-sidebar .nav-header {
1293
+ padding: 33px 25px;
1294
+ }
1295
+
1296
+ body.mini-navbar.fixed-sidebar .logo-element{
1297
+ display: none;
1298
+ }