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,359 @@
1
+ /* ---------------------------------------------------------------------- */
2
+ /* Timeline
3
+ /* ---------------------------------------------------------------------- */
4
+ /* line 4, ../sass/partials/_timeline.scss */
5
+ div.timeline {
6
+ margin: 0 100px 0 0;
7
+ overflow: hidden;
8
+ position: relative;
9
+ }
10
+ /* line 8, ../sass/partials/_timeline.scss */
11
+ div.timeline .columns {
12
+ margin: 0;
13
+ padding: 0;
14
+ list-style: none;
15
+ }
16
+ /* line 12, ../sass/partials/_timeline.scss */
17
+ div.timeline .columns > li:nth-child(2n+1) {
18
+ float: left;
19
+ width: 50%;
20
+ clear: left;
21
+ }
22
+ /* line 16, ../sass/partials/_timeline.scss */
23
+ div.timeline .columns > li:nth-child(2n+1) .timeline_element {
24
+ float: right;
25
+ left: 10%;
26
+ margin-right: 30px;
27
+ left: 0;
28
+ opacity: 1;
29
+ }
30
+ /* line 22, ../sass/partials/_timeline.scss */
31
+ div.timeline .columns > li:nth-child(2n+1) .timeline_element:before {
32
+ right: -27px;
33
+ top: 15px;
34
+ }
35
+ /* line 26, ../sass/partials/_timeline.scss */
36
+ div.timeline .columns > li:nth-child(2n+1) .timeline_element:after {
37
+ right: -35px;
38
+ top: 10px;
39
+ }
40
+ /* line 32, ../sass/partials/_timeline.scss */
41
+ div.timeline .columns > li:nth-child(2n+2) {
42
+ float: right;
43
+ margin-top: 20px;
44
+ width: 50%;
45
+ clear: right;
46
+ }
47
+ /* line 37, ../sass/partials/_timeline.scss */
48
+ div.timeline .columns > li:nth-child(2n+2) .timeline_element {
49
+ float: left;
50
+ margin-left: 30px;
51
+ right: 10%;
52
+ opacity: 1;
53
+ right: 0;
54
+ }
55
+ /* line 43, ../sass/partials/_timeline.scss */
56
+ div.timeline .columns > li:nth-child(2n+2) .timeline_element:before {
57
+ left: -27px;
58
+ top: 15px;
59
+ }
60
+ /* line 47, ../sass/partials/_timeline.scss */
61
+ div.timeline .columns > li:nth-child(2n+2) .timeline_element:after {
62
+ left: -35px;
63
+ top: 10px;
64
+ }
65
+ /* line 54, ../sass/partials/_timeline.scss */
66
+ div.timeline .date_separator {
67
+ clear: both;
68
+ height: 60px;
69
+ position: relative;
70
+ text-align: center;
71
+ }
72
+ /* line 59, ../sass/partials/_timeline.scss */
73
+ div.timeline .date_separator span {
74
+ border-radius: 5px;
75
+ height: 30px;
76
+ line-height: 30px;
77
+ margin-top: -16px;
78
+ position: absolute;
79
+ top: -200%;
80
+ width: 200px;
81
+ top: 50%;
82
+ left: 50%;
83
+ margin-left: -100px;
84
+ border: 1px solid #707788;
85
+ background-color: #8B91A0;
86
+ color: #ffffff;
87
+ }
88
+ /* line 75, ../sass/partials/_timeline.scss */
89
+ div.timeline .spine {
90
+ border-radius: 2px;
91
+ position: absolute;
92
+ top: 0;
93
+ width: 4px;
94
+ left: 50%;
95
+ margin-left: -2px;
96
+ bottom: 0;
97
+ background-color: #dfe1e5;
98
+ }
99
+ /* line 86, ../sass/partials/_timeline.scss */
100
+ div.timeline .column_center .timeline_element {
101
+ margin: 20px auto;
102
+ opacity: 1;
103
+ }
104
+ /* line 89, ../sass/partials/_timeline.scss */
105
+ div.timeline .column_center .timeline_element:before, div.timeline .column_center .timeline_element:after {
106
+ display: none;
107
+ }
108
+
109
+ /* line 96, ../sass/partials/_timeline.scss */
110
+ .timeline_element {
111
+ border-radius: 5px;
112
+ clear: both;
113
+ margin: 10px 0;
114
+ padding: 20px;
115
+ opacity: 0;
116
+ position: relative;
117
+ transition: all 0.2s linear 0s;
118
+ min-width: 66.6667%;
119
+ text-shadow: none;
120
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
121
+ }
122
+ /* line 107, ../sass/partials/_timeline.scss */
123
+ .timeline_element.partition-white {
124
+ border: 1px solid #dfe1e5;
125
+ }
126
+ /* line 109, ../sass/partials/_timeline.scss */
127
+ .timeline_element.partition-white:hover {
128
+ border: 1px solid #d1d3d9;
129
+ }
130
+ /* line 112, ../sass/partials/_timeline.scss */
131
+ .timeline_element.partition-white:after {
132
+ background-color: #ffffff;
133
+ }
134
+ /* line 115, ../sass/partials/_timeline.scss */
135
+ .timeline_element.partition-white:hover:after {
136
+ background-color: #707788;
137
+ border: 1px solid #ffffff;
138
+ }
139
+ /* line 120, ../sass/partials/_timeline.scss */
140
+ .timeline_element.partition-green {
141
+ border: none;
142
+ color: #ffffff;
143
+ }
144
+ /* line 123, ../sass/partials/_timeline.scss */
145
+ .timeline_element.partition-green:hover {
146
+ border: none;
147
+ }
148
+ /* line 126, ../sass/partials/_timeline.scss */
149
+ .timeline_element.partition-green:after {
150
+ background-color: #1FBBA6;
151
+ }
152
+ /* line 129, ../sass/partials/_timeline.scss */
153
+ .timeline_element.partition-green:hover:after {
154
+ background-color: #ffffff;
155
+ border: 1px solid #1FBBA6;
156
+ }
157
+ /* line 134, ../sass/partials/_timeline.scss */
158
+ .timeline_element.partition-orange {
159
+ border: none;
160
+ color: #ffffff;
161
+ }
162
+ /* line 137, ../sass/partials/_timeline.scss */
163
+ .timeline_element.partition-orange:hover {
164
+ border: none;
165
+ }
166
+ /* line 140, ../sass/partials/_timeline.scss */
167
+ .timeline_element.partition-orange:after {
168
+ background-color: #F58A5C;
169
+ }
170
+ /* line 143, ../sass/partials/_timeline.scss */
171
+ .timeline_element.partition-orange:hover:after {
172
+ background-color: #ffffff;
173
+ border: 1px solid #F58A5C;
174
+ }
175
+ /* line 148, ../sass/partials/_timeline.scss */
176
+ .timeline_element.partition-blue {
177
+ border: none;
178
+ color: #ffffff;
179
+ }
180
+ /* line 151, ../sass/partials/_timeline.scss */
181
+ .timeline_element.partition-blue:hover {
182
+ border: none;
183
+ }
184
+ /* line 154, ../sass/partials/_timeline.scss */
185
+ .timeline_element.partition-blue:after {
186
+ background-color: #5F8295;
187
+ }
188
+ /* line 157, ../sass/partials/_timeline.scss */
189
+ .timeline_element.partition-blue:hover:after {
190
+ background-color: #ffffff;
191
+ border: 1px solid #5F8295;
192
+ }
193
+ /* line 162, ../sass/partials/_timeline.scss */
194
+ .timeline_element.partition-red {
195
+ border: none;
196
+ color: #ffffff;
197
+ }
198
+ /* line 165, ../sass/partials/_timeline.scss */
199
+ .timeline_element.partition-red:hover {
200
+ border: none;
201
+ }
202
+ /* line 168, ../sass/partials/_timeline.scss */
203
+ .timeline_element.partition-red:after {
204
+ background-color: #e66b6b;
205
+ }
206
+ /* line 171, ../sass/partials/_timeline.scss */
207
+ .timeline_element.partition-red:hover:after {
208
+ background-color: #ffffff;
209
+ border: 1px solid #e66b6b;
210
+ }
211
+ /* line 176, ../sass/partials/_timeline.scss */
212
+ .timeline_element.partition-azure {
213
+ border: none;
214
+ color: #ffffff;
215
+ }
216
+ /* line 179, ../sass/partials/_timeline.scss */
217
+ .timeline_element.partition-azure:hover {
218
+ border: none;
219
+ }
220
+ /* line 182, ../sass/partials/_timeline.scss */
221
+ .timeline_element.partition-azure:after {
222
+ background-color: #00BDCC;
223
+ }
224
+ /* line 185, ../sass/partials/_timeline.scss */
225
+ .timeline_element.partition-azure:hover:after {
226
+ background-color: #ffffff;
227
+ border: 1px solid #00BDCC;
228
+ }
229
+ /* line 190, ../sass/partials/_timeline.scss */
230
+ .timeline_element.partition-purple {
231
+ border: none;
232
+ color: #ffffff;
233
+ }
234
+ /* line 193, ../sass/partials/_timeline.scss */
235
+ .timeline_element.partition-purple:hover {
236
+ border: none;
237
+ }
238
+ /* line 196, ../sass/partials/_timeline.scss */
239
+ .timeline_element.partition-purple:after {
240
+ background-color: #804C75;
241
+ }
242
+ /* line 199, ../sass/partials/_timeline.scss */
243
+ .timeline_element.partition-purple:hover:after {
244
+ background-color: #ffffff;
245
+ border: 1px solid #804C75;
246
+ }
247
+ /* line 204, ../sass/partials/_timeline.scss */
248
+ .timeline_element:hover {
249
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
250
+ }
251
+ /* line 207, ../sass/partials/_timeline.scss */
252
+ .timeline_element:before {
253
+ content: "";
254
+ display: block;
255
+ height: 0;
256
+ position: absolute;
257
+ width: 46px;
258
+ border-top: 1px dashed #CCCCCC;
259
+ }
260
+ /* line 215, ../sass/partials/_timeline.scss */
261
+ .timeline_element:after {
262
+ border-radius: 100%;
263
+ content: "";
264
+ display: block;
265
+ height: 10px;
266
+ position: absolute;
267
+ width: 10px;
268
+ background-color: #BBBBBB;
269
+ border: 1px solid #FFFFFF;
270
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
271
+ }
272
+ /* line 226, ../sass/partials/_timeline.scss */
273
+ .timeline_element:hover:after {
274
+ z-index: 100;
275
+ background-color: #FFFFFF;
276
+ border: 1px solid #CCCCCC;
277
+ z-index: 100;
278
+ }
279
+ /* line 232, ../sass/partials/_timeline.scss */
280
+ .timeline_element .timeline_title {
281
+ overflow: hidden;
282
+ position: relative;
283
+ text-transform: uppercase;
284
+ padding-top: 10px;
285
+ }
286
+ /* line 238, ../sass/partials/_timeline.scss */
287
+ .timeline_element .timeline_date {
288
+ display: block;
289
+ }
290
+ /* line 240, ../sass/partials/_timeline.scss */
291
+ .timeline_element .timeline_date .day {
292
+ font-size: 52px;
293
+ letter-spacing: -2px;
294
+ }
295
+ /* line 245, ../sass/partials/_timeline.scss */
296
+ .timeline_element .timeline_content {
297
+ padding-top: 10px;
298
+ }
299
+ /* line 248, ../sass/partials/_timeline.scss */
300
+ .timeline_element .readmore {
301
+ padding: 10px;
302
+ text-align: right;
303
+ }
304
+
305
+ /* line 253, ../sass/partials/_timeline.scss */
306
+ .timeline-scrubber {
307
+ padding: 8px 0 8px 1px;
308
+ top: 60px;
309
+ right: 0;
310
+ width: 100px;
311
+ z-index: 1;
312
+ list-style: none;
313
+ position: absolute;
314
+ }
315
+ /* line 261, ../sass/partials/_timeline.scss */
316
+ .timeline-scrubber li {
317
+ margin-bottom: 1px;
318
+ }
319
+ /* line 264, ../sass/partials/_timeline.scss */
320
+ .timeline-scrubber li:nth-last-child(2) a {
321
+ border-color: #c3c6ce;
322
+ color: #c3c6ce;
323
+ }
324
+ /* line 270, ../sass/partials/_timeline.scss */
325
+ .timeline-scrubber li:last-child a {
326
+ border-color: #d1d3d9;
327
+ color: #d1d3d9;
328
+ }
329
+ /* line 276, ../sass/partials/_timeline.scss */
330
+ .timeline-scrubber a {
331
+ border-left: 5px solid #a7acb7;
332
+ color: #a7acb7;
333
+ display: block;
334
+ font-weight: normal;
335
+ outline: medium none;
336
+ padding: 4px 0 4px 6px;
337
+ }
338
+ /* line 283, ../sass/partials/_timeline.scss */
339
+ .timeline-scrubber a:hover {
340
+ border-color: #707788 !important;
341
+ color: #707788 !important;
342
+ }
343
+ /* line 288, ../sass/partials/_timeline.scss */
344
+ .timeline-scrubber .selected > a {
345
+ border-left-color: #707788 !important;
346
+ color: #707788 !important;
347
+ font-weight: bold !important;
348
+ }
349
+
350
+ /* ie8 fixes */
351
+ /* line 296, ../sass/partials/_timeline.scss */
352
+ .ie8 div.timeline_element:after {
353
+ display: none;
354
+ }
355
+
356
+ /* line 299, ../sass/partials/_timeline.scss */
357
+ .ie8 div.timeline_element:before {
358
+ display: none;
359
+ }
@@ -0,0 +1,99 @@
1
+ /* ---------------------------------------------------------------------- */
2
+ /* User profile
3
+ /* ---------------------------------------------------------------------- */
4
+ /* line 5, ../sass/partials/_user-profile.scss */
5
+ .user-left {
6
+ border-right: 1px solid #DDDDDD;
7
+ padding-right: 15px;
8
+ }
9
+
10
+ /* line 9, ../sass/partials/_user-profile.scss */
11
+ .user-left a:hover, .user-left a:focus {
12
+ text-decoration: none;
13
+ }
14
+
15
+ /* line 12, ../sass/partials/_user-profile.scss */
16
+ .user-left td .edit-user-info {
17
+ visibility: hidden;
18
+ }
19
+
20
+ /* line 15, ../sass/partials/_user-profile.scss */
21
+ .user-left tr:hover .edit-user-info {
22
+ visibility: visible;
23
+ }
24
+
25
+ /* line 18, ../sass/partials/_user-profile.scss */
26
+ .user-left .user-image {
27
+ position: relative;
28
+ display: inline-block;
29
+ }
30
+
31
+ /* line 22, ../sass/partials/_user-profile.scss */
32
+ .user-image .user-image-buttons {
33
+ position: absolute;
34
+ top: 10px;
35
+ right: 10px;
36
+ display: none;
37
+ }
38
+
39
+ /* line 28, ../sass/partials/_user-profile.scss */
40
+ .user-image:hover .user-image-buttons {
41
+ display: block;
42
+ }
43
+
44
+ /* line 31, ../sass/partials/_user-profile.scss */
45
+ .user-edit-image-buttons {
46
+ display: inline;
47
+ }
48
+
49
+ /* line 34, ../sass/partials/_user-profile.scss */
50
+ #projects .progress {
51
+ margin-bottom: 0;
52
+ }
53
+
54
+ /* line 37, ../sass/partials/_user-profile.scss */
55
+ .activities {
56
+ list-style: none outside none;
57
+ margin: 0;
58
+ padding: 0;
59
+ }
60
+
61
+ /* line 42, ../sass/partials/_user-profile.scss */
62
+ .activities li a {
63
+ background: white;
64
+ border-bottom: 1px solid #E4E6EB;
65
+ font-size: 12px;
66
+ margin-left: 0 !important;
67
+ padding: 10px 100px 10px 10px !important;
68
+ position: relative;
69
+ display: block;
70
+ color: #8B91A0;
71
+ }
72
+
73
+ /* line 52, ../sass/partials/_user-profile.scss */
74
+ .activities li .activity:hover, .activities li .activity:focus {
75
+ text-decoration: none;
76
+ background-color: #F4F6F9 !important;
77
+ }
78
+
79
+ /* line 56, ../sass/partials/_user-profile.scss */
80
+ .activities li .activity .circle-icon {
81
+ font-size: 16px !important;
82
+ width: 50px;
83
+ height: 50px;
84
+ line-height: 50px;
85
+ margin-right: 10px;
86
+ }
87
+
88
+ /* line 63, ../sass/partials/_user-profile.scss */
89
+ .activities li .activity img {
90
+ margin-right: 10px;
91
+ }
92
+
93
+ /* line 66, ../sass/partials/_user-profile.scss */
94
+ .activities li .time {
95
+ position: absolute;
96
+ right: 10px;
97
+ top: 30px;
98
+ color: #CCCCCC;
99
+ }