asset_box 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
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,343 @@
1
+ /**/
2
+ /* ---------------------------------------------------------------------- */
3
+ /* Calendar
4
+ /* ---------------------------------------------------------------------- */
5
+ /* line 4, ../sass/partials/_calendar.scss */
6
+ #calendar {
7
+ position: relative;
8
+ }
9
+
10
+ /* line 7, ../sass/partials/_calendar.scss */
11
+ .fc-event {
12
+ padding: 2px;
13
+ }
14
+
15
+ /* line 10, ../sass/partials/_calendar.scss */
16
+ .fc-day-number {
17
+ margin: 2px 2px 0 0;
18
+ }
19
+
20
+ /* line 13, ../sass/partials/_calendar.scss */
21
+ .fc-header-title h2 {
22
+ color: #666666;
23
+ font-family: 'Raleway', sans-serif;
24
+ font-weight: 200;
25
+ letter-spacing: -1px;
26
+ }
27
+
28
+ /* line 19, ../sass/partials/_calendar.scss */
29
+ .fc-today .fc-day-number {
30
+ font-weight: bold;
31
+ }
32
+
33
+ /* line 23, ../sass/partials/_calendar.scss */
34
+ .fc-state-highlight {
35
+ background: #F5F5F5 !important;
36
+ }
37
+
38
+ /* line 26, ../sass/partials/_calendar.scss */
39
+ .fc-button {
40
+ color: #858585 !important;
41
+ height: 40px;
42
+ line-height: 40px;
43
+ opacity: 0.6;
44
+ }
45
+
46
+ /* line 32, ../sass/partials/_calendar.scss */
47
+ .fc-button:hover {
48
+ opacity: 1;
49
+ }
50
+
51
+ /* line 35, ../sass/partials/_calendar.scss */
52
+ .fc-button-prev, .fc-button-next {
53
+ padding: 0;
54
+ width: 40px;
55
+ line-height: 40px;
56
+ text-align: center;
57
+ position: relative;
58
+ text-indent: -9999px;
59
+ }
60
+
61
+ /* line 43, ../sass/partials/_calendar.scss */
62
+ .fc-button-prev .fc-text-arrow, .fc-button-next .fc-text-arrow {
63
+ font-weight: bold;
64
+ }
65
+
66
+ /* line 46, ../sass/partials/_calendar.scss */
67
+ .fc-button-prev:after, .fc-button-next:after {
68
+ font-family: 'Font Awesome 5 Free';
69
+ text-indent: 0;
70
+ width: 40px;
71
+ height: 40px;
72
+ position: absolute;
73
+ top: 0;
74
+ left: 0;
75
+ }
76
+
77
+ /* line 55, ../sass/partials/_calendar.scss */
78
+ .fc-button-prev:after {
79
+ content: "\f104";
80
+ }
81
+
82
+ /* line 58, ../sass/partials/_calendar.scss */
83
+ .fc-button-next:after {
84
+ content: "\f105";
85
+ }
86
+
87
+ /* line 61, ../sass/partials/_calendar.scss */
88
+ .fc-state-default {
89
+ background-color: #ffffff !important;
90
+ background-image: none !important;
91
+ border-color: #DDDDDD !important;
92
+ box-shadow: none !important;
93
+ color: #666666;
94
+ text-shadow: none !important;
95
+ border-radius: 0 !important;
96
+ }
97
+
98
+ /* line 70, ../sass/partials/_calendar.scss */
99
+ .fc-state-down, .fc-state-active {
100
+ opacity: 1;
101
+ }
102
+
103
+ /* line 73, ../sass/partials/_calendar.scss */
104
+ .fc-header-left {
105
+ position: absolute !important;
106
+ top: 0;
107
+ left: 0;
108
+ width: 50% !important;
109
+ }
110
+
111
+ /* line 79, ../sass/partials/_calendar.scss */
112
+ .fc-header-right {
113
+ position: absolute !important;
114
+ top: 0;
115
+ right: 0;
116
+ width: 50% !important;
117
+ }
118
+
119
+ /* line 85, ../sass/partials/_calendar.scss */
120
+ .fc-header-center {
121
+ display: block !important;
122
+ padding-top: 60px !important;
123
+ }
124
+
125
+ /* line 89, ../sass/partials/_calendar.scss */
126
+ .event-category {
127
+ color: #ffffff;
128
+ padding: 5px;
129
+ border-radius: 3px;
130
+ margin: 5px 0;
131
+ }
132
+
133
+ /* line 95, ../sass/partials/_calendar.scss */
134
+ .label-default, .badge-default {
135
+ background-color: #3A87AD !important;
136
+ border-color: #3A87AD !important;
137
+ }
138
+
139
+ /* line 99, ../sass/partials/_calendar.scss */
140
+ .label-orange, .badge-orange {
141
+ background-color: #E6674A !important;
142
+ border-color: #E6674A !important;
143
+ }
144
+
145
+ /* line 103, ../sass/partials/_calendar.scss */
146
+ .label-purple, .badge-purple {
147
+ background-color: #57517B !important;
148
+ border-color: #57517B !important;
149
+ }
150
+
151
+ /* line 107, ../sass/partials/_calendar.scss */
152
+ .label-yellow, .badge-yellow {
153
+ background-color: #FFB848 !important;
154
+ border-color: #FFB848 !important;
155
+ }
156
+
157
+ /* line 111, ../sass/partials/_calendar.scss */
158
+ .label-teal, .badge-teal {
159
+ background-color: #569099 !important;
160
+ border-color: #569099 !important;
161
+ }
162
+
163
+ /* line 115, ../sass/partials/_calendar.scss */
164
+ .label-beige, .badge-beige {
165
+ background-color: #CCCC99 !important;
166
+ border-color: #CCCC99 !important;
167
+ }
168
+
169
+ /* line 119, ../sass/partials/_calendar.scss */
170
+ .label-green, .badge-green {
171
+ background-color: #3D9400 !important;
172
+ border-color: #3D9400 !important;
173
+ }
174
+
175
+ /* line 123, ../sass/partials/_calendar.scss */
176
+ .fc-border-separate tr.fc-last th {
177
+ border-top: none !important;
178
+ border-left: none !important;
179
+ }
180
+
181
+ /* line 127, ../sass/partials/_calendar.scss */
182
+ .fc-border-separate th.fc-last {
183
+ border-right: none !important;
184
+ }
185
+
186
+ /* line 130, ../sass/partials/_calendar.scss */
187
+ .fc-grid th {
188
+ text-align: right;
189
+ }
190
+
191
+ /* line 133, ../sass/partials/_calendar.scss */
192
+ .fc-event {
193
+ background-color: #F0F0F0;
194
+ border: none;
195
+ color: #333333;
196
+ font-size: 12px;
197
+ }
198
+
199
+ /* line 139, ../sass/partials/_calendar.scss */
200
+ .fc-event .fc-event-title:before, .event-category:before {
201
+ content: "\f111";
202
+ font-family: 'Font Awesome 5 Free';
203
+ font-size: 6px;
204
+ line-height: 16px;
205
+ padding-right: 5px;
206
+ color: #00AEFF;
207
+ float: left;
208
+ }
209
+
210
+ /* line 148, ../sass/partials/_calendar.scss */
211
+ .event-category {
212
+ color: #858585;
213
+ }
214
+
215
+ /* line 151, ../sass/partials/_calendar.scss */
216
+ .event-category:before {
217
+ line-height: 20px;
218
+ }
219
+
220
+ /* line 154, ../sass/partials/_calendar.scss */
221
+ .event-cancelled .fc-event-title:before, .event-category.event-cancelled:before {
222
+ color: #E6C800;
223
+ }
224
+
225
+ /* line 157, ../sass/partials/_calendar.scss */
226
+ .event-home .fc-event-title:before, .event-category.event-home:before {
227
+ color: #FF2968;
228
+ }
229
+
230
+ /* line 160, ../sass/partials/_calendar.scss */
231
+ .event-overtime .fc-event-title:before, .event-category.event-overtime:before {
232
+ color: #711A76;
233
+ }
234
+
235
+ /* line 163, ../sass/partials/_calendar.scss */
236
+ .event-generic .fc-event-title:before, .event-category.event-generic:before {
237
+ color: #00AEFF;
238
+ }
239
+
240
+ /* line 166, ../sass/partials/_calendar.scss */
241
+ .event-job .fc-event-title:before, .event-category.event-job:before {
242
+ color: #882F00;
243
+ }
244
+
245
+ /* line 169, ../sass/partials/_calendar.scss */
246
+ .event-offsite .fc-event-title:before, .event-category.event-offsite:before {
247
+ color: #44A703;
248
+ }
249
+
250
+ /* line 172, ../sass/partials/_calendar.scss */
251
+ .event-todo .fc-event-title:before, .event-category.event-todo:before {
252
+ color: #FF3B30;
253
+ }
254
+
255
+ /* line 175, ../sass/partials/_calendar.scss */
256
+ .fc-view-month .fc-event-time {
257
+ display: none;
258
+ }
259
+
260
+ /* line 178, ../sass/partials/_calendar.scss */
261
+ #readFullEvent, #newFullEvent {
262
+ display: none;
263
+ }
264
+
265
+ /* line 181, ../sass/partials/_calendar.scss */
266
+ #readFullEvent .event-content {
267
+ background: image-url('bootstrap/line.png');
268
+ color: #858585;
269
+ line-height: 18px;
270
+ margin: 15px 0 0 0;
271
+ padding: 0;
272
+ }
273
+
274
+ /* line 188, ../sass/partials/_calendar.scss */
275
+ #readFullEvent .event-start, #readFullEvent .event-end {
276
+ color: #858585;
277
+ margin: 15px 0 0 0;
278
+ padding: 10px;
279
+ margin-top: 20px;
280
+ background: #EEEEEE;
281
+ }
282
+
283
+ /* line 195, ../sass/partials/_calendar.scss */
284
+ #readFullEvent .event-allday {
285
+ color: #858585;
286
+ }
287
+
288
+ /* line 198, ../sass/partials/_calendar.scss */
289
+ #readFullEvent .event-allday i {
290
+ color: #00AAFF;
291
+ }
292
+
293
+ /* line 201, ../sass/partials/_calendar.scss */
294
+ #readFullEvent .event-start p, #readFullEvent .event-end p {
295
+ margin: 0 0 5px 0;
296
+ }
297
+
298
+ /* line 204, ../sass/partials/_calendar.scss */
299
+ #readFullEvent .event-day h2, #readFullEvent .event-date h3, #readFullEvent .event-date h4 {
300
+ margin: 0;
301
+ padding: 0;
302
+ }
303
+
304
+ /* line 208, ../sass/partials/_calendar.scss */
305
+ #readFullEvent .event-day h2 {
306
+ font-size: 45px;
307
+ line-height: 30px;
308
+ margin-right: 5px;
309
+ }
310
+
311
+ /* line 213, ../sass/partials/_calendar.scss */
312
+ #readFullEvent .event-date h3 {
313
+ font-size: 15px;
314
+ line-height: 20px;
315
+ }
316
+
317
+ /* line 217, ../sass/partials/_calendar.scss */
318
+ #readFullEvent .event-date h4 {
319
+ font-size: 12px;
320
+ }
321
+
322
+ /* line 220, ../sass/partials/_calendar.scss */
323
+ #readFullEvent .event-day, #readFullEvent .event-date, #readFullEvent .event-time {
324
+ display: inline-block;
325
+ }
326
+
327
+ /* line 223, ../sass/partials/_calendar.scss */
328
+ #readFullEvent .event-time {
329
+ margin-left: 20px;
330
+ }
331
+
332
+ /* line 226, ../sass/partials/_calendar.scss */
333
+ #readFullEvent .event-time h3 {
334
+ margin: 0;
335
+ padding: 0;
336
+ font-size: 12px;
337
+ }
338
+
339
+ /* line 231, ../sass/partials/_calendar.scss */
340
+ #readFullEvent .event-category:before {
341
+ line-height: 18px;
342
+ padding-right: 0;
343
+ }
@@ -0,0 +1,123 @@
1
+ /* ---------------------------------------------------------------------- */
2
+ /* Inline Editor
3
+ /* ---------------------------------------------------------------------- */
4
+ /* line 5, ../sass/vendor/_ckeditor.scss */
5
+ #inline-container [contenteditable="true"] {
6
+ padding: 10px;
7
+ }
8
+
9
+ /* line 8, ../sass/vendor/_ckeditor.scss */
10
+ #inline-container {
11
+ border: 1px solid #CCCCCC;
12
+ margin: 30px auto 0;
13
+ padding: 10px;
14
+ }
15
+
16
+ /* line 13, ../sass/vendor/_ckeditor.scss */
17
+ #inline-container hr {
18
+ background-color: #05B2D2;
19
+ height: 5px;
20
+ color: #05B2D2;
21
+ border: 0;
22
+ }
23
+
24
+ /* line 19, ../sass/vendor/_ckeditor.scss */
25
+ #inline-header {
26
+ overflow: hidden;
27
+ padding: 0 0 30px;
28
+ position: relative;
29
+ }
30
+
31
+ /* line 24, ../sass/vendor/_ckeditor.scss */
32
+ #inline-headerLeft {
33
+ padding-top: 10px;
34
+ }
35
+
36
+ /* line 28, ../sass/vendor/_ckeditor.scss */
37
+ #inline-headerLeft h2, #inline-headerLeft h3 {
38
+ font-weight: normal;
39
+ margin: 0;
40
+ overflow: hidden;
41
+ text-align: center;
42
+ }
43
+
44
+ /* line 34, ../sass/vendor/_ckeditor.scss */
45
+ #inline-headerLeft h2 {
46
+ font-family: "Arial Black", arial-black;
47
+ font-size: 52px;
48
+ line-height: 1.1em;
49
+ text-transform: uppercase;
50
+ }
51
+
52
+ /* line 40, ../sass/vendor/_ckeditor.scss */
53
+ #inline-headerLeft h3 {
54
+ color: #666666;
55
+ font-size: 24px;
56
+ line-height: 1.1em;
57
+ margin: 0.2em 0 0;
58
+ }
59
+
60
+ /* line 46, ../sass/vendor/_ckeditor.scss */
61
+ #inline-headerRight p {
62
+ margin: 0;
63
+ text-align: justify;
64
+ }
65
+
66
+ /* line 50, ../sass/vendor/_ckeditor.scss */
67
+ #inline-headerRight p + p {
68
+ margin-top: 20px;
69
+ }
70
+
71
+ /* line 53, ../sass/vendor/_ckeditor.scss */
72
+ #inline-headerRight div {
73
+ color: #666666;
74
+ font-size: 16px;
75
+ }
76
+
77
+ /* line 57, ../sass/vendor/_ckeditor.scss */
78
+ #inline-columns {
79
+ color: #333333;
80
+ overflow: hidden;
81
+ padding-top: 20px;
82
+ }
83
+
84
+ /* line 62, ../sass/vendor/_ckeditor.scss */
85
+ #inline-columns blockquote {
86
+ font-family: "Times New Roman", Times, Georgia, serif;
87
+ font-size: 2em;
88
+ font-style: italic;
89
+ margin: 30px 40px;
90
+ position: relative;
91
+ border: none;
92
+ }
93
+
94
+ /* line 70, ../sass/vendor/_ckeditor.scss */
95
+ #inline-columns blockquote:before {
96
+ color: #666666;
97
+ content: "\f10d";
98
+ font-size: 45px;
99
+ left: -40px;
100
+ line-height: 60px;
101
+ position: absolute;
102
+ text-align: center;
103
+ width: 35px;
104
+ clear: both;
105
+ display: block;
106
+ font-family: 'Font Awesome 5 Free';
107
+ font-weight: bold;
108
+ position: absolute;
109
+ text-align: center;
110
+ }
111
+
112
+ /* line 86, ../sass/vendor/_ckeditor.scss */
113
+ #inline-tagLine {
114
+ border-top: 5px solid #05B2D2;
115
+ padding-top: 20px;
116
+ }
117
+
118
+ /* line 90, ../sass/vendor/_ckeditor.scss */
119
+ #inline-taglist {
120
+ display: inline-block;
121
+ font-weight: bold;
122
+ margin: 0 0 0 20px;
123
+ }