bone_tree 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -4,13 +4,10 @@ include FileUtils
4
4
  task :default => [:build]
5
5
 
6
6
  task :build => [:spec] do
7
- # Remove all but .git from build directory
8
- rm_r Dir.glob("build/*")
9
-
10
7
  # Build static assets
11
8
  `middleman build`
12
9
 
13
- `cp -r app/assets/* build/`
10
+ `cp build/javascripts/bone_tree.js lib/assets/bone_tree.js`
14
11
  `gem build bone_tree.gemspec`
15
12
  end
16
13
 
Binary file
data/config.rb CHANGED
@@ -5,7 +5,7 @@ require 'haml-coderay'
5
5
  configure :build do
6
6
  # For example, change the Compass output style for deployment
7
7
  # activate :minify_css
8
- set :build_dir, 'app/assets'
8
+ #set :build_dir, 'app/assets'
9
9
 
10
10
  # Minify Javascript on build
11
11
  # activate :minify_javascript
data/lib/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module BoneTree
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,46 +1,31 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: bone_tree
3
- version: !ruby/object:Gem::Version
4
- hash: 11
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.1
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 5
9
- - 0
10
- version: 0.5.0
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Matt Diebolt
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2012-04-30 00:00:00 Z
12
+ date: 2012-04-30 00:00:00.000000000 Z
19
13
  dependencies: []
20
-
21
- description: This is a filetree, written with Backbone. It is meant to be tree that will update your file nodes live and sort them when the node state is changed.
22
- email:
14
+ description: This is a filetree, written with Backbone. It is meant to be tree that
15
+ will update your file nodes live and sort them when the node state is changed.
16
+ email:
23
17
  - mdiebolt@gmail.com
24
18
  executables: []
25
-
26
19
  extensions: []
27
-
28
20
  extra_rdoc_files: []
29
-
30
- files:
21
+ files:
31
22
  - .gitignore
32
23
  - Gemfile
33
24
  - Gemfile.lock
34
25
  - Guardfile
35
26
  - README
36
27
  - Rakefile
37
- - app/assets/images/bonetree.png
38
- - app/assets/images/crushed_bone.png
39
- - app/assets/index.html
40
- - app/assets/javascripts/bone_tree.js
41
- - app/assets/stylesheets/bone_tree.css
42
- - app/assets/stylesheets/bone_tree_repo.css
43
- - bone_tree-0.0.1.gem
28
+ - bone_tree-0.5.0.gem
44
29
  - bone_tree.gemspec
45
30
  - config.rb
46
31
  - config.ru
@@ -57,6 +42,7 @@ files:
57
42
  - docs/source/javascripts/bone_tree/views/_file.js.html
58
43
  - docs/source/javascripts/bone_tree/views/_menu.js.html
59
44
  - docs/source/javascripts/bone_tree/views/_tree.js.html
45
+ - lib/assets/bone_tree.js
60
46
  - lib/version.rb
61
47
  - source/images/bonetree.png
62
48
  - source/images/crushed_bone.png
@@ -88,36 +74,29 @@ files:
88
74
  - spec/javascripts/tree_view_spec.coffee
89
75
  homepage: http://mdiebolt.github.com/bone_tree
90
76
  licenses: []
91
-
92
77
  post_install_message:
93
78
  rdoc_options: []
94
-
95
- require_paths:
79
+ require_paths:
96
80
  - lib
97
- required_ruby_version: !ruby/object:Gem::Requirement
81
+ required_ruby_version: !ruby/object:Gem::Requirement
98
82
  none: false
99
- requirements:
100
- - - ">="
101
- - !ruby/object:Gem::Version
102
- hash: 3
103
- segments:
83
+ requirements:
84
+ - - ! '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ segments:
104
88
  - 0
105
- version: "0"
106
- required_rubygems_version: !ruby/object:Gem::Requirement
89
+ hash: -3370472814874129250
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
91
  none: false
108
- requirements:
109
- - - ">="
110
- - !ruby/object:Gem::Version
111
- hash: 3
112
- segments:
113
- - 0
114
- version: "0"
92
+ requirements:
93
+ - - ! '>='
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
115
96
  requirements: []
116
-
117
97
  rubyforge_project: bone_tree
118
- rubygems_version: 1.8.24
98
+ rubygems_version: 1.8.10
119
99
  signing_key:
120
100
  specification_version: 3
121
101
  summary: A backbone filetree widget
122
102
  test_files: []
123
-
Binary file
Binary file
@@ -1,439 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset='utf-8' />
5
- <meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
6
- <link href='http://fonts.googleapis.com/css?family=EB+Garamond' rel='stylesheet' type='text/css'>
7
- <link type="text/css" media="screen" rel="stylesheet" href="/stylesheets/bone_tree_repo.css" />
8
- <link type="text/css" media="screen" rel="stylesheet" href="/stylesheets/bone_tree.css" />
9
- <title>Bone Tree</title>
10
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
11
- <script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.1/underscore-min.js" type="text/javascript"></script>
12
- <script src="http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.9.0/backbone-min.js" type="text/javascript"></script>
13
- <script src="/javascripts/bone_tree.js" type="text/javascript"></script>
14
- </head>
15
- <body>
16
- <div class='bone_tree left'></div>
17
- <div class='right'>
18
- <h1>Bone Tree</h1>
19
- <span class='background'></span>
20
- <a href="http://github.com/mdiebolt/bone_tree"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://a248.e.akamai.net/assets.github.com/img/7afbc8b248c68eb468279e8c17986ad46549fb71/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub"></a>
21
- <p>A browser based filetree written with Backbone.js that supports live updating and reordering of filetree nodes, has a simple, intuitive API, and sports a clean, minimal DOM structure.</p>
22
- <h3>Features</h3>
23
- <ul class='features'>
24
- <li>Live update of node names, extension names, file type icons</li>
25
- <li>Live sorting of nodes when filetree state changes</li>
26
- <li>Context menu with rename and delete functionality</li>
27
- <li>Auto create directories that don't exist when files are added to the tree</li>
28
- <li>Events triggered when a file is opened, renamed, or deleted</li>
29
- </ul>
30
- <h3>Events API</h3>
31
- <div class="CodeRay">
32
- <div class="code"><pre> <span style="color:#777"># get a new filetree</span>&#x000A; tree = new <span style="color:#036;font-weight:bold">BoneTree</span>.Views.Tree&#x000A;&#x000A; <span style="color:#777"># add a new file to the directory</span>&#x000A; tree.file(<span style="background-color:hsla(0,100%,50%,0.05)"><span style="color:#710">'</span><span style="color:#D20">source/main.js</span><span style="color:#710">'</span></span>, {file: <span style="color:#069">true</span>})&#x000A;&#x000A; <span style="color:#777"># this creates the directory source if it doesn't already exist and puts the file main.js inside of it</span>&#x000A;&#x000A; tree.bind <span style="background-color:hsla(0,100%,50%,0.05)"><span style="color:#710">'</span><span style="color:#D20">rename</span><span style="color:#710">'</span></span>, (model, newName) =&gt;&#x000A; <span style="color:#777"># this callback is passed the model that changed and the new name of the node</span>&#x000A; console.log model&#x000A;&#x000A; tree.bind <span style="background-color:hsla(0,100%,50%,0.05)"><span style="color:#710">'</span><span style="color:#D20">remove</span><span style="color:#710">'</span></span>, (model, collection) =&gt;&#x000A; <span style="color:#777"># this callback is passed the model that was removed and the collection it was removed from</span>&#x000A; console.log model&#x000A;&#x000A; tree.bind <span style="background-color:hsla(0,100%,50%,0.05)"><span style="color:#710">'</span><span style="color:#D20">openFile</span><span style="color:#710">'</span></span>, (file) =&gt;&#x000A; <span style="color:#777"># this callback is passed the file that was just clicked on</span>&#x000A; console.log file&#x000A;</pre></div>
33
- </div>
34
- </div>
35
- <script type='text/javascript'>
36
- //<![CDATA[
37
- (function() {
38
- var treeData;
39
-
40
- window.tree = new BoneTree.Views.Tree({
41
- showExtensions: true,
42
- confirmDeletes: true
43
- });
44
-
45
- tree.bind('openFile', function(file) {
46
- return console.log(file);
47
- });
48
-
49
- tree.file('file.coffee', {
50
- description: 'A CoffeeScript file'
51
- });
52
-
53
- $('.bone_tree').append(tree.render().$el);
54
-
55
- treeData = JSON.parse('{\
56
- "name": "Pixteroids",\
57
- "files": [\
58
- {\
59
- "name": "data",\
60
- "files": [\
61
- {\
62
- "name": "asteroid",\
63
- "contents": "super long JSON string",\
64
- "extension": "animation",\
65
- "lang": null,\
66
- "type": "animation",\
67
- "size": 645,\
68
- "mtime": 1310024315,\
69
- "path": "data/asteroid.animation"\
70
- }, {\
71
- "name": "asteroid_large",\
72
- "contents": "super long JSON string",\
73
- "extension": "animation",\
74
- "lang": null,\
75
- "type": "animation",\
76
- "size": 1510,\
77
- "mtime": 1307259412,\
78
- "path": "data/asteroid_large.animation"\
79
- }, {\
80
- "name": "asteroid_small",\
81
- "contents": "super long JSON string",\
82
- "extension": "animation",\
83
- "lang": null,\
84
- "type": "animation",\
85
- "size": 794,\
86
- "mtime": 1307259338,\
87
- "path": "data/asteroid_small.animation"\
88
- }, {\
89
- "name": "bullet",\
90
- "contents": "super long JSON string",\
91
- "extension": "animation",\
92
- "lang": null,\
93
- "type": "animation",\
94
- "size": 467,\
95
- "mtime": 1307427332,\
96
- "path": "data/bullet.animation"\
97
- }, {\
98
- "name": "ship",\
99
- "contents": "super long JSON string",\
100
- "extension": "animation",\
101
- "lang": null,\
102
- "type": "animation",\
103
- "size": 2200,\
104
- "mtime": 1307584720,\
105
- "path": "data/ship.animation"\
106
- }\
107
- ]\
108
- }, {\
109
- "name": "images",\
110
- "files": [\
111
- {\
112
- "name": "background",\
113
- "contents": null,\
114
- "extension": "png",\
115
- "lang": null,\
116
- "type": "image",\
117
- "size": 246772,\
118
- "mtime": 1306478156,\
119
- "path": "images/background.png"\
120
- }, {\
121
- "name": "black",\
122
- "contents": null,\
123
- "extension": "png",\
124
- "lang": null,\
125
- "type": "image",\
126
- "size": 110,\
127
- "mtime": 1316842913,\
128
- "path": "images/black.png"\
129
- }, {\
130
- "name": "jh",\
131
- "contents": null,\
132
- "extension": "png",\
133
- "lang": null,\
134
- "type": "image",\
135
- "size": 200,\
136
- "mtime": 1313777010,\
137
- "path": "images/jh.png"\
138
- }\
139
- ]\
140
- }, {\
141
- "name": "lib",\
142
- "files": [\
143
- {\
144
- "name": "gamelib",\
145
- "contents": "super long JSON string",\
146
- "extension": "js",\
147
- "lang": "javascript",\
148
- "type": "text",\
149
- "size": 715930,\
150
- "mtime": 1307870400,\
151
- "path": "lib/gamelib.js"\
152
- }, {\
153
- "name": "playtomic",\
154
- "contents": "super long JSON string",\
155
- "extension": "js",\
156
- "lang": "javascript",\
157
- "type": "text",\
158
- "size": 75333,\
159
- "mtime": 1318021411,\
160
- "path": "lib/playtomic.js"\
161
- }, {\
162
- "name": "playtomic.v1.8.min",\
163
- "contents": "super long JSON string",\
164
- "extension": "js",\
165
- "lang": "javascript",\
166
- "type": "text",\
167
- "size": 27346,\
168
- "mtime": 1318021409,\
169
- "path": "lib/playtomic.v1.8.min.js"\
170
- }\
171
- ]\
172
- }, {\
173
- "name": "sounds",\
174
- "files": [\
175
- {\
176
- "name": "explode",\
177
- "contents": "super long JSON string",\
178
- "extension": "sfs",\
179
- "lang": null,\
180
- "type": "sound",\
181
- "size": 105,\
182
- "mtime": 1310024363,\
183
- "path": "sounds/explode.sfs"\
184
- }, {\
185
- "name": "explode",\
186
- "contents": null,\
187
- "extension": "wav",\
188
- "lang": null,\
189
- "type": "binary",\
190
- "size": 158270,\
191
- "mtime": 1310024364,\
192
- "path": "sounds/explode.wav"\
193
- }, {\
194
- "name": "kjkj",\
195
- "contents": null,\
196
- "extension": "wav",\
197
- "lang": null,\
198
- "type": "binary",\
199
- "size": 189826,\
200
- "mtime": 1313777037,\
201
- "path": "sounds/kjkj.wav"\
202
- }, {\
203
- "name": "kjkj",\
204
- "contents": "super long JSON string",\
205
- "extension": "sfs",\
206
- "lang": null,\
207
- "type": "sound",\
208
- "size": 105,\
209
- "mtime": 1313777036,\
210
- "path": "sounds/kjkj.sfs"\
211
- }, {\
212
- "name": "pew",\
213
- "contents": null,\
214
- "extension": "wav",\
215
- "lang": null,\
216
- "type": "binary",\
217
- "size": 7682,\
218
- "mtime": 1306994836,\
219
- "path": "sounds/pew.wav"\
220
- }, {\
221
- "name": "pew",\
222
- "contents": "super long JSON string",\
223
- "extension": "sfs",\
224
- "lang": null,\
225
- "type": "sound",\
226
- "size": 105,\
227
- "mtime": 1306994830,\
228
- "path": "sounds/pew.sfs"\
229
- }, {\
230
- "name": "thrust",\
231
- "contents": "super long JSON string",\
232
- "extension": "sfs",\
233
- "lang": null,\
234
- "type": "sound",\
235
- "size": 105,\
236
- "mtime": 1306995050,\
237
- "path": "sounds/thrust.sfs"\
238
- }, {\
239
- "name": "thrust",\
240
- "contents": null,\
241
- "extension": "wav",\
242
- "lang": null,\
243
- "type": "binary",\
244
- "size": 26582,\
245
- "mtime": 1306995056,\
246
- "path": "sounds/thrust.wav"\
247
- }\
248
- ]\
249
- }, {\
250
- "name": "src",\
251
- "files": [\
252
- {\
253
- "name": "asteroid",\
254
- "contents": "super long JSON string",\
255
- "extension": "coffee",\
256
- "lang": "coffeescript",\
257
- "type": "text",\
258
- "size": 2373,\
259
- "mtime": 1307762048,\
260
- "path": "src/asteroid.coffee"\
261
- }, {\
262
- "name": "base",\
263
- "contents": "super long JSON string",\
264
- "extension": "coffee",\
265
- "lang": "coffeescript",\
266
- "type": "text",\
267
- "size": 302,\
268
- "mtime": 1307711140,\
269
- "path": "src/base.coffee"\
270
- }, {\
271
- "name": "bullet",\
272
- "contents": "super long JSON string",\
273
- "extension": "coffee",\
274
- "lang": "coffeescript",\
275
- "type": "text",\
276
- "size": 106,\
277
- "mtime": 1307712094,\
278
- "path": "src/bullet.coffee"\
279
- }, {\
280
- "name": "main",\
281
- "contents": "super long JSON string",\
282
- "extension": "coffee",\
283
- "lang": "coffeescript",\
284
- "type": "text",\
285
- "size": 543,\
286
- "mtime": 1321258568,\
287
- "path": "src/main.coffee"\
288
- }, {\
289
- "name": "ship",\
290
- "contents": "super long JSON string",\
291
- "extension": "coffee",\
292
- "lang": "coffeescript",\
293
- "type": "text",\
294
- "size": 1602,\
295
- "mtime": 1307783232,\
296
- "path": "src/ship.coffee"\
297
- }, {\
298
- "name": "wrappable",\
299
- "contents": "super long JSON string",\
300
- "extension": "coffee",\
301
- "lang": "coffeescript",\
302
- "type": "text",\
303
- "size": 110,\
304
- "mtime": 1307601644,\
305
- "path": "src/wrappable.coffee"\
306
- }\
307
- ]\
308
- }, {\
309
- "name": "webstore",\
310
- "files": [\
311
- {\
312
- "name": "images",\
313
- "files": [\
314
- {\
315
- "name": "icon_128",\
316
- "contents": null,\
317
- "extension": "png",\
318
- "lang": null,\
319
- "type": "image",\
320
- "size": 7960,\
321
- "mtime": 1324715561,\
322
- "path": "webstore/images/icon_128.png"\
323
- }, {\
324
- "name": "icon_16",\
325
- "contents": null,\
326
- "extension": "png",\
327
- "lang": null,\
328
- "type": "image",\
329
- "size": 892,\
330
- "mtime": 1324715561,\
331
- "path": "webstore/images/icon_16.png"\
332
- }, {\
333
- "name": "icon_96",\
334
- "contents": null,\
335
- "extension": "png",\
336
- "lang": null,\
337
- "type": "image",\
338
- "size": 7164,\
339
- "mtime": 1324715561,\
340
- "path": "webstore/images/icon_96.png"\
341
- }\
342
- ]\
343
- }, {\
344
- "name": "jquery.min",\
345
- "contents": "super long JSON string",\
346
- "extension": "js",\
347
- "lang": "javascript",\
348
- "type": "text",\
349
- "size": 91341,\
350
- "mtime": 1324715561,\
351
- "path": "webstore/jquery.min.js"\
352
- }, {\
353
- "name": "main",\
354
- "contents": "super long JSON string",\
355
- "extension": "html",\
356
- "lang": "html",\
357
- "type": "text",\
358
- "size": 463,\
359
- "mtime": 1324715561,\
360
- "path": "webstore/main.html"\
361
- }, {\
362
- "name": "project",\
363
- "contents": "super long JSON string",\
364
- "extension": "css",\
365
- "lang": "css",\
366
- "type": "text",\
367
- "size": 3356,\
368
- "mtime": 1324715561,\
369
- "path": "webstore/project.css"\
370
- }\
371
- ]\
372
- }, {\
373
- "name": "Documentation",\
374
- "extension": "documentation",\
375
- "path": "docs"\
376
- }, {\
377
- "name": "Pixteroids",\
378
- "contents": null,\
379
- "extension": "js",\
380
- "lang": "javascript",\
381
- "type": "binary",\
382
- "size": 725960,\
383
- "mtime": 1313777080,\
384
- "path": "Pixteroids.js"\
385
- }, {\
386
- "name": "README",\
387
- "contents": "super long JSON string",\
388
- "extension": "",\
389
- "lang": null,\
390
- "type": "text",\
391
- "size": 83,\
392
- "mtime": 1305349550,\
393
- "path": "README"\
394
- }, {\
395
- "name": "Tutorial",\
396
- "contents": "http://blog.pixieengine.com/2011/06/asteroids/",\
397
- "extension": "tutorial",\
398
- "lang": null,\
399
- "type": "tutorial",\
400
- "size": 46,\
401
- "mtime": 1307864630,\
402
- "path": "Tutorial.tutorial"\
403
- }, {\
404
- "name": "manifest",\
405
- "contents": "super long JSON string",\
406
- "extension": "json",\
407
- "lang": "javascript",\
408
- "type": "json",\
409
- "size": 363,\
410
- "mtime": 1324715561,\
411
- "path": "manifest.json"\
412
- }, {\
413
- "name": "pixie",\
414
- "contents": "super long JSON string",\
415
- "extension": "json",\
416
- "lang": "javascript",\
417
- "type": "json",\
418
- "size": 254,\
419
- "mtime": 1307595452,\
420
- "path": "pixie.json"\
421
- }\
422
- ]\
423
- }');
424
-
425
- tree.addFromJSON(treeData, '', function(fileName, fileData) {
426
- var allowFile;
427
- allowFile = true;
428
- if (fileData.type === 'binary') {
429
- allowFile = false;
430
- }
431
- return allowFile;
432
- });
433
-
434
- }).call(this);
435
-
436
- //]]>
437
- </script>
438
- </body>
439
- </html>
@@ -1,186 +0,0 @@
1
- /* line 6, bone_tree.css.sass */
2
- .filetree_context_menu {
3
- -webkit-border-radius: 3px;
4
- -moz-border-radius: 3px;
5
- -ms-border-radius: 3px;
6
- -o-border-radius: 3px;
7
- border-radius: 3px;
8
- -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px;
9
- -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px;
10
- box-shadow: rgba(0, 0, 0, 0.4) 0 2px 10px;
11
- background-color: white;
12
- border: 1px solid rgba(0, 0, 0, 0.3);
13
- cursor: pointer;
14
- display: none;
15
- font-weight: 500;
16
- position: absolute;
17
- width: 100px; }
18
- /* line 17, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
19
- .filetree_context_menu html, .filetree_context_menu body, .filetree_context_menu div, .filetree_context_menu span, .filetree_context_menu applet, .filetree_context_menu object, .filetree_context_menu iframe,
20
- .filetree_context_menu h1, .filetree_context_menu h2, .filetree_context_menu h3, .filetree_context_menu h4, .filetree_context_menu h5, .filetree_context_menu h6, .filetree_context_menu p, .filetree_context_menu blockquote, .filetree_context_menu pre,
21
- .filetree_context_menu a, .filetree_context_menu abbr, .filetree_context_menu acronym, .filetree_context_menu address, .filetree_context_menu big, .filetree_context_menu cite, .filetree_context_menu code,
22
- .filetree_context_menu del, .filetree_context_menu dfn, .filetree_context_menu em, .filetree_context_menu img, .filetree_context_menu ins, .filetree_context_menu kbd, .filetree_context_menu q, .filetree_context_menu s, .filetree_context_menu samp,
23
- .filetree_context_menu small, .filetree_context_menu strike, .filetree_context_menu strong, .filetree_context_menu sub, .filetree_context_menu sup, .filetree_context_menu tt, .filetree_context_menu var,
24
- .filetree_context_menu b, .filetree_context_menu u, .filetree_context_menu i, .filetree_context_menu center,
25
- .filetree_context_menu dl, .filetree_context_menu dt, .filetree_context_menu dd, .filetree_context_menu ol, .filetree_context_menu ul, .filetree_context_menu li,
26
- .filetree_context_menu fieldset, .filetree_context_menu form, .filetree_context_menu label, .filetree_context_menu legend,
27
- .filetree_context_menu table, .filetree_context_menu caption, .filetree_context_menu tbody, .filetree_context_menu tfoot, .filetree_context_menu thead, .filetree_context_menu tr, .filetree_context_menu th, .filetree_context_menu td,
28
- .filetree_context_menu article, .filetree_context_menu aside, .filetree_context_menu canvas, .filetree_context_menu details, .filetree_context_menu embed,
29
- .filetree_context_menu figure, .filetree_context_menu figcaption, .filetree_context_menu footer, .filetree_context_menu header, .filetree_context_menu hgroup,
30
- .filetree_context_menu menu, .filetree_context_menu nav, .filetree_context_menu output, .filetree_context_menu ruby, .filetree_context_menu section, .filetree_context_menu summary,
31
- .filetree_context_menu time, .filetree_context_menu mark, .filetree_context_menu audio, .filetree_context_menu video {
32
- margin: 0;
33
- padding: 0;
34
- border: 0;
35
- font-size: 100%;
36
- font: inherit;
37
- vertical-align: baseline; }
38
- /* line 20, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
39
- .filetree_context_menu body {
40
- line-height: 1; }
41
- /* line 22, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
42
- .filetree_context_menu ol, .filetree_context_menu ul {
43
- list-style: none; }
44
- /* line 24, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
45
- .filetree_context_menu table {
46
- border-collapse: collapse;
47
- border-spacing: 0; }
48
- /* line 26, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
49
- .filetree_context_menu caption, .filetree_context_menu th, .filetree_context_menu td {
50
- text-align: left;
51
- font-weight: normal;
52
- vertical-align: middle; }
53
- /* line 28, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
54
- .filetree_context_menu q, .filetree_context_menu blockquote {
55
- quotes: none; }
56
- /* line 101, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
57
- .filetree_context_menu q:before, .filetree_context_menu q:after, .filetree_context_menu blockquote:before, .filetree_context_menu blockquote:after {
58
- content: "";
59
- content: none; }
60
- /* line 30, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
61
- .filetree_context_menu a img {
62
- border: none; }
63
- /* line 114, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
64
- .filetree_context_menu article, .filetree_context_menu aside, .filetree_context_menu details, .filetree_context_menu figcaption, .filetree_context_menu figure, .filetree_context_menu footer, .filetree_context_menu header, .filetree_context_menu hgroup, .filetree_context_menu menu, .filetree_context_menu nav, .filetree_context_menu section, .filetree_context_menu summary {
65
- display: block; }
66
- /* line 20, bone_tree.css.sass */
67
- .filetree_context_menu hr {
68
- border: 0;
69
- border-top: 1px solid rgba(0, 0, 0, 0.15);
70
- height: 1px;
71
- margin: 0; }
72
- /* line 26, bone_tree.css.sass */
73
- .filetree_context_menu li {
74
- margin: 0.25em 0;
75
- padding: 0 0.5em; }
76
- /* line 30, bone_tree.css.sass */
77
- .filetree_context_menu li:hover {
78
- background-color: #1084ce;
79
- color: white; }
80
- /* line 34, bone_tree.css.sass */
81
- .filetree_context_menu .rename {
82
- background: white url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAACjSURBVDjL7ZNBCsIwEEVz1mwTo1YjiHdIqyWgFBGPonWTC8T2BjlE4JsUwU0ILe7ExUtgPvNmNkMAkG8gPyAwxiAHYwxKKUgpk/kg8N5n4Zwn6865j4CVLXj1AA//rArsW4hAzCil4wTFsUdx6rBuLLaXJ+aH+zTBqukDFpuzxe5qsagnCIbV32vHybF5Wd/GC3JkBfHJEZu11hBCJHPyvwXyAt6tONifnq6xAAAAAElFTkSuQmCC") no-repeat;
83
- background-position: 4px 3px;
84
- padding-left: 24px; }
85
- /* line 39, bone_tree.css.sass */
86
- .filetree_context_menu .delete {
87
- background: white url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJdSURBVDjLpZP7S1NhGMf9W7YfogSJboSEUVCY8zJ31trcps6zTI9bLGJpjp1hmkGNxVz4Q6ildtXKXzJNbJRaRmrXoeWx8tJOTWptnrNryre5YCYuI3rh+8vL+/m8PA/PkwIg5X+y5mJWrxfOUBXm91QZM6UluUmthntHqplxUml2lciF6wrmdHriI0Wx3xw2hAediLwZRWRkCPzdDswaSvGqkGCfq8VEUsEyPF1O8Qu3O7A09RbRvjuIttsRbT6HHzebsDjcB4/JgFFlNv9MnkmsEszodIIY7Oaut2OJcSF68Qx8dgv8tmqEL1gQaaARtp5A+N4NzB0lMXxon/uxbI8gIYjB9HytGYuusfiPIQcN71kjgnW6VeFOkgh3XcHLvAwMSDPohOADdYQJdF1FtLMZPmslvhZJk2ahkgRvq4HHUoWHRDqTEDDl2mDkfheiDgt8pw340/EocuClCuFvboQzb0cwIZgki4KhzlaE6w0InipbVzBfqoK/qRH94i0rgokSFeO11iBkp8EdV8cfJo0yD75aE2ZNRvSJ0lZKcBXLaUYmQrCzDT6tDN5SyRqYlWeDLZAg0H4JQ+Jt6M3atNLE10VSwQsN4Z6r0CBwqzXesHmV+BeoyAUri8EyMfi2FowXS5dhd7doo2DVII0V5BAjigP89GEVAtda8b2ehodU4rNaAW+dGfzlFkyo89GTlcrHYCLpKD+V7yeeHNzLjkp24Uu1Ed6G8/F8qjqGRzlbl2H2dzjpMg1KdwsHxOlmJ7GTeZC/nesXbeZ6c9OYnuxUc3fmBuFft/Ff8xMd0s65SXIb/gAAAABJRU5ErkJggg==") no-repeat;
88
- background-position: 4px 3px;
89
- padding-left: 24px; }
90
-
91
- /* line 44, bone_tree.css.sass */
92
- .tree {
93
- -webkit-box-sizing: border-box;
94
- -moz-box-sizing: border-box;
95
- box-sizing: border-box;
96
- -moz-user-select: none;
97
- -khtml-user-select: none;
98
- -webkit-user-select: none;
99
- -o-user-select: none;
100
- user-select: none;
101
- color: black;
102
- overflow-y: scroll; }
103
- /* line 17, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
104
- .tree html, .tree body, .tree div, .tree span, .tree applet, .tree object, .tree iframe, .tree h1, .tree h2, .tree h3, .tree h4, .tree h5, .tree h6, .tree p, .tree blockquote, .tree pre, .tree a, .tree abbr, .tree acronym, .tree address, .tree big, .tree cite, .tree code, .tree del, .tree dfn, .tree em, .tree img, .tree ins, .tree kbd, .tree q, .tree s, .tree samp, .tree small, .tree strike, .tree strong, .tree sub, .tree sup, .tree tt, .tree var, .tree b, .tree u, .tree i, .tree center, .tree dl, .tree dt, .tree dd, .tree ol, .tree ul, .tree li, .tree fieldset, .tree form, .tree label, .tree legend, .tree table, .tree caption, .tree tbody, .tree tfoot, .tree thead, .tree tr, .tree th, .tree td, .tree article, .tree aside, .tree canvas, .tree details, .tree embed, .tree figure, .tree figcaption, .tree footer, .tree header, .tree hgroup, .tree menu, .tree nav, .tree output, .tree ruby, .tree section, .tree summary, .tree time, .tree mark, .tree audio, .tree video {
105
- margin: 0;
106
- padding: 0;
107
- border: 0;
108
- font-size: 100%;
109
- font: inherit;
110
- vertical-align: baseline; }
111
- /* line 20, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
112
- .tree body {
113
- line-height: 1; }
114
- /* line 22, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
115
- .tree ol, .tree ul {
116
- list-style: none; }
117
- /* line 24, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
118
- .tree table {
119
- border-collapse: collapse;
120
- border-spacing: 0; }
121
- /* line 26, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
122
- .tree caption, .tree th, .tree td {
123
- text-align: left;
124
- font-weight: normal;
125
- vertical-align: middle; }
126
- /* line 28, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
127
- .tree q, .tree blockquote {
128
- quotes: none; }
129
- /* line 101, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
130
- .tree q:before, .tree q:after, .tree blockquote:before, .tree blockquote:after {
131
- content: "";
132
- content: none; }
133
- /* line 30, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
134
- .tree a img {
135
- border: none; }
136
- /* line 114, ../../../../.rvm/gems/ruby-1.9.3-rc1@bone_tree/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
137
- .tree article, .tree aside, .tree details, .tree figcaption, .tree figure, .tree footer, .tree header, .tree hgroup, .tree menu, .tree nav, .tree section, .tree summary {
138
- display: block; }
139
- /* line 57, bone_tree.css.sass */
140
- .tree ul, .tree li {
141
- list-style-type: none; }
142
- /* line 60, bone_tree.css.sass */
143
- .tree .directory, .tree .file {
144
- cursor: pointer; }
145
- /* line 64, bone_tree.css.sass */
146
- .tree .directory .directory {
147
- padding-left: 20px; }
148
- /* line 67, bone_tree.css.sass */
149
- .tree .file {
150
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAL5JREFUeNpi/P//PwMIrOp1gjBwgLDifYxYJUAGgPDKHsf/uMCVvTX/ofIM6JiJgUigbWiN1ZVEG4DLEBYMVXmFqPxJ/QzaTs1w7tXzTgz4DQBqIAVgGNC7YxGc/fnoPoaG5gUM2bnJDFMnz2UgOxaQAXpswF1w7YMcahgAvdJQm8Dw+gMzmAtzAVwdMWEAcj7JYXB1Xy3Djl+qcP7aS5fB9LGybuIMAEWZNhK/2AO/C0hKSARdAAo0UgFAgAEAldGhef3Bv88AAAAASUVORK5CYII=") no-repeat;
151
- background-position: 1px 3px;
152
- padding-left: 20px; }
153
- /* line 72, bone_tree.css.sass */
154
- .tree .file.coffee {
155
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAILSURBVDjLrVM7ixNhFB2LFKJV+v0L24nabIogtmItin9ALBS3tXNt3CWgVlpMsAgrWRexkCSTd0KimYS8Q94vsnlrikAec7z34hSibON+cJjXPeee79xvFADK/0C5UIFyubxLUEulklooFNR8Pn+Sy+VOstmsmslk1HQ6raZSqd2/BCqVyh4RW/V6HePxGJPJRDCdTuU6Go0EZ2dnIFEkk8lWIpHYEwEi24lszGYzjHptfPvsgvbuEJ9ePMPH548Epwf70N4f4fuXY6rpYDgcIh6PG7FYzM62dSav12spfHXn2rk4fbmPxWIhIpFIRFfIzk+v1wvDMLAhka9vD+B88gCv79lxdPeG4M39W/jw9KF8q+oJzOdz2VIoFPqhOJ3O7mAwwHK5xGazketqtRKws3+Bto1arYZgMFhTHA6HC78XW6P0wYJmcAy2y+9arRYoPCHTpOD3+w8Vm8122xTgQhobqtUqms0mGo0GeDLckdOnESIcDqPdbnN3aJp2VbFarTfN7kxmUqfTkSLuyM8syB3pLMj7fr8Pn883kTFaLJbr1EHfbrdilwm9Xg/dblfABNMF3/NWisUiKPjHIkDrMou43e4CF+m6LkUMU4idcFc+WJwRkbU/TiKtS4QrgUDgmGZrcEcelXkKORsWJ9sGkV3n/kzRaHSHgtrQjEGCHJSAyBuPx7Nz4X/jL/ZqKRurPTy6AAAAAElFTkSuQmCC") no-repeat;
156
- background-position: 1px 3px;
157
- padding-left: 20px; }
158
- /* line 77, bone_tree.css.sass */
159
- .tree .directory {
160
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKJJREFUeNpi/P//PwMlgJGqBhzpMEUxzabiNCNBE0AGgPDaYt3/6AAqxoAPg10AstkmOgth6oenDA9ffAUzH5/dg2EpistABhxuN/lPLICqhbuABW7S4/lEBdqVy68ZbJD4TCDi1ZufRIe6mCQfCp+JgUIA9sKnr9/BAUcMAKtFd8GPT7+JthFdLdwL6xauoiwlLshUJSpNJ0y/zUjVvAAQYACWqqflysozQAAAAABJRU5ErkJggg==") no-repeat;
161
- background-position: 0 4px;
162
- padding-left: 20px; }
163
- /* line 82, bone_tree.css.sass */
164
- .tree .directory.open {
165
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMhJREFUeNpi/P//PwMlgJGqBhzpMEUxzabiNCNBE0AGgPDaYt3/6AAqxoAPg10AstkmOgth6oenDA9ffAUzH5/dg2EpistABhxuN/lPLICqhbuABW7S4/lEBdqVy68ZbJD4YANevfmJoXDdxH6sBohJ8jGsK9H7j2IANs1B+YX4nQIMp3ULV0EM+PT1O1gArBkoGBQfBufjAmB1PZcYmUCcH59+o2omAGCa4QlpRrTCf5DfSNWMkhIXZKoSlaYTpt9mpGpeAAgwAJYXxD0Qxy7tAAAAAElFTkSuQmCC") no-repeat;
166
- background-position: 0 4px; }
167
- /* line 86, bone_tree.css.sass */
168
- .tree .json {
169
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGSSURBVCjPVVFNSwJhEF78Ad79Cf6PvXQRsotUlzKICosuRYmR2RJR0KE6lBFFZVEbpFBSqKu2rum6llFS9HHI4iUhT153n6ZtIWMOM+/MM88z7wwH7s9Ub16SJcnbmrNcxVm2q7Z8/QPvEOtntpj92NkCqITLepEpjix7xQtiLOoQ2b6+E7YAN/5nfOEJ2WbKqOIOJ4bYVMEQx4LfBBQDsvFMhUcCVU1/CxVXmDBGA5ZETrhDCQVcYAPbyEJBhvrnBVPiSpNr6cYDNCQwo4zzU/ySckkgDYuNuVpI42T9k4gLKGMPs/xPzzovQiY2hQYe0jlJfyNNhTqiWDYBq/wBMcSRpnyPzu1oS7WtxjVBSthU1vgVksiQ3Dn6Gp5ah2YOKQo5GiuHPA6xT1EKpxQNCNYejgIR457KKio0S56YckjSa9jo//3mrj+BV0QQagqGTOo+Y7gZIf1puP3WHoLhEb2PjTlCTCWGXtbp8DCX3hZuOdaIc9A+aQvWk4ihq95p67a7nP+u+Ws+r0dql9z/zv0NCYhdCPKZ7oYAAAAASUVORK5CYII=") no-repeat;
170
- background-position: 0 4px;
171
- padding-left: 20px; }
172
- /* line 91, bone_tree.css.sass */
173
- .tree .png, .tree .jpeg, .tree .gif {
174
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHwSURBVDjLpZM9a1RBFIafM/fevfcmC7uQjWEjUZKAYBHEVEb/gIWFjVVSWEj6gI0/wt8gprPQykIsTP5BQLAIhBVBzRf52Gw22bk7c8YiZslugggZppuZ55z3nfdICIHrrBhg+ePaa1WZPyk0s+6KWwM1khiyhDcvns4uxQAaZOHJo4nRLMtEJPpnxY6Cd10+fNl4DpwBTqymaZrJ8uoBHfZoyTqTYzvkSRMXlP2jnG8bFYbCXWJGePlsEq8iPQmFA2MijEBhtpis7ZCWftC0LZx3xGnK1ESd741hqqUaqgMeAChgjGDDLqXkgMPTJtZ3KJzDhTZpmtK2OSO5IRB6xvQDRAhOsb5Lx1lOu5ZCHV4B6RLUExvh4s+ZntHhDJAxSqs9TCDBqsc6j0iJdqtMuTROFBkIcllCCGcSytFNfm1tU8k2GRo2pOI43h9ie6tOvTJFbORyDsJFQHKD8fw+P9dWqJZ/I96TdEa5Nb1AOavjVfti0dfB+t4iXhWvyh27y9zEbRRobG7z6fgVeqSoKvB5oIMQEODx7FLvIJo55KS9R7b5ldrDReajpC+Z5z7GAHJFXn1exedVbG36ijwOmJgl0kS7lXtjD0DkLyqc70uPnSuIIwk9QCmWd+9XGnOFDzP/M5xxBInhLYBcd5z/AAZv2pOvFcS/AAAAAElFTkSuQmCC") no-repeat;
175
- background-position: 0 4px;
176
- padding-left: 20px; }
177
- /* line 96, bone_tree.css.sass */
178
- .tree .js {
179
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJ+SURBVBgZBcExbFRlAADg7//fu7teC3elQEoMgeDkYDQ6oMQQTYyGxMHZuDA6Ypw0cWI20cHJUdl0cJLIiomR6OACGhUCpqGWtlzbu/b97/3v9/tCKQVc/e7RRXz+7OrSpUXbW7S9tu8ddv0M+3iCjF1s42v8WAP0XffKi2eOXfro9dMAYJ766SL1092jfDa17DfZgycHfvh7/hau1QB9161PhgE8epoNQlAHqprRIDo3iqoYDSpeOjv2zHRl7atfNj6LALltJys1Xc9+CmYtTxtmR8yO2D7kv4MMPr7x0KULK54/NThdA+S2XTs+jOYN86MsxqBGVRErKkEV6BHynp//2fXbw9lGDZBTWp+OK7PDzqIpYiyqSMxBFakUVYVS2dxrfHHrrz1crQG6lM6vTwZmR0UHhSoHsSBTKeoS9YU8yLrUXfj+w9d2IkBOzfkz05F5KkKkCkFERACEQil0TSOnJkMNV67fHNdVHI4GUcpZVFAUZAEExEibs4P5osMeROiadHoUiIEeCgFREAoRBOMB2weNrkmbNz+9UiBCTs1yrVdHqhgIkRL0EOj7QGG5jrZ2D+XUbADEy9dunOpSun7xuXMe7xUPNrOd/WyeyKUIoRgOGS8xWWZ7b6FLaROgzim9iXd+vXvf7mHtoCnaXDRtkLpel3t9KdamUx+8fcbj7YWc0hZAndv25XffeGH8yfuvAoBcaHOROhS+vLlhecD+wUJu222AOrft/cdPZr65ddfqsbHVyZLVlZHpysjx5aHRMBrV0XuX141qtnb25bb9F6Duu+7b23funb195955nMRJnMAJTJeGg8HS0sBkZWx1suz3Px79iZ8A/gd7ijssEaZF9QAAAABJRU5ErkJggg==") no-repeat;
180
- background-position: 0 4px;
181
- padding-left: 20px; }
182
- /* line 101, bone_tree.css.sass */
183
- .tree .wav, .tree .sfs, .tree .mp3, .tree .ogg {
184
- background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAH0SURBVDjLxdPPS9tgGAfwgH/ATmPD0w5jMFa3IXOMFImsOKnbmCUTacW1WZM2Mf1ho6OBrohkIdJfWm9aLKhM6GF4Lz3No/+AMC/PYQXBXL1+95oxh1jGhsgOX/LywvN5n/fN+3IAuKuEuzagVFoO27b1/Z+BcrnUx4otx7FPLWsJvYpIM2SS9H4PqNWqfK1W8VKplHlW/G1zs4G9vS9YXPx4CaDkXOFES4Om4gceUK2WsbZWR72+gtXVFezsbKHVamF7ewtm/sMFgBJZhd6pvm4kDndaAo2KOmt5Gfv7X9HpdNBut9FsNmFZFgPrMHKZc4DkjHyi6KC3MZNehTOuGAH5Xx5ybK/Y3f0Mx3Fg2zaKxSIMw2DjT0inNQ84nogcUUQJHIfZquNT3hzx46DBALizg2o01qEoCqLRKERRRDAYhKYlWRK/AJdCMwH2BY28+Qk8fg667wdXKJjY2FiHaeaRzWYQCk1AEASGzSCZjP/ewtik5r6eBD0dM+nRSMb1j4LuPDnkFhZymJ/PsmLdazmV0jxEkqKsK+niIQ69mKUBwdd9OAx3SADdHtC53FyK12dVXlVlPpF4zytK7OgMyucNyHLs8m+8+2zJHRwG3fId9LxIbNU+OR6zWU57AR5y84FKN+71//EqM2iapfv/HtPf5gcdtKR8VW88PgAAAABJRU5ErkJggg==") no-repeat;
185
- background-position: 0 4px;
186
- padding-left: 20px; }
@@ -1,73 +0,0 @@
1
- /* line 4, bone_tree_repo.css.sass */
2
- html {
3
- height: 100%; }
4
-
5
- /* line 7, bone_tree_repo.css.sass */
6
- body {
7
- background-image: url("/images/crushed_bone.png");
8
- font-family: "EB Garamond", serif;
9
- font-variant: small-caps;
10
- height: 100%;
11
- margin: 0; }
12
-
13
- /* line 14, bone_tree_repo.css.sass */
14
- img.background {
15
- position: absolute;
16
- top: 20px;
17
- right: 20px;
18
- opacity: 0.2; }
19
-
20
- /* line 20, bone_tree_repo.css.sass */
21
- .bone_tree {
22
- background-color: rgba(255, 255, 255, 0.5); }
23
-
24
- /* line 23, bone_tree_repo.css.sass */
25
- .tree {
26
- height: 100%;
27
- padding: 1em; }
28
-
29
- /* line 27, bone_tree_repo.css.sass */
30
- h1 {
31
- font-size: 2.5em;
32
- margin: 0;
33
- padding-top: 0.25em; }
34
-
35
- /* line 32, bone_tree_repo.css.sass */
36
- h3 {
37
- margin: 0; }
38
-
39
- /* line 35, bone_tree_repo.css.sass */
40
- ul.features {
41
- list-style: circle;
42
- margin-top: 0.25em; }
43
-
44
- /* line 39, bone_tree_repo.css.sass */
45
- .CodeRay {
46
- font-family: monaco, monospace;
47
- font-variant: normal;
48
- font-size: 12px; }
49
-
50
- /* line 44, bone_tree_repo.css.sass */
51
- .left {
52
- border-right: 1px dashed rgba(0, 0, 0, 0.4);
53
- height: 100%;
54
- position: fixed;
55
- left: 0;
56
- width: 22%; }
57
-
58
- /* line 51, bone_tree_repo.css.sass */
59
- .right {
60
- padding-left: 23%;
61
- width: 60%; }
62
-
63
- /* line 55, bone_tree_repo.css.sass */
64
- .background {
65
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
66
- opacity: 0.2;
67
- background: url("/images/bonetree.png") no-repeat;
68
- display: inline-block;
69
- width: 843px;
70
- height: 650px;
71
- position: absolute;
72
- right: 0;
73
- top: 20px; }
data/bone_tree-0.0.1.gem DELETED
Binary file