asset_box 0.1.0

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 (211) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +60 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +7 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +6 -0
  7. data/Gemfile.lock +35 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +43 -0
  10. data/Rakefile +6 -0
  11. data/asset_box.gemspec +42 -0
  12. data/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  13. data/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
  14. data/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  15. data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  16. data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  17. data/assets/fonts/font-awesome/fa-brands-400.eot +0 -0
  18. data/assets/fonts/font-awesome/fa-brands-400.svg +3717 -0
  19. data/assets/fonts/font-awesome/fa-brands-400.ttf +0 -0
  20. data/assets/fonts/font-awesome/fa-brands-400.woff +0 -0
  21. data/assets/fonts/font-awesome/fa-brands-400.woff2 +0 -0
  22. data/assets/fonts/font-awesome/fa-regular-400.eot +0 -0
  23. data/assets/fonts/font-awesome/fa-regular-400.svg +801 -0
  24. data/assets/fonts/font-awesome/fa-regular-400.ttf +0 -0
  25. data/assets/fonts/font-awesome/fa-regular-400.woff +0 -0
  26. data/assets/fonts/font-awesome/fa-regular-400.woff2 +0 -0
  27. data/assets/fonts/font-awesome/fa-solid-900.eot +0 -0
  28. data/assets/fonts/font-awesome/fa-solid-900.svg +5028 -0
  29. data/assets/fonts/font-awesome/fa-solid-900.ttf +0 -0
  30. data/assets/fonts/font-awesome/fa-solid-900.woff +0 -0
  31. data/assets/fonts/font-awesome/fa-solid-900.woff2 +0 -0
  32. data/assets/images/bootstrap/bg.png +0 -0
  33. data/assets/images/bootstrap/bg_2.png +0 -0
  34. data/assets/images/bootstrap/bg_3.png +0 -0
  35. data/assets/images/bootstrap/bg_4.png +0 -0
  36. data/assets/images/bootstrap/bg_5.png +0 -0
  37. data/assets/images/bootstrap/dark_dots.png +0 -0
  38. data/assets/images/bootstrap/light_dots.png +0 -0
  39. data/assets/images/bootstrap/line.png +0 -0
  40. data/assets/images/bootstrap/line_detail.png +0 -0
  41. data/assets/images/bootstrap/note_dot.png +0 -0
  42. data/assets/images/bootstrap/timer-piece.png +0 -0
  43. data/assets/javascripts/app/bootstrap-datepicker.js +1395 -0
  44. data/assets/javascripts/app/bootstrap-fileupload.min.js +7 -0
  45. data/assets/javascripts/app/bootstrap-modal.js +378 -0
  46. data/assets/javascripts/app/bootstrap-modalmanager.js +423 -0
  47. data/assets/javascripts/app/bootstrap-switch.min.js +22 -0
  48. data/assets/javascripts/app/daterangepicker.js +1635 -0
  49. data/assets/javascripts/app/debounce.js +1492 -0
  50. data/assets/javascripts/app/jquery.appear.js +101 -0
  51. data/assets/javascripts/app/jquery.inputlimiter.1.3.1.min.js +11 -0
  52. data/assets/javascripts/app/jquery.mousewheel.js +84 -0
  53. data/assets/javascripts/app/jquery.serialScroll.min.js +7 -0
  54. data/assets/javascripts/app/moment.min.js +7 -0
  55. data/assets/javascripts/app/perfect-scrollbar.js +584 -0
  56. data/assets/javascripts/app/subview.js +392 -0
  57. data/assets/javascripts/app/velocity.min.js +8 -0
  58. data/assets/javascripts/asset_box.js +16 -0
  59. data/assets/javascripts/bootstrap-sprockets.js +12 -0
  60. data/assets/javascripts/bootstrap.js +2580 -0
  61. data/assets/javascripts/bootstrap.min.js +6 -0
  62. data/assets/javascripts/bootstrap/affix.js +164 -0
  63. data/assets/javascripts/bootstrap/alert.js +95 -0
  64. data/assets/javascripts/bootstrap/button.js +125 -0
  65. data/assets/javascripts/bootstrap/carousel.js +246 -0
  66. data/assets/javascripts/bootstrap/collapse.js +212 -0
  67. data/assets/javascripts/bootstrap/dropdown.js +165 -0
  68. data/assets/javascripts/bootstrap/modal.js +358 -0
  69. data/assets/javascripts/bootstrap/popover.js +123 -0
  70. data/assets/javascripts/bootstrap/scrollspy.js +172 -0
  71. data/assets/javascripts/bootstrap/tab.js +155 -0
  72. data/assets/javascripts/bootstrap/tooltip.js +677 -0
  73. data/assets/javascripts/bootstrap/transition.js +59 -0
  74. data/assets/stylesheets/_asset_box.scss +760 -0
  75. data/assets/stylesheets/_bootstrap-compass.scss +9 -0
  76. data/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  77. data/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  78. data/assets/stylesheets/_bootstrap.scss +56 -0
  79. data/assets/stylesheets/_bootstrap_login.scss +166 -0
  80. data/assets/stylesheets/_font-awesome-compass.scss +5 -0
  81. data/assets/stylesheets/_font-awesome-sprockets.scss +5 -0
  82. data/assets/stylesheets/_font-awesome.scss +17 -0
  83. data/assets/stylesheets/_font-awesome_v4-shims.scss +6 -0
  84. data/assets/stylesheets/_load_bootstrap.scss +12 -0
  85. data/assets/stylesheets/app/_base.scss +136 -0
  86. data/assets/stylesheets/app/_buttons.scss +1149 -0
  87. data/assets/stylesheets/app/_calendar.scss +343 -0
  88. data/assets/stylesheets/app/_ckeditor.scss +123 -0
  89. data/assets/stylesheets/app/_date-picker.scss +193 -0
  90. data/assets/stylesheets/app/_daterangepicker.scss +269 -0
  91. data/assets/stylesheets/app/_dropdown-menu.scss +137 -0
  92. data/assets/stylesheets/app/_error.scss +84 -0
  93. data/assets/stylesheets/app/_file-upload.scss +16 -0
  94. data/assets/stylesheets/app/_footer.scss +59 -0
  95. data/assets/stylesheets/app/_form-elements.scss +273 -0
  96. data/assets/stylesheets/app/_gallery.scss +205 -0
  97. data/assets/stylesheets/app/_header.scss +158 -0
  98. data/assets/stylesheets/app/_horizontal-menu.scss +169 -0
  99. data/assets/stylesheets/app/_icons.scss +47 -0
  100. data/assets/stylesheets/app/_inputlimiter.scss +34 -0
  101. data/assets/stylesheets/app/_invoice.scss +53 -0
  102. data/assets/stylesheets/app/_lock-screen.scss +72 -0
  103. data/assets/stylesheets/app/_login.scss +105 -0
  104. data/assets/stylesheets/app/_main-container.scss +297 -0
  105. data/assets/stylesheets/app/_messages.scss +311 -0
  106. data/assets/stylesheets/app/_pageslide_left.scss +283 -0
  107. data/assets/stylesheets/app/_pageslide_right.scss +350 -0
  108. data/assets/stylesheets/app/_pagination.scss +254 -0
  109. data/assets/stylesheets/app/_panels.scss +589 -0
  110. data/assets/stylesheets/app/_perfect-scrollbar.scss +111 -0
  111. data/assets/stylesheets/app/_slidingbar.scss +42 -0
  112. data/assets/stylesheets/app/_subview.scss +342 -0
  113. data/assets/stylesheets/app/_tables.scss +68 -0
  114. data/assets/stylesheets/app/_tabs.scss +251 -0
  115. data/assets/stylesheets/app/_tags-input.scss +46 -0
  116. data/assets/stylesheets/app/_theme-style8.scss +308 -0
  117. data/assets/stylesheets/app/_timeline.scss +359 -0
  118. data/assets/stylesheets/app/_user-profile.scss +99 -0
  119. data/assets/stylesheets/app/_utilities.scss +643 -0
  120. data/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  121. data/assets/stylesheets/bootstrap/_badges.scss +68 -0
  122. data/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
  123. data/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
  124. data/assets/stylesheets/bootstrap/_buttons.scss +168 -0
  125. data/assets/stylesheets/bootstrap/_carousel.scss +271 -0
  126. data/assets/stylesheets/bootstrap/_close.scss +37 -0
  127. data/assets/stylesheets/bootstrap/_code.scss +69 -0
  128. data/assets/stylesheets/bootstrap/_component-animations.scss +38 -0
  129. data/assets/stylesheets/bootstrap/_dropdowns.scss +213 -0
  130. data/assets/stylesheets/bootstrap/_forms.scss +607 -0
  131. data/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
  132. data/assets/stylesheets/bootstrap/_grid.scss +94 -0
  133. data/assets/stylesheets/bootstrap/_input-groups.scss +171 -0
  134. data/assets/stylesheets/bootstrap/_jumbotron.scss +54 -0
  135. data/assets/stylesheets/bootstrap/_labels.scss +66 -0
  136. data/assets/stylesheets/bootstrap/_list-group.scss +128 -0
  137. data/assets/stylesheets/bootstrap/_media.scss +66 -0
  138. data/assets/stylesheets/bootstrap/_mixins.scss +40 -0
  139. data/assets/stylesheets/bootstrap/_modals.scss +150 -0
  140. data/assets/stylesheets/bootstrap/_navbar.scss +656 -0
  141. data/assets/stylesheets/bootstrap/_navs.scss +242 -0
  142. data/assets/stylesheets/bootstrap/_normalize.scss +427 -0
  143. data/assets/stylesheets/bootstrap/_pager.scss +54 -0
  144. data/assets/stylesheets/bootstrap/_pagination.scss +86 -0
  145. data/assets/stylesheets/bootstrap/_panels.scss +271 -0
  146. data/assets/stylesheets/bootstrap/_popovers.scss +126 -0
  147. data/assets/stylesheets/bootstrap/_print.scss +99 -0
  148. data/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
  149. data/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  150. data/assets/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
  151. data/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
  152. data/assets/stylesheets/bootstrap/_tables.scss +234 -0
  153. data/assets/stylesheets/bootstrap/_theme.scss +295 -0
  154. data/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
  155. data/assets/stylesheets/bootstrap/_tooltip.scss +112 -0
  156. data/assets/stylesheets/bootstrap/_type.scss +298 -0
  157. data/assets/stylesheets/bootstrap/_utilities.scss +55 -0
  158. data/assets/stylesheets/bootstrap/_variables.scss +874 -0
  159. data/assets/stylesheets/bootstrap/_wells.scss +29 -0
  160. data/assets/stylesheets/bootstrap/mixins/_alerts.scss +15 -0
  161. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
  162. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  163. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +61 -0
  164. data/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  165. data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  166. data/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  167. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +56 -0
  168. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  169. data/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  170. data/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  171. data/assets/stylesheets/bootstrap/mixins/_image.scss +28 -0
  172. data/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  173. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
  174. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  175. data/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  176. data/assets/stylesheets/bootstrap/mixins/_opacity.scss +7 -0
  177. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
  178. data/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  179. data/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  180. data/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  181. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
  182. data/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  183. data/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +17 -0
  184. data/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  185. data/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  186. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  187. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
  188. data/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  189. data/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  190. data/assets/stylesheets/font-awesome/_animated.scss +20 -0
  191. data/assets/stylesheets/font-awesome/_bordered-pulled.scss +20 -0
  192. data/assets/stylesheets/font-awesome/_core.scss +21 -0
  193. data/assets/stylesheets/font-awesome/_fixed-width.scss +6 -0
  194. data/assets/stylesheets/font-awesome/_icons.scss +1462 -0
  195. data/assets/stylesheets/font-awesome/_larger.scss +23 -0
  196. data/assets/stylesheets/font-awesome/_list.scss +18 -0
  197. data/assets/stylesheets/font-awesome/_mixins.scss +56 -0
  198. data/assets/stylesheets/font-awesome/_path.scss +56 -0
  199. data/assets/stylesheets/font-awesome/_rotated-flipped.scss +24 -0
  200. data/assets/stylesheets/font-awesome/_screen-reader.scss +5 -0
  201. data/assets/stylesheets/font-awesome/_shims.scss +2066 -0
  202. data/assets/stylesheets/font-awesome/_stacked.scss +31 -0
  203. data/assets/stylesheets/font-awesome/_variables.scss +1482 -0
  204. data/bin/console +14 -0
  205. data/bin/setup +8 -0
  206. data/lib/asset_box.rb +89 -0
  207. data/lib/asset_box/rails/engine.rb +22 -0
  208. data/lib/asset_box/rails/helpers.rb +17 -0
  209. data/lib/asset_box/rails/railtie.rb +13 -0
  210. data/lib/asset_box/version.rb +3 -0
  211. metadata +301 -0
@@ -0,0 +1,59 @@
1
+ /* ========================================================================
2
+ * Bootstrap: transition.js v3.4.1
3
+ * https://getbootstrap.com/docs/3.4/javascript/#transitions
4
+ * ========================================================================
5
+ * Copyright 2011-2019 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // CSS TRANSITION SUPPORT (Shoutout: https://modernizr.com/)
14
+ // ============================================================
15
+
16
+ function transitionEnd() {
17
+ var el = document.createElement('bootstrap')
18
+
19
+ var transEndEventNames = {
20
+ WebkitTransition : 'webkitTransitionEnd',
21
+ MozTransition : 'transitionend',
22
+ OTransition : 'oTransitionEnd otransitionend',
23
+ transition : 'transitionend'
24
+ }
25
+
26
+ for (var name in transEndEventNames) {
27
+ if (el.style[name] !== undefined) {
28
+ return { end: transEndEventNames[name] }
29
+ }
30
+ }
31
+
32
+ return false // explicit for ie8 ( ._.)
33
+ }
34
+
35
+ // https://blog.alexmaccaw.com/css-transitions
36
+ $.fn.emulateTransitionEnd = function (duration) {
37
+ var called = false
38
+ var $el = this
39
+ $(this).one('bsTransitionEnd', function () { called = true })
40
+ var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
41
+ setTimeout(callback, duration)
42
+ return this
43
+ }
44
+
45
+ $(function () {
46
+ $.support.transition = transitionEnd()
47
+
48
+ if (!$.support.transition) return
49
+
50
+ $.event.special.bsTransitionEnd = {
51
+ bindType: $.support.transition.end,
52
+ delegateType: $.support.transition.end,
53
+ handle: function (e) {
54
+ if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
55
+ }
56
+ }
57
+ })
58
+
59
+ }(jQuery);
@@ -0,0 +1,760 @@
1
+ @import "load_bootstrap";
2
+
3
+ @import "app/base";
4
+ @import "app/buttons";
5
+ @import "app/header";
6
+ @import "app/footer";
7
+ @import "app/pageslide_left";
8
+ @import "app/perfect-scrollbar";
9
+ @import "app/main-container";
10
+ @import "app/dropdown-menu";
11
+ @import "app/form-elements";
12
+ @import "app/panels";
13
+ @import "app/utilities";
14
+ @import "app/pagination";
15
+ @import "app/theme-style8";
16
+ @import "app/subview";
17
+ // @import "app/lock-screen";
18
+ @import "app/calendar";
19
+ // @import "app/ckeditor";
20
+ // @import "bootstrap-wysihtml5";
21
+ @import "app/date-picker";
22
+ @import "app/daterangepicker";
23
+ // @import "icheck/minimal/_all";
24
+ // @import "app/error";
25
+ // @import "app/file-upload";
26
+ // @import "app/gallery";
27
+ // @import "app/horizontal-menu";
28
+ // @import "app/icons";
29
+ // @import "app/inputlimiter";
30
+ // @import "app/invoice";
31
+ // @import "app/tables";
32
+ // @import "app/tabs";
33
+ // @import "app/tags-input";
34
+ @import "app/timeline";
35
+ // @import "app/user-profile";
36
+ // @import "app/messages";
37
+ // @import "app/pageslide_right";
38
+ // @import "app/slidingbar";
39
+
40
+
41
+ /* ---------------------------------------------------------------------- */
42
+ /* Modals
43
+ /* ---------------------------------------------------------------------- */
44
+ /* line 4, ../sass/partials/_modal.scss */
45
+ .modal-backdrop {
46
+ z-index: 1040 !important;
47
+ }
48
+
49
+ /* ---------------------------------------------------------------------- */
50
+ /* Labels and Badges
51
+ /* ---------------------------------------------------------------------- */
52
+ /* line 4, ../sass/partials/_labels-and-badges.scss */
53
+ .badge-success {
54
+ background-color: #5CB85C;
55
+ }
56
+
57
+ /* line 7, ../sass/partials/_labels-and-badges.scss */
58
+ .badge-success[href]:hover, .badge-success[href]:focus {
59
+ background-color: #449D44;
60
+ }
61
+
62
+ /* line 10, ../sass/partials/_labels-and-badges.scss */
63
+ .badge-warning {
64
+ background-color: #F0AD4E;
65
+ }
66
+
67
+ /* line 13, ../sass/partials/_labels-and-badges.scss */
68
+ .badge-warning[href]:hover, .badge-warning[href]:focus {
69
+ background-color: #EC971F;
70
+ }
71
+
72
+ /* line 16, ../sass/partials/_labels-and-badges.scss */
73
+ .badge-info {
74
+ background-color: #5BC0DE;
75
+ }
76
+
77
+ /* line 19, ../sass/partials/_labels-and-badges.scss */
78
+ .badge-info[href]:hover, .badge-info[href]:focus {
79
+ background-color: #31B0D5;
80
+ }
81
+
82
+ /* line 22, ../sass/partials/_labels-and-badges.scss */
83
+ .badge-danger {
84
+ background-color: #D9534F;
85
+ }
86
+
87
+ /* line 25, ../sass/partials/_labels-and-badges.scss */
88
+ .badge-danger[href]:hover, .badge-danger[href]:focus {
89
+ background-color: #C9302C;
90
+ }
91
+
92
+ /* line 28, ../sass/partials/_labels-and-badges.scss */
93
+ .badge-new {
94
+ background-color: #007AFF;
95
+ border-radius: 12px 12px 12px 12px !important;
96
+ font-size: 11px !important;
97
+ font-weight: 300;
98
+ height: 18px;
99
+ padding: 3px 6px;
100
+ text-align: center;
101
+ text-shadow: none !important;
102
+ vertical-align: middle;
103
+ }
104
+
105
+ /* line 39, ../sass/partials/_labels-and-badges.scss */
106
+ .label {
107
+ font-size: 85% !important;
108
+ padding: 0.4em 0.6em !important;
109
+ }
110
+
111
+ /* line 43, ../sass/partials/_labels-and-badges.scss */
112
+ .label-inverse, .badge-inverse {
113
+ background-color: #555555;
114
+ }
115
+
116
+
117
+ .color-line {
118
+ background: #f7f9fa;
119
+ height: 6px;
120
+ background-image: -webkit-linear-gradient(left, #34495e, #34495e 25%, #9b59b6 25%, #9b59b6 35%, #3498db 35%, #3498db 45%, #62cb31 45%, #62cb31 55%, #ffb606 55%, #ffb606 65%, #e67e22 65%, #e67e22 75%, #e74c3c 85%, #e74c3c 85%, #c0392b 85%, #c0392b 100%);
121
+ background-image: -moz-linear-gradient(left, #34495e, #34495e 25%, #9b59b6 25%, #9b59b6 35%, #3498db 35%, #3498db 45%, #62cb31 45%, #62cb31 55%, #ffb606 55%, #ffb606 65%, #e67e22 65%, #e67e22 75%, #e74c3c 85%, #e74c3c 85%, #c0392b 85%, #c0392b 100%);
122
+ background-image: -ms-linear-gradient(left, #34495e, #34495e 25%, #9b59b6 25%, #9b59b6 35%, #3498db 35%, #3498db 45%, #62cb31 45%, #62cb31 55%, #ffb606 55%, #ffb606 65%, #e67e22 65%, #e67e22 75%, #e74c3c 85%, #e74c3c 85%, #c0392b 85%, #c0392b 100%);
123
+ background-image: linear-gradient(to right, #34495e, #34495e 25%, #9b59b6 25%, #9b59b6 35%, #3498db 35%, #3498db 45%, #62cb31 45%, #62cb31 55%, #ffb606 55%, #ffb606 65%, #e67e22 65%, #e67e22 75%, #e74c3c 85%, #e74c3c 85%, #c0392b 85%, #c0392b 100%);
124
+ background-size: 100% 6px;
125
+ background-position: 50% 100%;
126
+ background-repeat: no-repeat;
127
+ }
128
+
129
+ /* Splash style */
130
+ .splash {
131
+ position: fixed;
132
+ z-index: 2000;
133
+ background: white;
134
+ color: gray;
135
+ top: 0;
136
+ bottom: 0;
137
+ left: 0;
138
+ right: 0;
139
+ }
140
+
141
+ .splash-title {
142
+ text-align: center;
143
+ max-width: 500px;
144
+ margin: 15% auto;
145
+ padding: 20px;
146
+ }
147
+
148
+ .splash-title h1 {
149
+ font-size: 22px;
150
+ font-weight: 500;
151
+ }
152
+
153
+ .spinner {
154
+ margin: 20px auto;
155
+ /*width: 60px;*/
156
+ height: 50px;
157
+ text-align: center;
158
+ font-size: 15px;
159
+ }
160
+
161
+ .spinner > div {
162
+ background-color: #62cb31;
163
+ height: 100%;
164
+ width: 8px;
165
+ display: inline-block;
166
+ -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
167
+ animation: sk-stretchdelay 1.2s infinite ease-in-out;
168
+ }
169
+
170
+ .spinner .rect2 {
171
+ -webkit-animation-delay: -1.1s;
172
+ animation-delay: -1.1s;
173
+ }
174
+
175
+ .spinner .rect3 {
176
+ -webkit-animation-delay: -1s;
177
+ animation-delay: -1s;
178
+ }
179
+
180
+ .spinner .rect4 {
181
+ -webkit-animation-delay: -0.9s;
182
+ animation-delay: -0.9s;
183
+ }
184
+
185
+ .spinner .rect5 {
186
+ -webkit-animation-delay: -0.8s;
187
+ animation-delay: -0.8s;
188
+ }
189
+
190
+ @-webkit-keyframes sk-stretchdelay {
191
+ 0%,
192
+ 40%,
193
+ 100% {
194
+ -webkit-transform: scaleY(0.4);
195
+ }
196
+ 20% {
197
+ -webkit-transform: scaleY(1);
198
+ }
199
+ }
200
+
201
+ @keyframes sk-stretchdelay {
202
+ 0%,
203
+ 40%,
204
+ 100% {
205
+ transform: scaleY(0.4);
206
+ -webkit-transform: scaleY(0.4);
207
+ }
208
+ 20% {
209
+ transform: scaleY(1);
210
+ -webkit-transform: scaleY(1);
211
+ }
212
+ }
213
+
214
+
215
+ body.modal-open {
216
+ padding-right: 0 !important;
217
+ position: absolute;
218
+ }
219
+
220
+ .h-modal-icon {
221
+ font-size: 66px;
222
+ }
223
+
224
+ .inmodal .color-line {
225
+ border-radius: 4px 4px 0 0;
226
+ }
227
+
228
+ .modal-content {
229
+ border-radius: 5px;
230
+ border: none;
231
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
232
+ }
233
+
234
+ .modal-backdrop.in {
235
+ opacity: 0.4;
236
+ }
237
+
238
+ .modal-backdrop {
239
+ position: fixed;
240
+ bottom: 0;
241
+ }
242
+
243
+ .modal-dialog {
244
+ margin-top: 115px;
245
+ }
246
+
247
+ .modal-title {
248
+ font-size: 30px;
249
+ font-weight: 300;
250
+ }
251
+
252
+ .modal-header {
253
+ padding: 40px 30px;
254
+ background: #f7f9fa;
255
+ }
256
+
257
+ .modal-body {
258
+ padding: 20px 30px;
259
+ }
260
+
261
+ .modal-header small {
262
+ color: #9d9fa2;
263
+ }
264
+
265
+ .modal-footer {
266
+ background: #f7f9fa;
267
+ }
268
+
269
+ .modal-header {
270
+ padding: 15px;
271
+ }
272
+
273
+ .modal-title {
274
+ font-size: 15px;
275
+ }
276
+
277
+ .hmodal-info .color-line {
278
+ background: #3498db;
279
+ }
280
+
281
+ .hmodal-warning .color-line {
282
+ background: #ffb606;
283
+ }
284
+
285
+ .hmodal-success .color-line {
286
+ background: #62cb31;
287
+ }
288
+
289
+ .hmodal-danger .color-line {
290
+ background: #c0392b;
291
+ }
292
+
293
+ .hmodal-info h4.modal-title {
294
+ color: #3498db;
295
+ }
296
+
297
+ .hmodal-warning h4.modal-title {
298
+ color: #ffb606;
299
+ }
300
+
301
+ .hmodal-success h4.modal-title {
302
+ color: #62cb31;
303
+ }
304
+
305
+ .hmodal-danger h4.modal-title {
306
+ color: #c0392b;
307
+ }
308
+
309
+ /* Slider */
310
+ #logo {
311
+ float: left;
312
+ width: 260px;
313
+ /*background-color: #FFFFFF;*/
314
+ padding: 5px 10px 18px 18px;
315
+ height: 56px;
316
+ text-align: center;
317
+ }
318
+
319
+ #logo span {
320
+ font-weight: 600;
321
+ color: #fff;
322
+ font-size: 14px;
323
+ }
324
+
325
+ #logo.light-version {
326
+ background-color: #FFFFFF;
327
+ /*border-bottom: 1px solid #e4e5e7;*/
328
+ border-right: 1px solid #e4e5e7;
329
+ text-align: center;
330
+ }
331
+
332
+ #logo.light-version span {
333
+ font-weight: 600;
334
+ color: #000;
335
+ font-size: 14px;
336
+ line-height: 20px;
337
+ display: inline-block;
338
+ vertical-align: middle;
339
+ }
340
+
341
+ @media (max-width: 768px) {
342
+ .navbar-form-custom,
343
+ .navbar-right,
344
+ #logo {
345
+ display: none;
346
+ }
347
+ .navbar-static-top {
348
+ margin: 0;
349
+ }
350
+ .small-logo {
351
+ display: block;
352
+ float: left;
353
+ }
354
+ .header-line div {
355
+ display: none;
356
+ }
357
+ .color-demo .header-line {
358
+ height: 48px;
359
+ }
360
+ #hbreadcrumb {
361
+ float: none !important;
362
+ margin-bottom: 10px;
363
+ margin-top: 0;
364
+ }
365
+ }
366
+
367
+ /* Toastr custom styles*/
368
+ #toast-container {
369
+ }
370
+
371
+ #toast-container.toast-bottom-center > div, #toast-container.toast-top-center > div {
372
+ margin: 10px auto 0;
373
+ }
374
+
375
+
376
+ @-ms-viewport {
377
+ width: auto !important;
378
+ }
379
+
380
+ /* ---------------------------------------------------------------------- */
381
+ /* Only larger Devices
382
+ /* ---------------------------------------------------------------------- */
383
+ @media (min-width: 1824px) {
384
+ /* line 8, ../sass/partials/_responsive.scss */
385
+ .layout-boxed > .main-wrapper, .layout-boxed .navbar, .layout-boxed footer, .layout-boxed .newton, .layout-boxed #horizontal-menu {
386
+ max-width: 1470px !important;
387
+ }
388
+
389
+ /* line 11, ../sass/partials/_responsive.scss */
390
+ .layout-boxed .main-wrapper > .topbar, .layout-boxed .main-wrapper > footer, .layout-boxed #horizontal-menu {
391
+ left: 50% !important;
392
+ margin-left: -734px !important;
393
+ }
394
+
395
+ /* line 16, ../sass/partials/_responsive.scss */
396
+ .layout-boxed.right-sidebar-open .main-wrapper > .topbar, .layout-boxed.right-sidebar-open .main-wrapper > footer {
397
+ margin-left: -994px !important;
398
+ }
399
+ }
400
+
401
+ @media (min-width: 1224px) and (max-width: 1823px) {
402
+ /* line 23, ../sass/partials/_responsive.scss */
403
+ .layout-boxed > .main-wrapper, .layout-boxed .navbar, .layout-boxed footer, .layout-boxed .newton, .layout-boxed #horizontal-menu {
404
+ max-width: 1170px !important;
405
+ }
406
+
407
+ /* line 26, ../sass/partials/_responsive.scss */
408
+ .layout-boxed .main-wrapper > .topbar, .layout-boxed .main-wrapper > footer, .layout-boxed #horizontal-menu {
409
+ left: 50% !important;
410
+ margin-left: -584px !important;
411
+ }
412
+
413
+ /* line 31, ../sass/partials/_responsive.scss */
414
+ .layout-boxed.right-sidebar-open .main-wrapper > .topbar, .layout-boxed.right-sidebar-open .main-wrapper > footerfooter {
415
+ margin-left: -844px !important;
416
+ }
417
+ }
418
+
419
+ @media (min-width: 992px) {
420
+ /* 992px */
421
+ /* line 37, ../sass/partials/_responsive.scss */
422
+ .layout-boxed #pageslide-left {
423
+ left: auto !important;
424
+ margin-left: 0 !important;
425
+ }
426
+
427
+ /* line 41, ../sass/partials/_responsive.scss */
428
+ .layout-boxed .closedbar {
429
+ left: auto !important;
430
+ display: none;
431
+ }
432
+
433
+ /* line 46, ../sass/partials/_responsive.scss */
434
+ .layout-boxed.right-sidebar-open #pageslide-left {
435
+ margin-left: -260px !important;
436
+ }
437
+
438
+ /* line 50, ../sass/partials/_responsive.scss */
439
+ .layout-boxed.sidebar-close #pageslide-left {
440
+ display: none;
441
+ }
442
+
443
+ /* line 53, ../sass/partials/_responsive.scss */
444
+ .layout-boxed.sidebar-close .main-container {
445
+ margin-left: 0 !important;
446
+ }
447
+
448
+ /* line 56, ../sass/partials/_responsive.scss */
449
+ .layout-boxed.sidebar-close .closedbar {
450
+ display: block;
451
+ }
452
+
453
+ /* line 59, ../sass/partials/_responsive.scss */
454
+ .layout-boxed.right-sidebar-open .closedbar {
455
+ margin-left: -260px !important;
456
+ }
457
+ }
458
+
459
+ @media (min-width: 1200px) {
460
+ /* 1200px */
461
+ /* line 64, ../sass/partials/_responsive.scss */
462
+ .core-box .title {
463
+ font-size: 16px;
464
+ line-height: 16px;
465
+ font-size: 1.2vw;
466
+ line-height: 1.2vw;
467
+ }
468
+ }
469
+
470
+ /* ---------------------------------------------------------------------- */
471
+ /* Small Devices Only
472
+ /* ---------------------------------------------------------------------- */
473
+ @media (max-width: 767px) {
474
+ /* 767px */
475
+ /* line 75, ../sass/partials/_responsive.scss */
476
+ .current-user .dropdown-menu {
477
+ right: auto !important;
478
+ left: -100px !important;
479
+ }
480
+
481
+ /* line 79, ../sass/partials/_responsive.scss */
482
+ .toolbar .tooltip-notification {
483
+ right: auto;
484
+ }
485
+
486
+ /* line 82, ../sass/partials/_responsive.scss */
487
+ .tooltip-notification .tooltip-notification-arrow {
488
+ left: 40%;
489
+ }
490
+ }
491
+
492
+ /* ---------------------------------------------------------------------- */
493
+ /* From Small Devices Up To Medium Devices
494
+ /* ---------------------------------------------------------------------- */
495
+ @media (min-width: 768px) and (max-width: 991px) {
496
+ /* 768px - 991px */
497
+ /* line 90, ../sass/partials/_responsive.scss */
498
+ .current-user .dropdown-menu {
499
+ right: auto !important;
500
+ left: -30px !important;
501
+ }
502
+ }
503
+
504
+ /* ---------------------------------------------------------------------- */
505
+ /* Up To Medium Devices
506
+ /* ---------------------------------------------------------------------- */
507
+ @media (max-width: 991px) {
508
+ /* 991px */
509
+ /* line 100, ../sass/partials/_responsive.scss */
510
+ .horizontal-menu-fixed .main-container {
511
+ margin-top: 36px !important;
512
+ }
513
+
514
+ /* line 103, ../sass/partials/_responsive.scss */
515
+ .main-container {
516
+ margin-left: 0 !important;
517
+ }
518
+ /* line 105, ../sass/partials/_responsive.scss */
519
+ .sidebar-mobile-open .main-container {
520
+ left: 260px !important;
521
+ }
522
+
523
+ /* line 109, ../sass/partials/_responsive.scss */
524
+ .main-content .container > .row, #ajax-content > .row {
525
+ padding: 0;
526
+ }
527
+
528
+ /* line 113, ../sass/partials/_responsive.scss */
529
+ .sidebar-mobile-open .topbar {
530
+ left: 260px !important;
531
+ right: -260px !important;
532
+ }
533
+ /* line 117, ../sass/partials/_responsive.scss */
534
+ .topbar > .container .navbar-header {
535
+ float: none;
536
+ margin: 12px 0 0 10px;
537
+ width: 140px;
538
+ }
539
+
540
+ /* line 123, ../sass/partials/_responsive.scss */
541
+ .topbar {
542
+ min-height: 50px !important;
543
+ position: relative !important;
544
+ }
545
+ /* line 128, ../sass/partials/_responsive.scss */
546
+ .topbar .container .navbar-header .sb-toggle-left {
547
+ height: 50px !important;
548
+ line-height: 50px !important;
549
+ }
550
+ /* line 132, ../sass/partials/_responsive.scss */
551
+ .topbar .container .navbar-header .navbar-brand {
552
+ line-height: 50px !important;
553
+ }
554
+ /* line 136, ../sass/partials/_responsive.scss */
555
+ .topbar .container .topbar-tools {
556
+ height: 50px !important;
557
+ max-height: 50px !important;
558
+ }
559
+ /* line 143, ../sass/partials/_responsive.scss */
560
+ .topbar .container .topbar-tools > ul > li.current-user .dropdown-toggle {
561
+ line-height: 50px !important;
562
+ height: 50px !important;
563
+ }
564
+ /* line 149, ../sass/partials/_responsive.scss */
565
+ .topbar .container .topbar-tools > ul > li.right-menu-toggle a {
566
+ line-height: 40px;
567
+ height: 40px;
568
+ }
569
+
570
+ /* line 160, ../sass/partials/_responsive.scss */
571
+ .main-container, .horizontal-menu-fixed .main-container {
572
+ margin-top: 0 !important;
573
+ }
574
+
575
+ /* line 163, ../sass/partials/_responsive.scss */
576
+ .topbar > .container .navbar-brand, .logo {
577
+ left: 50px;
578
+ }
579
+
580
+ /* line 166, ../sass/partials/_responsive.scss */
581
+ li.dropdown.current-user .dropdown-toggle > i {
582
+ margin-left: 0;
583
+ }
584
+
585
+ /* line 169, ../sass/partials/_responsive.scss */
586
+ .dropdown-subview {
587
+ right: auto !important;
588
+ left: -15px !important;
589
+ }
590
+ /* line 172, ../sass/partials/_responsive.scss */
591
+ .dropdown-subview:before {
592
+ right: auto !important;
593
+ left: 49px !important;
594
+ }
595
+ /* line 176, ../sass/partials/_responsive.scss */
596
+ .dropdown-subview:after {
597
+ right: auto !important;
598
+ left: 50px !important;
599
+ }
600
+
601
+ /* line 182, ../sass/partials/_responsive.scss */
602
+ .dropdown-messages {
603
+ right: auto !important;
604
+ left: -110px !important;
605
+ }
606
+ /* line 185, ../sass/partials/_responsive.scss */
607
+ .dropdown-messages:before {
608
+ right: auto !important;
609
+ left: 144px !important;
610
+ }
611
+ /* line 189, ../sass/partials/_responsive.scss */
612
+ .dropdown-messages:after {
613
+ right: auto !important;
614
+ left: 145px !important;
615
+ }
616
+
617
+ /* line 195, ../sass/partials/_responsive.scss */
618
+ .main-content .row {
619
+ padding: 0;
620
+ }
621
+
622
+ /* line 198, ../sass/partials/_responsive.scss */
623
+ #pageslide-left {
624
+ top: 0;
625
+ left: -260px !important;
626
+ margin-left: 0 !important;
627
+ padding-top: 0 !important;
628
+ }
629
+ /* line 203, ../sass/partials/_responsive.scss */
630
+ .sidebar-mobile-open #pageslide-left {
631
+ left: 0 !important;
632
+ }
633
+ /* line 206, ../sass/partials/_responsive.scss */
634
+ .right-sidebar-open #pageslide-left {
635
+ left: -520px !important;
636
+ }
637
+ /* line 209, ../sass/partials/_responsive.scss */
638
+ #pageslide-left .navbar-content {
639
+ top: 0;
640
+ }
641
+
642
+ /* line 214, ../sass/partials/_responsive.scss */
643
+ .sidebar-mobile-open #pageslide-right {
644
+ right: -520px;
645
+ }
646
+
647
+ /* line 219, ../sass/partials/_responsive.scss */
648
+ .flot-small-container {
649
+ height: 200px;
650
+ }
651
+
652
+ /* line 222, ../sass/partials/_responsive.scss */
653
+ .main-content, footer .footer-inner {
654
+ position: relative;
655
+ margin-left: 0 !important;
656
+ }
657
+
658
+ /* line 227, ../sass/partials/_responsive.scss */
659
+ .sidebar-mobile-open footer {
660
+ left: 260px !important;
661
+ }
662
+
663
+ /* line 231, ../sass/partials/_responsive.scss */
664
+ div.timeline {
665
+ margin: 0;
666
+ }
667
+ /* line 233, ../sass/partials/_responsive.scss */
668
+ div.timeline .columns li {
669
+ float: none !important;
670
+ width: 100% !important;
671
+ }
672
+
673
+ /* line 241, ../sass/partials/_responsive.scss */
674
+ .timeline_element {
675
+ margin: 20px auto !important;
676
+ }
677
+ /* line 243, ../sass/partials/_responsive.scss */
678
+ .timeline_element:after {
679
+ display: none;
680
+ }
681
+ /* line 246, ../sass/partials/_responsive.scss */
682
+ .timeline_element:before {
683
+ display: none;
684
+ }
685
+
686
+ /* line 250, ../sass/partials/_responsive.scss */
687
+ .timeline-scrubber {
688
+ display: none;
689
+ }
690
+
691
+ /* line 253, ../sass/partials/_responsive.scss */
692
+ .faq .nav-tabs {
693
+ float: none;
694
+ }
695
+
696
+ /* line 256, ../sass/partials/_responsive.scss */
697
+ .page-header h1 {
698
+ font-size: 24px;
699
+ margin-top: 15px !important;
700
+ }
701
+
702
+ /*Lock Screen*/
703
+ /* line 261, ../sass/partials/_responsive.scss */
704
+ .main-ls {
705
+ height: auto;
706
+ left: 0;
707
+ margin: 0 auto !important;
708
+ position: relative;
709
+ top: 0;
710
+ width: 85%;
711
+ }
712
+
713
+ /* line 269, ../sass/partials/_responsive.scss */
714
+ .main-ls .logo, .main-ls .copyright {
715
+ text-align: center;
716
+ }
717
+
718
+ /* line 272, ../sass/partials/_responsive.scss */
719
+ body.lock-screen .box-ls {
720
+ display: inline-block;
721
+ text-align: center;
722
+ width: 100% !important;
723
+ }
724
+
725
+ /* line 277, ../sass/partials/_responsive.scss */
726
+ body.lock-screen .user-info {
727
+ float: none !important;
728
+ width: auto !important;
729
+ }
730
+
731
+ /* line 283, ../sass/partials/_responsive.scss */
732
+ .mini-stats li {
733
+ border-right: 1px solid #30ddc6;
734
+ }
735
+ /* line 285, ../sass/partials/_responsive.scss */
736
+ .mini-stats li:last-child {
737
+ border-right: 0 none;
738
+ }
739
+
740
+ /* line 290, ../sass/partials/_responsive.scss */
741
+ #sidebar-tab.nav-justified > li {
742
+ display: table-cell;
743
+ width: 1%;
744
+ }
745
+ /* line 293, ../sass/partials/_responsive.scss */
746
+ #sidebar-tab.nav-justified > li a {
747
+ border: 1px solid transparent;
748
+ }
749
+ }
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+