flammarion 0.0.10 → 0.0.11

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 (35) hide show
  1. data/electron/preload.coffee +6 -0
  2. data/lib/flammarion.rb +5 -1
  3. data/lib/flammarion/about.rb +8 -0
  4. data/lib/flammarion/server.rb +0 -1
  5. data/lib/flammarion/version.rb +1 -1
  6. data/lib/flammarion/writeable.rb +27 -2
  7. data/lib/html/build/index.html +1 -1
  8. data/lib/html/build/javascripts/actions.js +48 -7
  9. data/lib/html/build/javascripts/all.js +48 -7
  10. data/lib/html/build/javascripts/map.js +2 -2
  11. data/lib/html/build/javascripts/status.js +2 -2
  12. data/lib/html/build/javascripts/websocket.js +2 -2
  13. data/lib/html/build/stylesheets/all.css +354 -294
  14. data/lib/html/build/stylesheets/ansi_colors.css +64 -16
  15. data/lib/html/build/stylesheets/buttons.css +68 -56
  16. data/lib/html/{source/stylesheets/railscasts.css → build/stylesheets/code.css} +2 -30
  17. data/lib/html/build/stylesheets/dialog.css +19 -4
  18. data/lib/html/build/stylesheets/frontend.css +23 -8
  19. data/lib/html/build/stylesheets/scrollbar.css +9 -9
  20. data/lib/html/build/stylesheets/status.css +10 -10
  21. data/lib/html/build/stylesheets/table.css +4 -3
  22. data/lib/html/source/index.html.slim +3 -2
  23. data/lib/html/source/javascripts/actions.coffee +23 -2
  24. data/lib/html/source/javascripts/status.coffee +2 -2
  25. data/lib/html/source/stylesheets/all.css +0 -1
  26. data/lib/html/source/stylesheets/ansi_colors.styl +8 -1
  27. data/lib/html/source/stylesheets/buttons.styl +6 -3
  28. data/lib/html/{build/stylesheets/railscasts.css → source/stylesheets/code.styl} +64 -59
  29. data/lib/html/source/stylesheets/colors.styl +7 -1
  30. data/lib/html/source/stylesheets/dialog.styl +26 -15
  31. data/lib/html/source/stylesheets/frontend.styl +9 -3
  32. data/lib/html/source/stylesheets/mixins.styl +15 -6
  33. data/lib/html/source/stylesheets/status.styl +3 -3
  34. data/lib/html/source/stylesheets/table.styl +3 -0
  35. metadata +20 -3
@@ -1 +1,7 @@
1
1
  window.$remote = require('remote')
2
+
3
+ window.$search_for = (str) ->
4
+ if window.find(str, 0, 0, 1)
5
+ anchor = window.getSelection().anchorNode
6
+ anchor = anchor.parentNode unless anchor.nodeType == 1
7
+ anchor.scrollIntoView()
@@ -17,6 +17,7 @@ require_relative 'flammarion/pane.rb'
17
17
  require_relative 'flammarion/server.rb'
18
18
  require_relative 'flammarion/version.rb'
19
19
  require_relative 'flammarion/revelator.rb'
20
+ require_relative 'flammarion/about.rb'
20
21
 
21
22
  module Flammarion
22
23
  class Engraving
@@ -30,7 +31,6 @@ module Flammarion
30
31
  # connected (i.e., displayed)
31
32
  # @option options [Proc] :on_disconnect Called when the display windows is
32
33
  # disconnected (i.e., closed)
33
- # @option
34
34
  def initialize(options = {})
35
35
  @chrome = OpenStruct.new
36
36
  @sockets = []
@@ -56,6 +56,10 @@ module Flammarion
56
56
  @on_disconnect.call if @on_disconnect
57
57
  end
58
58
 
59
+ def wait_until_closed
60
+ sleep 1 until @sockets.empty?
61
+ end
62
+
59
63
  def process_message(msg)
60
64
  @last_msg = msg
61
65
  m = {}
@@ -0,0 +1,8 @@
1
+ module Flammarion
2
+ def self.about
3
+ f = Engraving.new(close_on_exit:true)
4
+ f.title "Flammarion #{VERSION}"
5
+ readme = "#{File.absolute_path(File.dirname(__FILE__))}/../../Readme.md"
6
+ f.markdown(File.read(readme))
7
+ end
8
+ end
@@ -72,7 +72,6 @@ module Flammarion
72
72
  rescue RuntimeError => e
73
73
  if e.message == "no acceptor (port is in use or requires root privileges)"
74
74
  @port = rand(65000 - 1024) + 1024
75
- Kernel.puts "New port: #{port}"
76
75
  retry
77
76
  else
78
77
  raise
@@ -1,3 +1,3 @@
1
1
  module Flammarion
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
@@ -203,6 +203,27 @@ module Flammarion
203
203
  end
204
204
  end
205
205
 
206
+ # Creates a dropdown menu for a user to choose a list of options
207
+ # @param items [Array<#to_s>] The possible choices
208
+ # @overload dropdown(items, options = {})
209
+ # @return [DeferredValue] An object representing the currently selected
210
+ # item, which can be converted to text using +#to_s+
211
+ # @overload dropdown(item, options = {})
212
+ # @yield [message_hash] Invokes the block every time the user selects a
213
+ # different option. Current item text can be obtained from the +"text"+
214
+ # key of the +message_hash+
215
+ def dropdown(items, options = {}, &block)
216
+ id = @front_end.make_id
217
+ send_json({action:'dropdown', id:id, options:items}.merge(options))
218
+ if block_given?
219
+ @front_end.callbacks[id] = block
220
+ else
221
+ d = DeferredValue.new
222
+ @front_end.callbacks[id] = Proc.new {|v| d.__setobj__ v["text"]}
223
+ return d
224
+ end
225
+ end
226
+
206
227
  # Creates a new checkbox which the user can click.
207
228
  # @param label [String] The placeholder text for the input
208
229
  # @macro escape_options
@@ -273,8 +294,8 @@ module Flammarion
273
294
  send_json({action:'showpane'})
274
295
  end
275
296
 
276
- def subpane(name)
277
- send_json({action:'subpane', name:name})
297
+ def subpane(name, options = {})
298
+ send_json({action:'subpane', name:name}.merge(options))
278
299
  return Pane.new(@front_end, name)
279
300
  end
280
301
 
@@ -341,5 +362,9 @@ module Flammarion
341
362
  end
342
363
  send_json({action:'map'}.merge(options))
343
364
  end
365
+
366
+ def search(string)
367
+ send_json({action:'search', text: string})
368
+ end
344
369
  end
345
370
  end
@@ -1 +1 @@
1
- <!DOCTYPE html><html><head><meta content="text/html; charset=UTF-8" http-equiv="content-type" /><meta charset="utf-8" /><meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" /><meta content="width=device-width, initial-scale=1.0" name="viewport" /><title>Flammarion</title><link href="stylesheets/all.css" rel="stylesheet" type="text/css" /><script src="javascripts/all.js" type="text/javascript"></script><script>hljs.initHighlightingOnLoad();</script></head><body><div class="hidden" id="toolbar"><a class="tool-button" href="#">Open</a><a class="tool-button" href="#">Save</a></div><div id="panes"><pre class="pane" id="console-default" style="height:100%"></pre></div><div class="hidden" id="dialog"><pre id="message">Hi World</pre><a class="full-button" href="#" id="ok">Ok</a></div><div id="status"><div class="left"></div><div class="center"></div><div class="right"></div></div></body></html>
1
+ <!DOCTYPE html><html><head><meta content="text/html; charset=UTF-8" http-equiv="content-type" /><meta charset="utf-8" /><meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" /><meta content="width=device-width, initial-scale=1.0" name="viewport" /><title>Flammarion</title><link href="stylesheets/all.css" rel="stylesheet" type="text/css" /><script src="javascripts/all.js" type="text/javascript"></script><script>hljs.initHighlightingOnLoad();</script></head><body><div class="hidden" id="toolbar"><a class="tool-button" href="#">Open</a><a class="tool-button" href="#">Save</a></div><div id="panes"><pre class="pane" id="console-default" style="height:100%"></pre></div><div class="hidden" id="dialog"><div id="content"><pre id="message">Hi World</pre><a class="full-button" href="#" id="ok">Ok</a></div></div><div id="status"><div class="left"></div><div class="center"></div><div class="right"></div></div></body></html>
@@ -43,9 +43,9 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
43
43
  }
44
44
  return results;
45
45
  }).call(this)).join("\n")) + "</ul>";
46
- $('#dialog > #message').html(message);
46
+ $('#dialog > #content > #message').html(message);
47
47
  $('#dialog').show();
48
- return $('#dialog > #ok').click(function() {
48
+ return $('#dialog > #content > #ok').click(function() {
49
49
  return $('#dialog').hide();
50
50
  });
51
51
  };
@@ -231,7 +231,7 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
231
231
  target = $('#panes');
232
232
  }
233
233
  if (target.find("#console-" + data.name).size() === 0) {
234
- target.append("<pre class='pane' id='console-" + data.name + "'><pre>");
234
+ target.append("<pre class='pane full-pane' id='console-" + data.name + "'><pre>");
235
235
  }
236
236
  return this.__parent.resize_panes(data);
237
237
  },
@@ -284,11 +284,18 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
284
284
  return hljs.highlightBlock(code[0]);
285
285
  },
286
286
  markdown: function(data) {
287
- var newblock, target;
287
+ var code, i, len, newblock, ref, results, target;
288
288
  target = this.__parent.check_target(data);
289
289
  newblock = $("<div class='markdown'></div>");
290
290
  newblock.html(data.text);
291
- return this.__parent.add(newblock, target, data);
291
+ this.__parent.add(newblock, target, data);
292
+ ref = newblock.find('code');
293
+ results = [];
294
+ for (i = 0, len = ref.length; i < len; i++) {
295
+ code = ref[i];
296
+ results.push(hljs.highlightBlock(code));
297
+ }
298
+ return results;
292
299
  },
293
300
  button: function(data) {
294
301
  var class_name, element, left_icon, right_icon, target;
@@ -333,11 +340,14 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
333
340
  return this.__parent.add(code, target, data);
334
341
  },
335
342
  subpane: function(data) {
336
- var element, target;
343
+ var element, other_classes, target;
337
344
  target = this.__parent.check_target(data);
338
345
  element = target.find("#console-" + data.name);
339
346
  if (element.size() === 0) {
340
- return target.append("<pre id='console-" + data.name + "' class='pane'></pre>");
347
+ if (data.fill) {
348
+ other_classes = "subpane-fill";
349
+ }
350
+ return target.append("<pre id='console-" + data.name + "' class='subpane pane " + other_classes + "'></pre>");
341
351
  }
342
352
  },
343
353
  input: function(data) {
@@ -417,6 +427,27 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
417
427
  })(this));
418
428
  return target.append(element);
419
429
  },
430
+ dropdown: function(data) {
431
+ var element, i, item, len, ref, target;
432
+ target = this.__parent.check_target(data);
433
+ element = $("<select class='inline-dropdown' name='" + data.id + "'></select>");
434
+ ref = data.options;
435
+ for (i = 0, len = ref.length; i < len; i++) {
436
+ item = ref[i];
437
+ element.append($("<option>" + item + "</option>"));
438
+ }
439
+ element.change((function(_this) {
440
+ return function(e) {
441
+ return _this.__parent.send({
442
+ id: data.id,
443
+ action: 'callback',
444
+ source: 'dropdown',
445
+ text: element.find('option:selected').text()
446
+ });
447
+ };
448
+ })(this));
449
+ return this.__parent.add(element, target, data);
450
+ },
420
451
  alert: function(data) {
421
452
  return alert(data.text);
422
453
  },
@@ -476,6 +507,16 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
476
507
  },
477
508
  close: function(data) {
478
509
  return window.close();
510
+ },
511
+ search: function(data) {
512
+ var anchor;
513
+ if (window.find(data.text, 0, 0, 1)) {
514
+ anchor = window.getSelection().anchorNode;
515
+ if (anchor.nodeType !== 1) {
516
+ anchor = anchor.parentNode;
517
+ }
518
+ return anchor.scrollIntoView();
519
+ }
479
520
  }
480
521
  });
481
522
 
@@ -6664,9 +6664,9 @@ if (typeof module !== 'undefined') {
6664
6664
  }
6665
6665
  return results;
6666
6666
  }).call(this)).join("\n")) + "</ul>";
6667
- $('#dialog > #message').html(message);
6667
+ $('#dialog > #content > #message').html(message);
6668
6668
  $('#dialog').show();
6669
- return $('#dialog > #ok').click(function() {
6669
+ return $('#dialog > #content > #ok').click(function() {
6670
6670
  return $('#dialog').hide();
6671
6671
  });
6672
6672
  };
@@ -6852,7 +6852,7 @@ if (typeof module !== 'undefined') {
6852
6852
  target = $('#panes');
6853
6853
  }
6854
6854
  if (target.find("#console-" + data.name).size() === 0) {
6855
- target.append("<pre class='pane' id='console-" + data.name + "'><pre>");
6855
+ target.append("<pre class='pane full-pane' id='console-" + data.name + "'><pre>");
6856
6856
  }
6857
6857
  return this.__parent.resize_panes(data);
6858
6858
  },
@@ -6905,11 +6905,18 @@ if (typeof module !== 'undefined') {
6905
6905
  return hljs.highlightBlock(code[0]);
6906
6906
  },
6907
6907
  markdown: function(data) {
6908
- var newblock, target;
6908
+ var code, i, len, newblock, ref, results, target;
6909
6909
  target = this.__parent.check_target(data);
6910
6910
  newblock = $("<div class='markdown'></div>");
6911
6911
  newblock.html(data.text);
6912
- return this.__parent.add(newblock, target, data);
6912
+ this.__parent.add(newblock, target, data);
6913
+ ref = newblock.find('code');
6914
+ results = [];
6915
+ for (i = 0, len = ref.length; i < len; i++) {
6916
+ code = ref[i];
6917
+ results.push(hljs.highlightBlock(code));
6918
+ }
6919
+ return results;
6913
6920
  },
6914
6921
  button: function(data) {
6915
6922
  var class_name, element, left_icon, right_icon, target;
@@ -6954,11 +6961,14 @@ if (typeof module !== 'undefined') {
6954
6961
  return this.__parent.add(code, target, data);
6955
6962
  },
6956
6963
  subpane: function(data) {
6957
- var element, target;
6964
+ var element, other_classes, target;
6958
6965
  target = this.__parent.check_target(data);
6959
6966
  element = target.find("#console-" + data.name);
6960
6967
  if (element.size() === 0) {
6961
- return target.append("<pre id='console-" + data.name + "' class='pane'></pre>");
6968
+ if (data.fill) {
6969
+ other_classes = "subpane-fill";
6970
+ }
6971
+ return target.append("<pre id='console-" + data.name + "' class='subpane pane " + other_classes + "'></pre>");
6962
6972
  }
6963
6973
  },
6964
6974
  input: function(data) {
@@ -7038,6 +7048,27 @@ if (typeof module !== 'undefined') {
7038
7048
  })(this));
7039
7049
  return target.append(element);
7040
7050
  },
7051
+ dropdown: function(data) {
7052
+ var element, i, item, len, ref, target;
7053
+ target = this.__parent.check_target(data);
7054
+ element = $("<select class='inline-dropdown' name='" + data.id + "'></select>");
7055
+ ref = data.options;
7056
+ for (i = 0, len = ref.length; i < len; i++) {
7057
+ item = ref[i];
7058
+ element.append($("<option>" + item + "</option>"));
7059
+ }
7060
+ element.change((function(_this) {
7061
+ return function(e) {
7062
+ return _this.__parent.send({
7063
+ id: data.id,
7064
+ action: 'callback',
7065
+ source: 'dropdown',
7066
+ text: element.find('option:selected').text()
7067
+ });
7068
+ };
7069
+ })(this));
7070
+ return this.__parent.add(element, target, data);
7071
+ },
7041
7072
  alert: function(data) {
7042
7073
  return alert(data.text);
7043
7074
  },
@@ -7097,6 +7128,16 @@ if (typeof module !== 'undefined') {
7097
7128
  },
7098
7129
  close: function(data) {
7099
7130
  return window.close();
7131
+ },
7132
+ search: function(data) {
7133
+ var anchor;
7134
+ if (window.find(data.text, 0, 0, 1)) {
7135
+ anchor = window.getSelection().anchorNode;
7136
+ if (anchor.nodeType !== 1) {
7137
+ anchor = anchor.parentNode;
7138
+ }
7139
+ return anchor.scrollIntoView();
7140
+ }
7100
7141
  }
7101
7142
  });
7102
7143
 
@@ -43,9 +43,9 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
43
43
  }
44
44
  return results;
45
45
  }).call(this)).join("\n")) + "</ul>";
46
- $('#dialog > #message').html(message);
46
+ $('#dialog > #content > #message').html(message);
47
47
  $('#dialog').show();
48
- return $('#dialog > #ok').click(function() {
48
+ return $('#dialog > #content > #ok').click(function() {
49
49
  return $('#dialog').hide();
50
50
  });
51
51
  };
@@ -38,9 +38,9 @@
38
38
  }
39
39
  return results;
40
40
  }).call(this)).join("\n")) + "</ul>";
41
- $('#dialog > #message').html(message);
41
+ $('#dialog > #content > #message').html(message);
42
42
  $('#dialog').show();
43
- return $('#dialog > #ok').click(function() {
43
+ return $('#dialog > #content > #ok').click(function() {
44
44
  return $('#dialog').hide();
45
45
  });
46
46
  };
@@ -43,9 +43,9 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
43
43
  }
44
44
  return results;
45
45
  }).call(this)).join("\n")) + "</ul>";
46
- $('#dialog > #message').html(message);
46
+ $('#dialog > #content > #message').html(message);
47
47
  $('#dialog').show();
48
- return $('#dialog > #ok').click(function() {
48
+ return $('#dialog > #content > #ok').click(function() {
49
49
  return $('#dialog').hide();
50
50
  });
51
51
  };
@@ -1,289 +1,152 @@
1
- @charset "utf-8";/*
2
-
3
- Railscasts-like style (c) Visoft, Inc. (Damien White)
4
-
5
- */
6
-
7
-
8
- .hljs {
9
- display: block;
10
- overflow-x: auto;
11
- padding: 0.5em;
12
- background: #232323;
13
- color: #e6e1dc;
14
- -webkit-text-size-adjust: none;
15
- }
16
-
17
- .hljs-comment,
18
- .hljs-shebang {
19
- color: #bc9458;
20
- font-style: italic;
21
- }
22
-
23
- .hljs-keyword,
24
- .ruby .hljs-function .hljs-keyword,
25
- .hljs-request,
26
- .hljs-status,
27
- .nginx .hljs-title,
28
- .method,
29
- .hljs-list .hljs-title {
30
- color: #c26230;
31
- }
32
-
33
- .hljs-string,
34
- .hljs-number,
35
- .hljs-regexp,
36
- .hljs-tag .hljs-value,
37
- .hljs-cdata,
38
- .hljs-filter .hljs-argument,
39
- .hljs-attr_selector,
40
- .apache .hljs-cbracket,
41
- .hljs-date,
42
- .tex .hljs-command,
43
- .asciidoc .hljs-link_label,
44
- .markdown .hljs-link_label {
45
- color: #a5c261;
46
- }
47
-
48
- .hljs-subst {
49
- color: #519f50;
50
- }
51
-
52
- .hljs-tag,
53
- .hljs-tag .hljs-keyword,
54
- .hljs-tag .hljs-title,
55
- .hljs-doctype,
56
- .hljs-sub .hljs-identifier,
57
- .hljs-pi,
58
- .input_number {
59
- color: #e8bf6a;
60
- }
61
-
62
- .hljs-identifier {
63
- color: #d0d0ff;
64
- }
65
-
66
- .hljs-class .hljs-title,
67
- .hljs-type,
68
- .smalltalk .hljs-class,
69
- .hljs-doctag {
70
- text-decoration: none;
71
- }
72
-
73
- .hljs-constant,
74
- .hljs-name {
75
- color: #da4939;
76
- }
77
-
78
-
79
- .hljs-symbol,
80
- .hljs-built_in,
81
- .ruby .hljs-symbol .hljs-string,
82
- .ruby .hljs-symbol .hljs-identifier,
83
- .asciidoc .hljs-link_url,
84
- .markdown .hljs-link_url,
85
- .hljs-attribute {
86
- color: #6d9cbe;
87
- }
88
-
89
- .asciidoc .hljs-link_url,
90
- .markdown .hljs-link_url {
91
- text-decoration: underline;
92
- }
93
-
94
-
95
-
96
- .hljs-params,
97
- .hljs-variable,
98
- .clojure .hljs-attribute {
99
- color: #d0d0ff;
100
- }
101
-
102
- .css .hljs-tag,
103
- .hljs-rule .hljs-property,
104
- .hljs-pseudo,
105
- .tex .hljs-special {
106
- color: #cda869;
107
- }
108
-
109
- .css .hljs-class {
110
- color: #9b703f;
111
- }
112
-
113
- .hljs-rule .hljs-keyword {
114
- color: #c5af75;
115
- }
116
-
117
- .hljs-rule .hljs-value {
118
- color: #cf6a4c;
119
- }
120
-
121
- .css .hljs-id {
122
- color: #8b98ab;
123
- }
124
-
125
- .hljs-annotation,
126
- .apache .hljs-sqbracket,
127
- .nginx .hljs-built_in {
128
- color: #9b859d;
129
- }
130
-
131
- .hljs-preprocessor,
132
- .hljs-preprocessor *,
133
- .hljs-pragma {
134
- color: #8996a8 !important;
135
- }
136
-
137
- .hljs-hexcolor,
138
- .css .hljs-value .hljs-number {
139
- color: #a5c261;
140
- }
141
-
142
- .hljs-title,
143
- .hljs-decorator,
144
- .css .hljs-function {
145
- color: #ffc66d;
146
- }
147
-
148
- .diff .hljs-header,
149
- .hljs-chunk {
150
- background-color: #2f33ab;
151
- color: #e6e1dc;
152
- display: inline-block;
153
- width: 100%;
154
- }
155
-
156
- .diff .hljs-change {
157
- background-color: #4a410d;
158
- color: #f8f8f8;
159
- display: inline-block;
160
- width: 100%;
161
- }
162
-
163
- .hljs-addition {
164
- background-color: #144212;
165
- color: #e6e1dc;
166
- display: inline-block;
167
- width: 100%;
168
- }
169
-
170
- .hljs-deletion {
171
- background-color: #600;
172
- color: #e6e1dc;
173
- display: inline-block;
174
- width: 100%;
175
- }
176
-
177
- .coffeescript .javascript,
178
- .javascript .xml,
179
- .tex .hljs-formula,
180
- .xml .javascript,
181
- .xml .vbscript,
182
- .xml .css,
183
- .xml .hljs-cdata {
184
- opacity: 0.7;
185
- }
186
- .ansi-black-fg {
187
- color: #292929;
1
+ @charset "utf-8";.ansi-black-fg {
2
+ color: #101010;
188
3
  }
189
4
  .ansi-black-bg {
190
5
  background-color: #292929;
191
6
  }
7
+ .ansi-black-bg.ansi-black-fg {
8
+ color: #292929;
9
+ }
192
10
  .ansi-red-fg {
193
- color: #b00;
11
+ color: #4b0000;
194
12
  }
195
13
  .ansi-red-bg {
196
14
  background-color: #b00;
197
15
  }
16
+ .ansi-red-bg.ansi-red-fg {
17
+ color: #b00;
18
+ }
198
19
  .ansi-green-fg {
199
- color: #0b0;
20
+ color: #004b00;
200
21
  }
201
22
  .ansi-green-bg {
202
23
  background-color: #0b0;
203
24
  }
25
+ .ansi-green-bg.ansi-green-fg {
26
+ color: #0b0;
27
+ }
204
28
  .ansi-yellow-fg {
205
- color: #bb0;
29
+ color: #4b4b00;
206
30
  }
207
31
  .ansi-yellow-bg {
208
32
  background-color: #bb0;
209
33
  }
34
+ .ansi-yellow-bg.ansi-yellow-fg {
35
+ color: #bb0;
36
+ }
210
37
  .ansi-blue-fg {
211
- color: #234bc6;
38
+ color: #0e1e4f;
212
39
  }
213
40
  .ansi-blue-bg {
214
41
  background-color: #234bc6;
215
42
  }
43
+ .ansi-blue-bg.ansi-blue-fg {
44
+ color: #234bc6;
45
+ }
216
46
  .ansi-magenta-fg {
217
- color: #b0b;
47
+ color: #4b004b;
218
48
  }
219
49
  .ansi-magenta-bg {
220
50
  background-color: #b0b;
221
51
  }
52
+ .ansi-magenta-bg.ansi-magenta-fg {
53
+ color: #b0b;
54
+ }
222
55
  .ansi-cyan-fg {
223
- color: #0bb;
56
+ color: #004b4b;
224
57
  }
225
58
  .ansi-cyan-bg {
226
59
  background-color: #0bb;
227
60
  }
61
+ .ansi-cyan-bg.ansi-cyan-fg {
62
+ color: #0bb;
63
+ }
228
64
  .ansi-white-fg {
229
- color: #fff;
65
+ color: #666;
230
66
  }
231
67
  .ansi-white-bg {
232
68
  background-color: #fff;
233
69
  }
70
+ .ansi-white-bg.ansi-white-fg {
71
+ color: #fff;
72
+ }
234
73
  .ansi-bright-black-fg {
235
- color: #555;
74
+ color: #222;
236
75
  }
237
76
  .ansi-bright-black-bg {
238
77
  background-color: #555;
239
78
  }
79
+ .ansi-bright-black-bg.ansi-bright-black-fg {
80
+ color: #555;
81
+ }
240
82
  .ansi-bright-red-fg {
241
- color: #f55;
83
+ color: #800;
242
84
  }
243
85
  .ansi-bright-red-bg {
244
86
  background-color: #f55;
245
87
  }
88
+ .ansi-bright-red-bg.ansi-bright-red-fg {
89
+ color: #f55;
90
+ }
246
91
  .ansi-bright-green-fg {
247
- color: #0f0;
92
+ color: #060;
248
93
  }
249
94
  .ansi-bright-green-bg {
250
95
  background-color: #0f0;
251
96
  }
97
+ .ansi-bright-green-bg.ansi-bright-green-fg {
98
+ color: #0f0;
99
+ }
252
100
  .ansi-bright-yellow-fg {
253
- color: #ff5;
101
+ color: #880;
254
102
  }
255
103
  .ansi-bright-yellow-bg {
256
104
  background-color: #ff5;
257
105
  }
106
+ .ansi-bright-yellow-bg.ansi-bright-yellow-fg {
107
+ color: #ff5;
108
+ }
258
109
  .ansi-bright-blue-fg {
259
- color: #55f;
110
+ color: #008;
260
111
  }
261
112
  .ansi-bright-blue-bg {
262
113
  background-color: #55f;
263
114
  }
115
+ .ansi-bright-blue-bg.ansi-bright-blue-fg {
116
+ color: #55f;
117
+ }
264
118
  .ansi-bright-magenta-fg {
265
- color: #f5f;
119
+ color: #808;
266
120
  }
267
121
  .ansi-bright-magenta-bg {
268
122
  background-color: #f5f;
269
123
  }
124
+ .ansi-bright-magenta-bg.ansi-bright-magenta-fg {
125
+ color: #f5f;
126
+ }
270
127
  .ansi-bright-cyan-fg {
271
- color: #5ff;
128
+ color: #088;
272
129
  }
273
130
  .ansi-bright-cyan-bg {
274
131
  background-color: #5ff;
275
132
  }
133
+ .ansi-bright-cyan-bg.ansi-bright-cyan-fg {
134
+ color: #5ff;
135
+ }
276
136
  .ansi-bright-white-fg {
277
- color: #fff;
137
+ color: #666;
278
138
  }
279
139
  .ansi-bright-white-bg {
280
140
  background-color: #fff;
281
141
  }
142
+ .ansi-bright-white-bg.ansi-bright-white-fg {
143
+ color: #fff;
144
+ }
282
145
  .full-button {
283
- background-color: #383e40;
284
- color: #eee;
146
+ background-color: #eee;
147
+ color: #333;
285
148
  font-family: Monospace;
286
- border: 1px solid #a7a7a7;
149
+ border: 1px solid #242424;
287
150
  padding: 1em;
288
151
  text-decoration: none;
289
152
  display: block;
@@ -296,30 +159,30 @@ Railscasts-like style (c) Visoft, Inc. (Damien White)
296
159
  -moz-user-select: none;
297
160
  -ms-user-select: none;
298
161
  user-select: none;
299
- background-color: #4a5255;
300
- background-image: -webkit-linear-gradient(top, #4a5255 40%, #32383a 100%);
301
- background-image: -moz-linear-gradient(top, #4a5255 40%, #32383a 100%);
302
- background-image: -ms-linear-gradient(top, #4a5255 40%, #32383a 100%);
303
- background-image: -o-linear-gradient(top, #4a5255 40%, #32383a 100%);
304
- background-image: linear-gradient(top, #4a5255 40%, #32383a 100%);
162
+ background-color: #f0f0f0;
163
+ background-image: -webkit-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
164
+ background-image: -moz-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
165
+ background-image: -ms-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
166
+ background-image: -o-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
167
+ background-image: linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
305
168
  }
306
169
  .full-button:hover {
307
- background-color: #4a5255;
308
- background-color: #5a6468;
309
- background-image: -webkit-linear-gradient(top, #5a6468 40%, #434a4d 100%);
310
- background-image: -moz-linear-gradient(top, #5a6468 40%, #434a4d 100%);
311
- background-image: -ms-linear-gradient(top, #5a6468 40%, #434a4d 100%);
312
- background-image: -o-linear-gradient(top, #5a6468 40%, #434a4d 100%);
313
- background-image: linear-gradient(top, #5a6468 40%, #434a4d 100%);
170
+ background-color: #d6d6d6;
171
+ background-color: #dadada;
172
+ background-image: -webkit-linear-gradient(top, #dadada 40%, #c1c1c1 100%);
173
+ background-image: -moz-linear-gradient(top, #dadada 40%, #c1c1c1 100%);
174
+ background-image: -ms-linear-gradient(top, #dadada 40%, #c1c1c1 100%);
175
+ background-image: -o-linear-gradient(top, #dadada 40%, #c1c1c1 100%);
176
+ background-image: linear-gradient(top, #dadada 40%, #c1c1c1 100%);
314
177
  }
315
178
  .full-button:active {
316
- background-color: #5c666a;
317
- background-color: #434a4d;
318
- background-image: -webkit-linear-gradient(top, #434a4d 40%, #5a6468 100%);
319
- background-image: -moz-linear-gradient(top, #434a4d 40%, #5a6468 100%);
320
- background-image: -ms-linear-gradient(top, #434a4d 40%, #5a6468 100%);
321
- background-image: -o-linear-gradient(top, #434a4d 40%, #5a6468 100%);
322
- background-image: linear-gradient(top, #434a4d 40%, #5a6468 100%);
179
+ background-color: #bebebe;
180
+ background-color: #c1c1c1;
181
+ background-image: -webkit-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
182
+ background-image: -moz-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
183
+ background-image: -ms-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
184
+ background-image: -o-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
185
+ background-image: linear-gradient(top, #c1c1c1 40%, #dadada 100%);
323
186
  }
324
187
  .full-button > .label-icon-left {
325
188
  float: left;
@@ -327,11 +190,12 @@ Railscasts-like style (c) Visoft, Inc. (Damien White)
327
190
  .full-button > .label-icon-right {
328
191
  float: right;
329
192
  }
330
- .inline-text-input {
331
- background-color: #383e40;
332
- color: #eee;
193
+ .inline-text-input,
194
+ .inline-dropdown {
195
+ background-color: #eee;
196
+ color: #333;
333
197
  font-family: Monospace;
334
- border: 1px solid #a7a7a7;
198
+ border: 1px solid #242424;
335
199
  padding: 1em;
336
200
  text-decoration: none;
337
201
  display: block;
@@ -347,28 +211,34 @@ Railscasts-like style (c) Visoft, Inc. (Damien White)
347
211
  text-align: left;
348
212
  box-sizing: border-box;
349
213
  width: 100%;
350
- box-shadow: inset 0px 0px 2px 2px #2d3233;
214
+ box-shadow: inset 0px 0px 2px 2px #bebebe;
351
215
  }
352
- .inline-text-input:hover {
353
- background-color: #4a5255;
216
+ .inline-text-input:hover,
217
+ .inline-dropdown:hover {
218
+ background-color: #d6d6d6;
354
219
  }
355
- .inline-text-input:active {
356
- background-color: #5c666a;
220
+ .inline-text-input:active,
221
+ .inline-dropdown:active {
222
+ background-color: #bebebe;
357
223
  }
358
- .inline-text-input > .label-icon-left {
224
+ .inline-text-input > .label-icon-left,
225
+ .inline-dropdown > .label-icon-left {
359
226
  float: left;
360
227
  }
361
- .inline-text-input > .label-icon-right {
228
+ .inline-text-input > .label-icon-right,
229
+ .inline-dropdown > .label-icon-right {
362
230
  float: right;
363
231
  }
364
- .inline-text-input.unclicked {
365
- color: #777;
232
+ .inline-text-input.unclicked,
233
+ .inline-dropdown.unclicked {
234
+ color: #1a1a1a;
366
235
  }
367
- textarea.inline-text-input {
236
+ textarea.inline-text-input,
237
+ textarea.inline-dropdown {
368
238
  height: 25em;
369
239
  }
370
240
  input::-webkit-input-placeholder {
371
- color: #777;
241
+ color: #1a1a1a;
372
242
  }
373
243
  input:focus::-webkit-input-placeholder {
374
244
  opacity: 0;
@@ -395,14 +265,14 @@ input:focus::-webkit-input-placeholder {
395
265
  content: " ";
396
266
  width: 1em;
397
267
  height: 1em;
398
- border: 1px solid #a7a7a7;
268
+ border: 1px solid #242424;
399
269
  margin-right: 0.5em;
400
270
  }
401
271
  .inline-checkbox.checked:before {
402
- background-color: #828e92;
272
+ background-color: #8f8f8f;
403
273
  }
404
274
  .inline-checkbox:hover {
405
- background-color: #4a5255;
275
+ background-color: #d6d6d6;
406
276
  }
407
277
  #toolbar {
408
278
  background-color: #000;
@@ -415,7 +285,7 @@ input:focus::-webkit-input-placeholder {
415
285
  padding: 0.5em;
416
286
  margin: 0;
417
287
  text-decoration: none;
418
- color: #eee;
288
+ color: #333;
419
289
  border-right: 1px solid;
420
290
  border-left: 1px solid;
421
291
  margin-right: 0em;
@@ -427,9 +297,10 @@ input:focus::-webkit-input-placeholder {
427
297
  position: absolute;
428
298
  top: 0.5em;
429
299
  right: 0.5em;
430
- margin-right: 0.5em;
300
+ margin-right: 1em;
431
301
  background-color: rgba(0,0,0,0.5);
432
- padding: 0.5em;
302
+ box-shadow: 2px 2px 4px 2px #bebebe;
303
+ padding: 0;
433
304
  z-index: 3;
434
305
  }
435
306
  .button-box .full-button,
@@ -448,17 +319,21 @@ input:focus::-webkit-input-placeholder {
448
319
  width: auto;
449
320
  }
450
321
  .button-box .inline-checkbox {
451
- border: 1px solid #a7a7a7;
322
+ border: 1px solid #242424;
452
323
  }
453
324
  .button-box .inline-checkbox:before {
454
- border: 1px solid #474747;
325
+ border: 1px solid #0f0f0f;
455
326
  height: 50%;
456
327
  }
328
+ .button-box .label-icon-left,
329
+ .button-box .label-icon-right {
330
+ margin: 0px 5px;
331
+ }
457
332
  .inline-button {
458
- background-color: #383e40;
459
- color: #eee;
333
+ background-color: #eee;
334
+ color: #333;
460
335
  font-family: Monospace;
461
- border: 1px solid #a7a7a7;
336
+ border: 1px solid #242424;
462
337
  padding: 1em;
463
338
  text-decoration: none;
464
339
  display: block;
@@ -474,10 +349,10 @@ input:focus::-webkit-input-placeholder {
474
349
  display: inline;
475
350
  }
476
351
  .inline-button:hover {
477
- background-color: #4a5255;
352
+ background-color: #d6d6d6;
478
353
  }
479
354
  .inline-button:active {
480
- background-color: #5c666a;
355
+ background-color: #bebebe;
481
356
  }
482
357
  .inline-button > .label-icon-left {
483
358
  float: left;
@@ -486,10 +361,10 @@ input:focus::-webkit-input-placeholder {
486
361
  float: right;
487
362
  }
488
363
  .floating-button {
489
- background-color: #383e40;
490
- color: #eee;
364
+ background-color: #eee;
365
+ color: #333;
491
366
  font-family: Monospace;
492
- border: 1px solid #a7a7a7;
367
+ border: 1px solid #242424;
493
368
  padding: 1em;
494
369
  text-decoration: none;
495
370
  display: block;
@@ -507,10 +382,10 @@ input:focus::-webkit-input-placeholder {
507
382
  padding: 0.2em;
508
383
  }
509
384
  .floating-button:hover {
510
- background-color: #4a5255;
385
+ background-color: #d6d6d6;
511
386
  }
512
387
  .floating-button:active {
513
- background-color: #5c666a;
388
+ background-color: #bebebe;
514
389
  }
515
390
  .floating-button > .label-icon-left {
516
391
  float: left;
@@ -522,15 +397,186 @@ input:focus::-webkit-input-placeholder {
522
397
  margin-top: 0.1em;
523
398
  margin-bottom: -0.1em;
524
399
  }
400
+ /*
401
+
402
+ Railscasts-like style (c) Visoft, Inc. (Damien White)
403
+
404
+ */
405
+ .hljs {
406
+ display: block;
407
+ overflow-x: auto;
408
+ padding: 0.5em;
409
+ background-color: #242424;
410
+ color: #e6e1dc;
411
+ -webkit-text-size-adjust: none;
412
+ border-radius: 5px;
413
+ }
414
+ .hljs-comment,
415
+ .hljs-shebang {
416
+ color: #bc9458;
417
+ font-style: italic;
418
+ }
419
+ .hljs-keyword,
420
+ .ruby .hljs-function .hljs-keyword,
421
+ .hljs-request,
422
+ .hljs-status,
423
+ .nginx .hljs-title,
424
+ .method,
425
+ .hljs-list .hljs-title {
426
+ color: #c26230;
427
+ }
428
+ .hljs-string,
429
+ .hljs-number,
430
+ .hljs-regexp,
431
+ .hljs-tag .hljs-value,
432
+ .hljs-cdata,
433
+ .hljs-filter .hljs-argument,
434
+ .hljs-attr_selector,
435
+ .apache .hljs-cbracket,
436
+ .hljs-date,
437
+ .tex .hljs-command,
438
+ .asciidoc .hljs-link_label,
439
+ .markdown .hljs-link_label {
440
+ color: #a5c261;
441
+ }
442
+ .hljs-subst {
443
+ color: #519f50;
444
+ }
445
+ .hljs-tag,
446
+ .hljs-tag .hljs-keyword,
447
+ .hljs-tag .hljs-title,
448
+ .hljs-doctype,
449
+ .hljs-sub .hljs-identifier,
450
+ .hljs-pi,
451
+ .input_number {
452
+ color: #e8bf6a;
453
+ }
454
+ .hljs-identifier {
455
+ color: #d0d0ff;
456
+ }
457
+ .hljs-class .hljs-title,
458
+ .hljs-type,
459
+ .smalltalk .hljs-class,
460
+ .hljs-doctag {
461
+ text-decoration: none;
462
+ }
463
+ .hljs-constant,
464
+ .hljs-name {
465
+ color: #da4939;
466
+ }
467
+ .hljs-symbol,
468
+ .hljs-built_in,
469
+ .ruby .hljs-symbol .hljs-string,
470
+ .ruby .hljs-symbol .hljs-identifier,
471
+ .asciidoc .hljs-link_url,
472
+ .markdown .hljs-link_url,
473
+ .hljs-attribute {
474
+ color: #6d9cbe;
475
+ }
476
+ .asciidoc .hljs-link_url,
477
+ .markdown .hljs-link_url {
478
+ text-decoration: underline;
479
+ }
480
+ .hljs-params,
481
+ .hljs-variable,
482
+ .clojure .hljs-attribute {
483
+ color: #d0d0ff;
484
+ }
485
+ .css .hljs-tag,
486
+ .hljs-rule .hljs-property,
487
+ .hljs-pseudo,
488
+ .tex .hljs-special {
489
+ color: #cda869;
490
+ }
491
+ .css .hljs-class {
492
+ color: #9b703f;
493
+ }
494
+ .hljs-rule .hljs-keyword {
495
+ color: #c5af75;
496
+ }
497
+ .hljs-rule .hljs-value {
498
+ color: #cf6a4c;
499
+ }
500
+ .css .hljs-id {
501
+ color: #8b98ab;
502
+ }
503
+ .hljs-annotation,
504
+ .apache .hljs-sqbracket,
505
+ .nginx .hljs-built_in {
506
+ color: #9b859d;
507
+ }
508
+ .hljs-preprocessor,
509
+ .hljs-preprocessor *,
510
+ .hljs-pragma {
511
+ color: #8996a8 !important;
512
+ }
513
+ .hljs-hexcolor,
514
+ .css .hljs-value .hljs-number {
515
+ color: #a5c261;
516
+ }
517
+ .hljs-title,
518
+ .hljs-decorator,
519
+ .css .hljs-function {
520
+ color: #ffc66d;
521
+ }
522
+ .diff .hljs-header,
523
+ .hljs-chunk {
524
+ background-color: #2f33ab;
525
+ color: #e6e1dc;
526
+ display: inline-block;
527
+ width: 100%;
528
+ }
529
+ .diff .hljs-change {
530
+ background-color: #4a410d;
531
+ color: #f8f8f8;
532
+ display: inline-block;
533
+ width: 100%;
534
+ }
535
+ .hljs-addition {
536
+ background-color: #144212;
537
+ color: #e6e1dc;
538
+ display: inline-block;
539
+ width: 100%;
540
+ }
541
+ .hljs-deletion {
542
+ background-color: #600;
543
+ color: #e6e1dc;
544
+ display: inline-block;
545
+ width: 100%;
546
+ }
547
+ .coffeescript .javascript,
548
+ .javascript .xml,
549
+ .tex .hljs-formula,
550
+ .xml .javascript,
551
+ .xml .vbscript,
552
+ .xml .css,
553
+ .xml .hljs-cdata {
554
+ opacity: 0.7;
555
+ }
525
556
  #dialog {
557
+ width: 100%;
558
+ height: 100%;
559
+ background-color: rgba(0,0,0,0.5);
560
+ position: absolute;
561
+ left: 0;
562
+ top: 0;
563
+ -webkit-touch-callout: none;
564
+ -webkit-user-select: none;
565
+ -khtml-user-select: none;
566
+ -moz-user-select: none;
567
+ -ms-user-select: none;
568
+ user-select: none;
569
+ }
570
+ #dialog > #content {
526
571
  position: absolute;
527
572
  top: 10%;
528
573
  left: 10%;
529
574
  width: 70%;
530
575
  height: 70%;
531
576
  padding: 1em;
532
- background-color: #2d3233;
533
- border: 1px solid #a7a7a7;
577
+ background-color: #bebebe;
578
+ border: 1px solid #242424;
579
+ box-shadow: 2px 2px 4px 2px #333;
534
580
  -webkit-touch-callout: none;
535
581
  -webkit-user-select: none;
536
582
  -khtml-user-select: none;
@@ -538,7 +584,7 @@ input:focus::-webkit-input-placeholder {
538
584
  -ms-user-select: none;
539
585
  user-select: none;
540
586
  }
541
- #dialog > #message {
587
+ #dialog > #content > #message {
542
588
  -webkit-touch-callout: all;
543
589
  -webkit-user-select: all;
544
590
  -khtml-user-select: all;
@@ -550,7 +596,7 @@ input:focus::-webkit-input-placeholder {
550
596
  word-wrap: normal;
551
597
  overflow: auto;
552
598
  }
553
- #dialog > .full-button {
599
+ #dialog > #content > .full-button {
554
600
  height: 1em;
555
601
  }
556
602
  /*!
@@ -2647,13 +2693,18 @@ input:focus::-webkit-input-placeholder {
2647
2693
  @font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}
2648
2694
 
2649
2695
  body {
2650
- background-color: #383e40;
2651
- color: #eee;
2696
+ background-color: #eee;
2697
+ color: #333;
2652
2698
  padding: 0px;
2653
2699
  margin: 0px;
2654
2700
  height: 100%;
2655
2701
  width: 100%;
2656
2702
  overflow: hidden;
2703
+ -webkit-touch-callout: none;
2704
+ -webkit-user-select: none;
2705
+ -khtml-user-select: none;
2706
+ -moz-user-select: none;
2707
+ -ms-user-select: none;
2657
2708
  user-select: none;
2658
2709
  }
2659
2710
  html {
@@ -2667,10 +2718,10 @@ a {
2667
2718
  }
2668
2719
  p a {
2669
2720
  text-decoration: underline;
2670
- color: #9ca0a1;
2721
+ color: #848484;
2671
2722
  }
2672
2723
  p a:hover {
2673
- color: #a5aaac;
2724
+ color: #787878;
2674
2725
  }
2675
2726
  .hidden {
2676
2727
  display: none;
@@ -2684,17 +2735,30 @@ p a:hover {
2684
2735
  box-sizing: border-box;
2685
2736
  word-wrap: break-word;
2686
2737
  position: relative;
2738
+ -webkit-touch-callout: text;
2739
+ -webkit-user-select: text;
2740
+ -khtml-user-select: text;
2741
+ -moz-user-select: text;
2742
+ -ms-user-select: text;
2743
+ user-select: text;
2687
2744
  }
2688
2745
  .pane > .pane {
2689
2746
  width: calc(100% + 16px);
2690
2747
  height: initial;
2691
2748
  margin: -8px;
2692
2749
  }
2750
+ .pane > .pane.subpane-fill {
2751
+ height: calc(100% + 16px);
2752
+ }
2693
2753
  #panes {
2694
2754
  height: calc(98% - 15px);
2695
2755
  width: 100%;
2696
2756
  box-sizing: border-box;
2697
2757
  }
2758
+ html {
2759
+ padding-top: 2px;
2760
+ box-shadow: inset 0px 0px 2px 2px #bebebe;
2761
+ }
2698
2762
  .horizontal > .pane {
2699
2763
  height: 100%;
2700
2764
  float: left;
@@ -2709,7 +2773,7 @@ p a:hover {
2709
2773
  #plot-mouseover {
2710
2774
  position: absolute;
2711
2775
  background-color: rgba(0,0,0,0.5);
2712
- color: #eee;
2776
+ color: #333;
2713
2777
  pointer-events: none;
2714
2778
  font-family: Monospace;
2715
2779
  }
@@ -2719,9 +2783,6 @@ p a:hover {
2719
2783
  pointer-events: none;
2720
2784
  border: 1px solid #012;
2721
2785
  }
2722
- .hljs {
2723
- background-color: #383e40;
2724
- }
2725
2786
  /* required styles */
2726
2787
 
2727
2788
 
@@ -3216,38 +3277,40 @@ p a:hover {
3216
3277
  height: 1.5em;
3217
3278
  }
3218
3279
  ::-webkit-scrollbar-thumb {
3219
- background: #919393;
3220
- background-color: #b2b3b3;
3221
- background-image: -webkit-linear-gradient(left, #b2b3b3 40%, #828585 50%);
3222
- background-image: -moz-linear-gradient(left, #b2b3b3 40%, #828585 50%);
3223
- background-image: -ms-linear-gradient(left, #b2b3b3 40%, #828585 50%);
3224
- background-image: -o-linear-gradient(left, #b2b3b3 40%, #828585 50%);
3225
- background-image: linear-gradient(left, #b2b3b3 40%, #828585 50%);
3280
+ background: #858585;
3281
+ background-color: #aaa;
3282
+ background-image: -webkit-linear-gradient(left, #aaa 40%, #787878 50%);
3283
+ background-image: -moz-linear-gradient(left, #aaa 40%, #787878 50%);
3284
+ background-image: -ms-linear-gradient(left, #aaa 40%, #787878 50%);
3285
+ background-image: -o-linear-gradient(left, #aaa 40%, #787878 50%);
3286
+ background-image: linear-gradient(left, #aaa 40%, #787878 50%);
3226
3287
  }
3227
3288
  ::-webkit-scrollbar-track {
3228
- background: #626464;
3229
- box-shadow: inset 0px 0px 1px 1px #32383a;
3289
+ background: #bebebe;
3290
+ box-shadow: inset 0px 0px 1px 1px #d6d6d6;
3230
3291
  }
3231
3292
  #status {
3232
- background-color: #000;
3293
+ background-color: #aaa;
3233
3294
  margin: 0px;
3234
3295
  padding: 5px;
3235
3296
  padding-bottom: 10px;
3236
3297
  font-family: Monospace;
3237
3298
  height: 2%;
3238
- overflow: none;
3299
+ white-space: nowrap;
3300
+ overflow: hidden;
3301
+ text-overflow: ellipsis;
3239
3302
  -webkit-touch-callout: none;
3240
3303
  -webkit-user-select: none;
3241
3304
  -khtml-user-select: none;
3242
3305
  -moz-user-select: none;
3243
3306
  -ms-user-select: none;
3244
3307
  user-select: none;
3245
- background-color: #1a1a1a;
3246
- background-image: -webkit-linear-gradient(top, #1a1a1a 10%, #000 100%);
3247
- background-image: -moz-linear-gradient(top, #1a1a1a 10%, #000 100%);
3248
- background-image: -ms-linear-gradient(top, #1a1a1a 10%, #000 100%);
3249
- background-image: -o-linear-gradient(top, #1a1a1a 10%, #000 100%);
3250
- background-image: linear-gradient(top, #1a1a1a 10%, #000 100%);
3308
+ background-color: #b2b2b2;
3309
+ background-image: -webkit-linear-gradient(top, #b2b2b2 10%, #999 100%);
3310
+ background-image: -moz-linear-gradient(top, #b2b2b2 10%, #999 100%);
3311
+ background-image: -ms-linear-gradient(top, #b2b2b2 10%, #999 100%);
3312
+ background-image: -o-linear-gradient(top, #b2b2b2 10%, #999 100%);
3313
+ background-image: linear-gradient(top, #b2b2b2 10%, #999 100%);
3251
3314
  }
3252
3315
  #status:before {
3253
3316
  color: #781111;
@@ -3255,12 +3318,10 @@ p a:hover {
3255
3318
  }
3256
3319
  #status > .left {
3257
3320
  float: left;
3258
- width: 33%;
3259
3321
  cursor: pointer;
3260
3322
  }
3261
3323
  #status > .right {
3262
3324
  float: right;
3263
- width: 33%;
3264
3325
  cursor: pointer;
3265
3326
  text-align: right;
3266
3327
  }
@@ -3282,17 +3343,16 @@ td {
3282
3343
  box-sizing: padding-box;
3283
3344
  }
3284
3345
  td.hover {
3285
- background: #41484a;
3346
+ background: #e2e2e2;
3286
3347
  }
3287
3348
  tr {
3288
3349
  padding: 0;
3289
3350
  }
3290
3351
  tr:hover {
3291
- background: #41484a;
3352
+ background: #e2e2e2;
3292
3353
  }
3293
3354
  tr:hover td.hover {
3294
3355
  outline: 1px solid #333;
3295
- background: #383e40;
3356
+ background: #eee;
3357
+ box-shadow: inset 0px 0px 2px 2px #bebebe;
3296
3358
  }
3297
-
3298
-