chemistrykit 3.9.0.rc2 → 3.9.0.rc3

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/CHANGELOG.md +8 -1
  2. data/Gemfile +2 -1
  3. data/README.md +3 -3
  4. data/TODO.md +2 -0
  5. data/chemistrykit.gemspec +2 -3
  6. data/features/basic_auth.feature +0 -1
  7. data/features/chemists.feature +13 -5
  8. data/features/exit_status.feature +0 -1
  9. data/features/reporting.feature +0 -3
  10. data/features/split_testing.feature +29 -0
  11. data/features/step_definitions/steps.rb +1 -1
  12. data/features/tags.feature +0 -1
  13. data/lib/chemistrykit/cli/cli.rb +10 -15
  14. data/lib/chemistrykit/config/basic_auth.rb +37 -0
  15. data/lib/chemistrykit/config/split_testing.rb +26 -0
  16. data/lib/chemistrykit/configuration.rb +15 -4
  17. data/lib/chemistrykit/reporting/html_report_assembler.rb +40 -2
  18. data/lib/chemistrykit/rspec/html_formatter.rb +5 -0
  19. data/lib/chemistrykit/split_testing/optimizely_provider.rb +21 -0
  20. data/lib/chemistrykit/split_testing/provider_factory.rb +18 -0
  21. data/report/index.html +81 -1
  22. data/report/sass/app.scss +54 -2
  23. data/report/stylesheets/app.css +820 -116
  24. data/spec/integration/lib/chemistrykit/split_testing/provider_factory_spec.rb +15 -0
  25. data/spec/spec_helper.rb +0 -6
  26. data/spec/support/config.yaml +8 -0
  27. data/spec/unit/lib/chemistrykit/catalyst_spec.rb +1 -0
  28. data/spec/unit/lib/chemistrykit/cli/helpers/formula_loader_spec.rb +1 -0
  29. data/spec/unit/lib/chemistrykit/config/basic_auth_spec.rb +76 -0
  30. data/spec/unit/lib/chemistrykit/config/split_testing_spec.rb +31 -0
  31. data/spec/unit/lib/chemistrykit/configuration_spec.rb +30 -0
  32. data/spec/unit/lib/chemistrykit/formula/base_spec.rb +1 -0
  33. data/spec/unit/lib/chemistrykit/split_testing/optimizely_provider_spec.rb +42 -0
  34. data/spec/unit/lib/chemistrykit/split_testing/provider_factory_spec.rb +22 -0
  35. metadata +21 -5
@@ -0,0 +1,21 @@
1
+ # Encoding: utf-8
2
+
3
+ module ChemistryKit
4
+ module SplitTesting
5
+ class OptimizelyProvider
6
+
7
+ attr_reader :config
8
+
9
+ def initialize(config)
10
+ @config = config
11
+ end
12
+
13
+ def split(driver)
14
+ driver.get config.base_url
15
+ driver.manage.add_cookie(name: 'optimizelyOptOut', value: config.opt_out?.to_s)
16
+ driver.navigate.refresh
17
+ end
18
+
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,18 @@
1
+ # Encoding: utf-8
2
+
3
+ require 'chemistrykit/split_testing/optimizely_provider'
4
+
5
+ module ChemistryKit
6
+ module SplitTesting
7
+ class ProviderFactory
8
+ def self.build(config)
9
+ case config.provider
10
+ when 'optimizely'
11
+ ChemistryKit::SplitTesting::OptimizelyProvider.new(config)
12
+ else
13
+ raise ArgumentError.new "The provider: \"#{config.provider}\" is unknown!"
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -25,9 +25,66 @@
25
25
  <div class="report">
26
26
  <div class="summary">
27
27
  <div class="row status failing">
28
- <div class="large-12 columns">
28
+
29
+ <!-- mods start -->
30
+ <div class="large-9 columns">
29
31
  <h1><i class="icon-ok-sign"></i> Brew Failing</h1>
30
32
  </div>
33
+ <div class="large-3 columns">
34
+
35
+ <!-- successes -->
36
+ <div class="row switch-row top-row">
37
+ <div class="large-6 columns switch-label">
38
+ Passing
39
+ </div>
40
+ <div class="large-6 columns">
41
+ <div class="passing-switch">
42
+ <input id="show-success" name="switch-show-success" type="radio" checked>
43
+ <label for="show-success" onclick="togglePassing();">Hide</label>
44
+ <input id="show-success1" name="switch-show-success" type="radio">
45
+ <label for="show-success1" onclick="togglePassing();">Show</label>
46
+ <span></span>
47
+ </div>
48
+ </div>
49
+ </div>
50
+
51
+
52
+ <!-- failures -->
53
+ <div class="row switch-row">
54
+ <div class="large-6 columns switch-label">
55
+ Failing
56
+ </div>
57
+ <div class="large-6 columns">
58
+ <div class="failing-switch">
59
+ <input id="show-failures" name="switch-show-failures" type="radio" checked>
60
+ <label for="show-failures" onclick="toggleFailing();">Hide</label>
61
+ <input id="show-failures1" name="switch-show-failures" type="radio">
62
+ <label for="show-failures1" onclick="toggleFailing();">Show</label>
63
+ <span></span>
64
+ </div>
65
+ </div>
66
+ </div>
67
+
68
+ <!-- pendings -->
69
+
70
+ <div class="row switch-row">
71
+ <div class="large-6 columns switch-label">
72
+ Pending
73
+ </div>
74
+ <div class="large-6 columns">
75
+ <div class="pending-switch">
76
+ <input id="show-pending" name="switch-show-pending" type="radio" checked>
77
+ <label for="show-pending" onclick="togglePending();">Hide</label>
78
+ <input id="show-pending1" name="switch-show-pending" type="radio">
79
+ <label for="show-pending1" onclick="togglePending();">Show</label>
80
+ <span></span>
81
+ </div>
82
+ </div>
83
+ </div>
84
+
85
+ <!-- Modes end -->
86
+
87
+ </div>
31
88
  </div>
32
89
  <div class="row details">
33
90
  <div class="large-12 columns">
@@ -209,5 +266,28 @@
209
266
  <script>
210
267
  $(document).foundation();
211
268
  </script>
269
+
270
+
271
+
272
+ <script>
273
+ function togglePassing() {
274
+ $('.example.passing').toggle();
275
+ $('.example-group.passing').toggle();
276
+ }
277
+
278
+ function toggleFailing() {
279
+ $('.example.failing').toggle();
280
+ $('.example-group.failing').toggle();
281
+ }
282
+
283
+ function togglePending() {
284
+ $('.example.pending').toggle();
285
+ $('.example-group.pending').toggle();
286
+ }
287
+ </script>
288
+
289
+
290
+
291
+
212
292
  </body>
213
293
  </html>
@@ -48,7 +48,7 @@
48
48
  // @import "foundation/components/progress-bars";
49
49
  // @import "foundation/components/side-nav";
50
50
  // @import "foundation/components/sub-nav";
51
- // @import "foundation/components/switch";
51
+ @import "foundation/components/switch";
52
52
  // @import "foundation/components/magellan";
53
53
  // @import "foundation/components/tables";
54
54
  // @import "foundation/components/thumbs";
@@ -60,6 +60,8 @@ $darker-green: #83ae2c;
60
60
  $darkest-green: #659700;
61
61
  $light-red: #fc9b71;
62
62
 
63
+ $light-yellow: #fcdf71;
64
+
63
65
  /* Ruby code, style similar to vibrant ink */
64
66
  .ruby {
65
67
 
@@ -131,7 +133,7 @@ $light-red: #fc9b71;
131
133
  h1, h2, h3 {
132
134
  color: $secondary-color;
133
135
  }
134
- background-color: #fcdf71;
136
+ background-color: $light-yellow;
135
137
  }
136
138
 
137
139
  .pending-color {
@@ -569,3 +571,53 @@ $light-red: #fc9b71;
569
571
  }
570
572
 
571
573
 
574
+ $transition-speed: $switch-paddle-transition-speed;
575
+
576
+ $transition-ease: $switch-paddle-transition-ease;
577
+
578
+ $height: $switch-height-tny;
579
+
580
+ $font-size: $switch-font-size-tny;
581
+
582
+ $line-height: 2.3em;
583
+
584
+ $paddle-bg: $switch-paddle-bg;
585
+
586
+ $positive-color: $switch-positive-color;
587
+
588
+ $negative-color: $switch-negative-color;
589
+
590
+ $radius: true;
591
+
592
+ $base-style: true;
593
+
594
+
595
+ .switch-row {
596
+ margin-bottom: 0em;
597
+ }
598
+
599
+ .top-row{
600
+ padding-top: 1.5em;
601
+ }
602
+
603
+ .passing-switch {
604
+ @include switch($transition-speed, $transition-ease, $height, $font-size, $line-height, $paddle-bg, $success-color, $light-green, $radius, $base-style);
605
+ margin-bottom: 0em;
606
+ }
607
+
608
+ .failing-switch {
609
+ @include switch($transition-speed, $transition-ease, $height, $font-size, $line-height, $paddle-bg, $alert-color, $light-red, $radius, $base-style);
610
+ margin-bottom: 0em;
611
+ }
612
+
613
+ .pending-switch {
614
+ @include switch($transition-speed, $transition-ease, $height, $font-size, $line-height, $paddle-bg, $secondary-color, $light-yellow, $radius, $base-style);
615
+ margin-bottom: 0em;
616
+ }
617
+
618
+ .switch-label {
619
+ text-align: right;
620
+ font-weight: bold;
621
+ font-size: .8em;
622
+ padding-top: 5px;
623
+ }
@@ -3017,8 +3017,247 @@ blockquote p {
3017
3017
  border-top: none;
3018
3018
  }
3019
3019
 
3020
+ /* Foundation Switches */
3021
+ @media only screen {
3022
+ /* line 234, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3023
+ div.switch {
3024
+ position: relative;
3025
+ width: 100%;
3026
+ padding: 0;
3027
+ display: block;
3028
+ overflow: hidden;
3029
+ border-style: solid;
3030
+ border-width: 1px;
3031
+ margin-bottom: 1.25em;
3032
+ -webkit-animation: webkitSiblingBugfix infinite 1s;
3033
+ height: 36px;
3034
+ background: white;
3035
+ border-color: #cccccc;
3036
+ }
3037
+ /* line 59, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3038
+ div.switch label {
3039
+ position: relative;
3040
+ left: 0;
3041
+ z-index: 2;
3042
+ float: left;
3043
+ width: 50%;
3044
+ height: 100%;
3045
+ margin: 0;
3046
+ font-weight: bold;
3047
+ text-align: left;
3048
+ -webkit-transition: all 0.1s ease-out;
3049
+ -moz-transition: all 0.1s ease-out;
3050
+ transition: all 0.1s ease-out;
3051
+ }
3052
+ /* line 76, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3053
+ div.switch input {
3054
+ position: absolute;
3055
+ z-index: 3;
3056
+ opacity: 0;
3057
+ width: 100%;
3058
+ height: 100%;
3059
+ -moz-appearance: none;
3060
+ }
3061
+ /* line 86, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3062
+ div.switch input:hover, div.switch input:focus {
3063
+ cursor: pointer;
3064
+ }
3065
+ /* line 92, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3066
+ div.switch span:last-child {
3067
+ position: absolute;
3068
+ top: -1px;
3069
+ left: -1px;
3070
+ z-index: 1;
3071
+ display: block;
3072
+ padding: 0;
3073
+ border-width: 1px;
3074
+ border-style: solid;
3075
+ -webkit-transition: all 0.1s ease-out;
3076
+ -moz-transition: all 0.1s ease-out;
3077
+ transition: all 0.1s ease-out;
3078
+ }
3079
+ /* line 107, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3080
+ div.switch input:not(:checked) + label {
3081
+ opacity: 0;
3082
+ }
3083
+ /* line 110, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3084
+ div.switch input:checked {
3085
+ display: none !important;
3086
+ }
3087
+ /* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3088
+ div.switch input {
3089
+ left: 0;
3090
+ display: block !important;
3091
+ }
3092
+ /* line 115, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3093
+ div.switch input:first-of-type + label,
3094
+ div.switch input:first-of-type + span + label {
3095
+ left: -50%;
3096
+ }
3097
+ /* line 117, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3098
+ div.switch input:first-of-type:checked + label,
3099
+ div.switch input:first-of-type:checked + span + label {
3100
+ left: 0%;
3101
+ }
3102
+ /* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3103
+ div.switch input:last-of-type + label,
3104
+ div.switch input:last-of-type + span + label {
3105
+ right: -50%;
3106
+ left: auto;
3107
+ text-align: right;
3108
+ }
3109
+ /* line 123, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3110
+ div.switch input:last-of-type:checked + label,
3111
+ div.switch input:last-of-type:checked + span + label {
3112
+ right: 0%;
3113
+ left: auto;
3114
+ }
3115
+ /* line 126, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3116
+ div.switch span.custom {
3117
+ display: none !important;
3118
+ }
3119
+ /* line 132, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3120
+ form.custom div.switch .hidden-field {
3121
+ margin-left: auto;
3122
+ position: absolute;
3123
+ visibility: visible;
3124
+ }
3125
+ /* line 144, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3126
+ div.switch label {
3127
+ padding: 0 0.375em;
3128
+ line-height: 2.3em;
3129
+ font-size: 0.875em;
3130
+ }
3131
+ /* line 152, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3132
+ div.switch input:first-of-type:checked ~ span:last-child {
3133
+ left: 100%;
3134
+ margin-left: -2.1875em;
3135
+ }
3136
+ /* line 158, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3137
+ div.switch span:last-child {
3138
+ width: 2.25em;
3139
+ height: 2.25em;
3140
+ }
3141
+ /* line 172, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3142
+ div.switch span:last-child {
3143
+ border-color: #b3b3b3;
3144
+ background: white;
3145
+ background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%);
3146
+ background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%);
3147
+ background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
3148
+ -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #ddff97, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke;
3149
+ box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #ddff97, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke;
3150
+ }
3151
+ /* line 196, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3152
+ div.switch:hover span:last-child, div.switch:focus span:last-child {
3153
+ background: white;
3154
+ background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%);
3155
+ background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%);
3156
+ background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
3157
+ }
3158
+ /* line 206, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3159
+ div.switch:active {
3160
+ background: transparent;
3161
+ }
3162
+ /* line 238, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3163
+ div.switch.large {
3164
+ height: 44px;
3165
+ }
3166
+ /* line 144, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3167
+ div.switch.large label {
3168
+ padding: 0 0.375em;
3169
+ line-height: 2.3em;
3170
+ font-size: 1.0625em;
3171
+ }
3172
+ /* line 152, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3173
+ div.switch.large input:first-of-type:checked ~ span:last-child {
3174
+ left: 100%;
3175
+ margin-left: -2.6875em;
3176
+ }
3177
+ /* line 158, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3178
+ div.switch.large span:last-child {
3179
+ width: 2.75em;
3180
+ height: 2.75em;
3181
+ }
3182
+ /* line 241, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3183
+ div.switch.small {
3184
+ height: 28px;
3185
+ }
3186
+ /* line 144, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3187
+ div.switch.small label {
3188
+ padding: 0 0.375em;
3189
+ line-height: 2.1em;
3190
+ font-size: 0.75em;
3191
+ }
3192
+ /* line 152, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3193
+ div.switch.small input:first-of-type:checked ~ span:last-child {
3194
+ left: 100%;
3195
+ margin-left: -1.6875em;
3196
+ }
3197
+ /* line 158, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3198
+ div.switch.small span:last-child {
3199
+ width: 1.75em;
3200
+ height: 1.75em;
3201
+ }
3202
+ /* line 244, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3203
+ div.switch.tiny {
3204
+ height: 22px;
3205
+ }
3206
+ /* line 144, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3207
+ div.switch.tiny label {
3208
+ padding: 0 0.375em;
3209
+ line-height: 1.9em;
3210
+ font-size: 0.6875em;
3211
+ }
3212
+ /* line 152, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3213
+ div.switch.tiny input:first-of-type:checked ~ span:last-child {
3214
+ left: 100%;
3215
+ margin-left: -1.3125em;
3216
+ }
3217
+ /* line 158, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3218
+ div.switch.tiny span:last-child {
3219
+ width: 1.375em;
3220
+ height: 1.375em;
3221
+ }
3222
+ /* line 247, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3223
+ div.switch.radius {
3224
+ -webkit-border-radius: 4px;
3225
+ border-radius: 4px;
3226
+ }
3227
+ /* line 248, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3228
+ div.switch.radius span:last-child {
3229
+ -webkit-border-radius: 3px;
3230
+ border-radius: 3px;
3231
+ }
3232
+ /* line 252, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3233
+ div.switch.round {
3234
+ -webkit-border-radius: 1000px;
3235
+ border-radius: 1000px;
3236
+ }
3237
+ /* line 253, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3238
+ div.switch.round span:last-child {
3239
+ -webkit-border-radius: 999px;
3240
+ border-radius: 999px;
3241
+ }
3242
+ /* line 254, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3243
+ div.switch.round label {
3244
+ padding: 0 0.5625em;
3245
+ }
3246
+
3247
+ @-webkit-keyframes webkitSiblingBugfix {
3248
+ /* line 259, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3249
+ from {
3250
+ position: relative;
3251
+ }
3252
+
3253
+ /* line 259, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3254
+ to {
3255
+ position: relative;
3256
+ }
3257
+ }
3258
+ }
3020
3259
  /* Ruby code, style similar to vibrant ink */
3021
- /* line 64, ../sass/app.scss */
3260
+ /* line 66, ../sass/app.scss */
3022
3261
  .ruby {
3023
3262
  font-size: 12px;
3024
3263
  font-family: monospace;
@@ -3027,107 +3266,107 @@ blockquote p {
3027
3266
  padding: 0.2em 0 0.3em 0;
3028
3267
  }
3029
3268
 
3030
- /* line 74, ../sass/app.scss */
3269
+ /* line 76, ../sass/app.scss */
3031
3270
  code {
3032
3271
  color: #eee;
3033
3272
  }
3034
3273
 
3035
- /* line 78, ../sass/app.scss */
3274
+ /* line 80, ../sass/app.scss */
3036
3275
  .ruby .keyword {
3037
3276
  color: #FF6600;
3038
3277
  }
3039
3278
 
3040
- /* line 79, ../sass/app.scss */
3279
+ /* line 81, ../sass/app.scss */
3041
3280
  .ruby .constant {
3042
3281
  color: #339999;
3043
3282
  }
3044
3283
 
3045
- /* line 80, ../sass/app.scss */
3284
+ /* line 82, ../sass/app.scss */
3046
3285
  .ruby .attribute {
3047
3286
  color: white;
3048
3287
  }
3049
3288
 
3050
- /* line 81, ../sass/app.scss */
3289
+ /* line 83, ../sass/app.scss */
3051
3290
  .ruby .global {
3052
3291
  color: white;
3053
3292
  }
3054
3293
 
3055
- /* line 82, ../sass/app.scss */
3294
+ /* line 84, ../sass/app.scss */
3056
3295
  .ruby .module {
3057
3296
  color: white;
3058
3297
  }
3059
3298
 
3060
- /* line 83, ../sass/app.scss */
3299
+ /* line 85, ../sass/app.scss */
3061
3300
  .ruby .class {
3062
3301
  color: white;
3063
3302
  }
3064
3303
 
3065
- /* line 84, ../sass/app.scss */
3304
+ /* line 86, ../sass/app.scss */
3066
3305
  .ruby .string {
3067
3306
  color: #c9f76f;
3068
3307
  }
3069
3308
 
3070
- /* line 85, ../sass/app.scss */
3309
+ /* line 87, ../sass/app.scss */
3071
3310
  .ruby .ident {
3072
3311
  color: white;
3073
3312
  }
3074
3313
 
3075
- /* line 86, ../sass/app.scss */
3314
+ /* line 88, ../sass/app.scss */
3076
3315
  .ruby .method {
3077
3316
  color: #FFCC00;
3078
3317
  }
3079
3318
 
3080
- /* line 87, ../sass/app.scss */
3319
+ /* line 89, ../sass/app.scss */
3081
3320
  .ruby .number {
3082
3321
  color: white;
3083
3322
  }
3084
3323
 
3085
- /* line 88, ../sass/app.scss */
3324
+ /* line 90, ../sass/app.scss */
3086
3325
  .ruby .char {
3087
3326
  color: white;
3088
3327
  }
3089
3328
 
3090
- /* line 89, ../sass/app.scss */
3329
+ /* line 91, ../sass/app.scss */
3091
3330
  .ruby .comment {
3092
3331
  color: #9933CC;
3093
3332
  }
3094
3333
 
3095
- /* line 90, ../sass/app.scss */
3334
+ /* line 92, ../sass/app.scss */
3096
3335
  .ruby .symbol {
3097
3336
  color: white;
3098
3337
  }
3099
3338
 
3100
- /* line 91, ../sass/app.scss */
3339
+ /* line 93, ../sass/app.scss */
3101
3340
  .ruby .regex {
3102
3341
  color: #44B4CC;
3103
3342
  }
3104
3343
 
3105
- /* line 92, ../sass/app.scss */
3344
+ /* line 94, ../sass/app.scss */
3106
3345
  .ruby .punct {
3107
3346
  color: white;
3108
3347
  }
3109
3348
 
3110
- /* line 93, ../sass/app.scss */
3349
+ /* line 95, ../sass/app.scss */
3111
3350
  .ruby .escape {
3112
3351
  color: white;
3113
3352
  }
3114
3353
 
3115
- /* line 94, ../sass/app.scss */
3354
+ /* line 96, ../sass/app.scss */
3116
3355
  .ruby .interp {
3117
3356
  color: white;
3118
3357
  }
3119
3358
 
3120
- /* line 95, ../sass/app.scss */
3359
+ /* line 97, ../sass/app.scss */
3121
3360
  .ruby .expr {
3122
3361
  color: white;
3123
3362
  }
3124
3363
 
3125
- /* line 97, ../sass/app.scss */
3364
+ /* line 99, ../sass/app.scss */
3126
3365
  .ruby .offending {
3127
3366
  background-color: #666;
3128
3367
  }
3129
3368
 
3130
- /* line 98, ../sass/app.scss */
3369
+ /* line 100, ../sass/app.scss */
3131
3370
  .ruby .linenum {
3132
3371
  width: 75px;
3133
3372
  padding: 0.2em 1em 0.2em 1em;
@@ -3135,61 +3374,61 @@ code {
3135
3374
  background-color: #222;
3136
3375
  }
3137
3376
 
3138
- /* line 105, ../sass/app.scss */
3377
+ /* line 107, ../sass/app.scss */
3139
3378
  .passing {
3140
3379
  border: 2px solid #659700;
3141
3380
  background-color: #c9f76f;
3142
3381
  }
3143
- /* line 107, ../sass/app.scss */
3382
+ /* line 109, ../sass/app.scss */
3144
3383
  .passing h1, .passing h2, .passing h3 {
3145
3384
  color: #659700;
3146
3385
  }
3147
3386
 
3148
- /* line 113, ../sass/app.scss */
3387
+ /* line 115, ../sass/app.scss */
3149
3388
  .passing-color {
3150
3389
  color: #659700;
3151
3390
  }
3152
3391
 
3153
- /* line 117, ../sass/app.scss */
3392
+ /* line 119, ../sass/app.scss */
3154
3393
  .failing {
3155
3394
  border: 2px solid #ff4c00;
3156
3395
  background-color: #fc9b71;
3157
3396
  }
3158
- /* line 119, ../sass/app.scss */
3397
+ /* line 121, ../sass/app.scss */
3159
3398
  .failing h1, .failing h2, .failing h3 {
3160
3399
  color: #ff4c00;
3161
3400
  }
3162
3401
 
3163
- /* line 125, ../sass/app.scss */
3402
+ /* line 127, ../sass/app.scss */
3164
3403
  .failing-color {
3165
3404
  color: #ff4c00;
3166
3405
  }
3167
3406
 
3168
- /* line 129, ../sass/app.scss */
3407
+ /* line 131, ../sass/app.scss */
3169
3408
  .pending {
3170
3409
  border: 2px solid #ffca00;
3171
3410
  background-color: #fcdf71;
3172
3411
  }
3173
- /* line 131, ../sass/app.scss */
3412
+ /* line 133, ../sass/app.scss */
3174
3413
  .pending h1, .pending h2, .pending h3 {
3175
3414
  color: #ffca00;
3176
3415
  }
3177
3416
 
3178
- /* line 137, ../sass/app.scss */
3417
+ /* line 139, ../sass/app.scss */
3179
3418
  .pending-color {
3180
3419
  color: #ffca00;
3181
3420
  }
3182
3421
 
3183
- /* line 141, ../sass/app.scss */
3422
+ /* line 143, ../sass/app.scss */
3184
3423
  .reaction-color {
3185
3424
  color: #2712ad;
3186
3425
  }
3187
3426
 
3188
- /* line 146, ../sass/app.scss */
3427
+ /* line 148, ../sass/app.scss */
3189
3428
  .summary .row {
3190
3429
  margin-bottom: 1em;
3191
3430
  }
3192
- /* line 149, ../sass/app.scss */
3431
+ /* line 151, ../sass/app.scss */
3193
3432
  .summary .status {
3194
3433
  border-width: 10px;
3195
3434
  -webkit-border-radius: 10px;
@@ -3198,13 +3437,13 @@ code {
3198
3437
  -o-border-radius: 10px;
3199
3438
  border-radius: 10px;
3200
3439
  }
3201
- /* line 152, ../sass/app.scss */
3440
+ /* line 154, ../sass/app.scss */
3202
3441
  .summary .status h1 {
3203
3442
  font-size: 5em;
3204
3443
  margin-bottom: 0.25em;
3205
3444
  padding-left: .2em;
3206
3445
  }
3207
- /* line 158, ../sass/app.scss */
3446
+ /* line 160, ../sass/app.scss */
3208
3447
  .summary .details {
3209
3448
  border: 2px solid #DDD;
3210
3449
  -webkit-border-radius: 10px;
@@ -3213,22 +3452,22 @@ code {
3213
3452
  -o-border-radius: 10px;
3214
3453
  border-radius: 10px;
3215
3454
  }
3216
- /* line 161, ../sass/app.scss */
3455
+ /* line 163, ../sass/app.scss */
3217
3456
  .summary .details li {
3218
3457
  text-align: center;
3219
3458
  padding-top: 1.5em;
3220
3459
  }
3221
- /* line 164, ../sass/app.scss */
3460
+ /* line 166, ../sass/app.scss */
3222
3461
  .summary .details li i {
3223
3462
  font-size: 3em;
3224
3463
  }
3225
- /* line 167, ../sass/app.scss */
3464
+ /* line 169, ../sass/app.scss */
3226
3465
  .summary .details li p {
3227
3466
  font-weight: bold;
3228
3467
  margin-bottom: 0em;
3229
3468
  }
3230
3469
 
3231
- /* line 175, ../sass/app.scss */
3470
+ /* line 177, ../sass/app.scss */
3232
3471
  .example-group {
3233
3472
  -webkit-border-radius: 10px;
3234
3473
  -moz-border-radius: 10px;
@@ -3238,7 +3477,7 @@ code {
3238
3477
  margin-bottom: 1em;
3239
3478
  }
3240
3479
 
3241
- /* line 181, ../sass/app.scss */
3480
+ /* line 183, ../sass/app.scss */
3242
3481
  .row .example {
3243
3482
  -webkit-border-radius: 4px;
3244
3483
  -moz-border-radius: 4px;
@@ -3248,32 +3487,32 @@ code {
3248
3487
  margin-bottom: .5em;
3249
3488
  }
3250
3489
 
3251
- /* line 187, ../sass/app.scss */
3490
+ /* line 189, ../sass/app.scss */
3252
3491
  .examples {
3253
3492
  padding-left: .5em;
3254
3493
  padding-right: .5em;
3255
3494
  }
3256
3495
 
3257
- /* line 192, ../sass/app.scss */
3496
+ /* line 194, ../sass/app.scss */
3258
3497
  .example-heading {
3259
3498
  font-size: 1.2em;
3260
3499
  }
3261
- /* line 193, ../sass/app.scss */
3500
+ /* line 195, ../sass/app.scss */
3262
3501
  .example-heading p {
3263
3502
  font-weight: bold;
3264
3503
  margin-bottom: 0em;
3265
3504
  }
3266
3505
 
3267
- /* line 201, ../sass/app.scss */
3506
+ /* line 203, ../sass/app.scss */
3268
3507
  .example-body {
3269
3508
  padding-top: 1em;
3270
3509
  }
3271
- /* line 203, ../sass/app.scss */
3510
+ /* line 205, ../sass/app.scss */
3272
3511
  .example-body .row {
3273
3512
  margin-bottom: 1em;
3274
3513
  }
3275
3514
 
3276
- /* line 210, ../sass/app.scss */
3515
+ /* line 212, ../sass/app.scss */
3277
3516
  .highlight {
3278
3517
  background: #2B2B2B;
3279
3518
  color: #E6E1DC;
@@ -3283,354 +3522,819 @@ code {
3283
3522
  margin-bottom: 1em;
3284
3523
  }
3285
3524
 
3286
- /* line 220, ../sass/app.scss */
3525
+ /* line 222, ../sass/app.scss */
3287
3526
  .highlight .hll {
3288
3527
  background-color: #ffc;
3289
3528
  }
3290
3529
 
3291
- /* line 225, ../sass/app.scss */
3530
+ /* line 227, ../sass/app.scss */
3292
3531
  .highlight .c {
3293
3532
  color: #BC9458;
3294
3533
  font-style: italic;
3295
3534
  }
3296
3535
 
3297
- /* line 231, ../sass/app.scss */
3536
+ /* line 233, ../sass/app.scss */
3298
3537
  .highlight .err {
3299
3538
  color: #E6E1DC;
3300
3539
  }
3301
3540
 
3302
- /* line 236, ../sass/app.scss */
3541
+ /* line 238, ../sass/app.scss */
3303
3542
  .highlight .g {
3304
3543
  color: #E6E1DC;
3305
3544
  }
3306
3545
 
3307
- /* line 241, ../sass/app.scss */
3546
+ /* line 243, ../sass/app.scss */
3308
3547
  .highlight .k {
3309
3548
  color: #CC7833;
3310
3549
  }
3311
3550
 
3312
- /* line 246, ../sass/app.scss */
3551
+ /* line 248, ../sass/app.scss */
3313
3552
  .highlight .l {
3314
3553
  color: #E6E1DC;
3315
3554
  }
3316
3555
 
3317
- /* line 251, ../sass/app.scss */
3556
+ /* line 253, ../sass/app.scss */
3318
3557
  .highlight .n {
3319
3558
  color: #E6E1DC;
3320
3559
  }
3321
3560
 
3322
- /* line 256, ../sass/app.scss */
3561
+ /* line 258, ../sass/app.scss */
3323
3562
  .highlight .o {
3324
3563
  color: #E6E1DC;
3325
3564
  }
3326
3565
 
3327
- /* line 261, ../sass/app.scss */
3566
+ /* line 263, ../sass/app.scss */
3328
3567
  .highlight .x {
3329
3568
  color: #E6E1DC;
3330
3569
  }
3331
3570
 
3332
- /* line 266, ../sass/app.scss */
3571
+ /* line 268, ../sass/app.scss */
3333
3572
  .highlight .p {
3334
3573
  color: #E6E1DC;
3335
3574
  }
3336
3575
 
3337
- /* line 271, ../sass/app.scss */
3576
+ /* line 273, ../sass/app.scss */
3338
3577
  .highlight .cm {
3339
3578
  color: #BC9458;
3340
3579
  font-style: italic;
3341
3580
  }
3342
3581
 
3343
- /* line 277, ../sass/app.scss */
3582
+ /* line 279, ../sass/app.scss */
3344
3583
  .highlight .cp {
3345
3584
  color: #CC7833;
3346
3585
  }
3347
3586
 
3348
- /* line 282, ../sass/app.scss */
3587
+ /* line 284, ../sass/app.scss */
3349
3588
  .highlight .c1 {
3350
3589
  color: #BC9458;
3351
3590
  font-style: italic;
3352
3591
  }
3353
3592
 
3354
- /* line 288, ../sass/app.scss */
3593
+ /* line 290, ../sass/app.scss */
3355
3594
  .highlight .cs {
3356
3595
  color: #BC9458;
3357
3596
  font-style: italic;
3358
3597
  }
3359
3598
 
3360
- /* line 294, ../sass/app.scss */
3599
+ /* line 296, ../sass/app.scss */
3361
3600
  .highlight .gd {
3362
3601
  color: #E6E1DC;
3363
3602
  background-color: #600;
3364
3603
  }
3365
3604
 
3366
- /* line 300, ../sass/app.scss */
3605
+ /* line 302, ../sass/app.scss */
3367
3606
  .highlight .ge {
3368
3607
  color: #E6E1DC;
3369
3608
  }
3370
3609
 
3371
- /* line 305, ../sass/app.scss */
3610
+ /* line 307, ../sass/app.scss */
3372
3611
  .highlight .gr {
3373
3612
  color: #FFF;
3374
3613
  background-color: #900;
3375
3614
  }
3376
3615
 
3377
- /* line 311, ../sass/app.scss */
3616
+ /* line 313, ../sass/app.scss */
3378
3617
  .highlight .gh {
3379
3618
  color: #FFF;
3380
3619
  }
3381
3620
 
3382
- /* line 316, ../sass/app.scss */
3621
+ /* line 318, ../sass/app.scss */
3383
3622
  .highlight .gi {
3384
3623
  color: #E6E1DC;
3385
3624
  background-color: #144212;
3386
3625
  }
3387
3626
 
3388
- /* line 322, ../sass/app.scss */
3627
+ /* line 324, ../sass/app.scss */
3389
3628
  .highlight .go {
3390
3629
  color: #E6E1DC;
3391
3630
  }
3392
3631
 
3393
- /* line 327, ../sass/app.scss */
3632
+ /* line 329, ../sass/app.scss */
3394
3633
  .highlight .gp {
3395
3634
  color: #E6E1DC;
3396
3635
  }
3397
3636
 
3398
- /* line 332, ../sass/app.scss */
3637
+ /* line 334, ../sass/app.scss */
3399
3638
  .highlight .gs {
3400
3639
  color: #E6E1DC;
3401
3640
  }
3402
3641
 
3403
- /* line 337, ../sass/app.scss */
3642
+ /* line 339, ../sass/app.scss */
3404
3643
  .highlight .gu {
3405
3644
  color: #FFF;
3406
3645
  }
3407
3646
 
3408
- /* line 342, ../sass/app.scss */
3647
+ /* line 344, ../sass/app.scss */
3409
3648
  .highlight .gt {
3410
3649
  color: #E6E1DC;
3411
3650
  }
3412
3651
 
3413
- /* line 347, ../sass/app.scss */
3652
+ /* line 349, ../sass/app.scss */
3414
3653
  .highlight .kc {
3415
3654
  color: #CC7833;
3416
3655
  }
3417
3656
 
3418
- /* line 352, ../sass/app.scss */
3657
+ /* line 354, ../sass/app.scss */
3419
3658
  .highlight .kd {
3420
3659
  color: #CC7833;
3421
3660
  }
3422
3661
 
3423
- /* line 357, ../sass/app.scss */
3662
+ /* line 359, ../sass/app.scss */
3424
3663
  .highlight .kn {
3425
3664
  color: #CC7833;
3426
3665
  }
3427
3666
 
3428
- /* line 362, ../sass/app.scss */
3667
+ /* line 364, ../sass/app.scss */
3429
3668
  .highlight .kp {
3430
3669
  color: #CC7833;
3431
3670
  }
3432
3671
 
3433
- /* line 367, ../sass/app.scss */
3672
+ /* line 369, ../sass/app.scss */
3434
3673
  .highlight .kr {
3435
3674
  color: #CC7833;
3436
3675
  }
3437
3676
 
3438
- /* line 372, ../sass/app.scss */
3677
+ /* line 374, ../sass/app.scss */
3439
3678
  .highlight .kt {
3440
3679
  color: #DA4939;
3441
3680
  }
3442
3681
 
3443
- /* line 377, ../sass/app.scss */
3682
+ /* line 379, ../sass/app.scss */
3444
3683
  .highlight .ld {
3445
3684
  color: #E6E1DC;
3446
3685
  }
3447
3686
 
3448
- /* line 382, ../sass/app.scss */
3687
+ /* line 384, ../sass/app.scss */
3449
3688
  .highlight .m {
3450
3689
  color: #A5C261;
3451
3690
  }
3452
3691
 
3453
- /* line 387, ../sass/app.scss */
3692
+ /* line 389, ../sass/app.scss */
3454
3693
  .highlight .s {
3455
3694
  color: #A5C261;
3456
3695
  }
3457
3696
 
3458
- /* line 392, ../sass/app.scss */
3697
+ /* line 394, ../sass/app.scss */
3459
3698
  .highlight .na {
3460
3699
  color: #FFC66D;
3461
3700
  }
3462
3701
 
3463
- /* line 397, ../sass/app.scss */
3702
+ /* line 399, ../sass/app.scss */
3464
3703
  .highlight .nb {
3465
3704
  color: #E6E1DC;
3466
3705
  }
3467
3706
 
3468
- /* line 402, ../sass/app.scss */
3707
+ /* line 404, ../sass/app.scss */
3469
3708
  .highlight .nc {
3470
3709
  color: #E6E1DC;
3471
3710
  }
3472
3711
 
3473
- /* line 407, ../sass/app.scss */
3712
+ /* line 409, ../sass/app.scss */
3474
3713
  .highlight .no {
3475
3714
  color: #6D9CBE;
3476
3715
  }
3477
3716
 
3478
- /* line 412, ../sass/app.scss */
3717
+ /* line 414, ../sass/app.scss */
3479
3718
  .highlight .nd {
3480
3719
  color: #E6E1DC;
3481
3720
  }
3482
3721
 
3483
- /* line 417, ../sass/app.scss */
3722
+ /* line 419, ../sass/app.scss */
3484
3723
  .highlight .ni {
3485
3724
  color: #E6E1DC;
3486
3725
  }
3487
3726
 
3488
- /* line 422, ../sass/app.scss */
3727
+ /* line 424, ../sass/app.scss */
3489
3728
  .highlight .ne {
3490
3729
  color: #E6E1DC;
3491
3730
  }
3492
3731
 
3493
- /* line 427, ../sass/app.scss */
3732
+ /* line 429, ../sass/app.scss */
3494
3733
  .highlight .nf {
3495
3734
  color: #FFC66D;
3496
3735
  }
3497
3736
 
3498
- /* line 432, ../sass/app.scss */
3737
+ /* line 434, ../sass/app.scss */
3499
3738
  .highlight .nl {
3500
3739
  color: #E6E1DC;
3501
3740
  }
3502
3741
 
3503
- /* line 437, ../sass/app.scss */
3742
+ /* line 439, ../sass/app.scss */
3504
3743
  .highlight .nn {
3505
3744
  color: #E6E1DC;
3506
3745
  }
3507
3746
 
3508
- /* line 442, ../sass/app.scss */
3747
+ /* line 444, ../sass/app.scss */
3509
3748
  .highlight .nx {
3510
3749
  color: #E6E1DC;
3511
3750
  }
3512
3751
 
3513
- /* line 447, ../sass/app.scss */
3752
+ /* line 449, ../sass/app.scss */
3514
3753
  .highlight .py {
3515
3754
  color: #E6E1DC;
3516
3755
  }
3517
3756
 
3518
- /* line 452, ../sass/app.scss */
3757
+ /* line 454, ../sass/app.scss */
3519
3758
  .highlight .nt {
3520
3759
  color: #CC7833;
3521
3760
  }
3522
3761
 
3523
- /* line 457, ../sass/app.scss */
3762
+ /* line 459, ../sass/app.scss */
3524
3763
  .highlight .nv {
3525
3764
  color: #D0D0FF;
3526
3765
  }
3527
3766
 
3528
- /* line 462, ../sass/app.scss */
3767
+ /* line 464, ../sass/app.scss */
3529
3768
  .highlight .ow {
3530
3769
  color: #E6E1DC;
3531
3770
  }
3532
3771
 
3533
- /* line 467, ../sass/app.scss */
3772
+ /* line 469, ../sass/app.scss */
3534
3773
  .highlight .w {
3535
3774
  color: #E6E1DC;
3536
3775
  }
3537
3776
 
3538
- /* line 472, ../sass/app.scss */
3777
+ /* line 474, ../sass/app.scss */
3539
3778
  .highlight .mf {
3540
3779
  color: #A5C261;
3541
3780
  }
3542
3781
 
3543
- /* line 477, ../sass/app.scss */
3782
+ /* line 479, ../sass/app.scss */
3544
3783
  .highlight .mh {
3545
3784
  color: #A5C261;
3546
3785
  }
3547
3786
 
3548
- /* line 482, ../sass/app.scss */
3787
+ /* line 484, ../sass/app.scss */
3549
3788
  .highlight .mi {
3550
3789
  color: #A5C261;
3551
3790
  }
3552
3791
 
3553
- /* line 487, ../sass/app.scss */
3792
+ /* line 489, ../sass/app.scss */
3554
3793
  .highlight .mo {
3555
3794
  color: #A5C261;
3556
3795
  }
3557
3796
 
3558
- /* line 492, ../sass/app.scss */
3797
+ /* line 494, ../sass/app.scss */
3559
3798
  .highlight .sb {
3560
3799
  color: #A5C261;
3561
3800
  }
3562
3801
 
3563
- /* line 497, ../sass/app.scss */
3802
+ /* line 499, ../sass/app.scss */
3564
3803
  .highlight .sc {
3565
3804
  color: #A5C261;
3566
3805
  }
3567
3806
 
3568
- /* line 502, ../sass/app.scss */
3807
+ /* line 504, ../sass/app.scss */
3569
3808
  .highlight .sd {
3570
3809
  color: #A5C261;
3571
3810
  }
3572
3811
 
3573
- /* line 507, ../sass/app.scss */
3812
+ /* line 509, ../sass/app.scss */
3574
3813
  .highlight .s2 {
3575
3814
  color: #A5C261;
3576
3815
  }
3577
3816
 
3578
- /* line 512, ../sass/app.scss */
3817
+ /* line 514, ../sass/app.scss */
3579
3818
  .highlight .se {
3580
3819
  color: #A5C261;
3581
3820
  }
3582
3821
 
3583
- /* line 517, ../sass/app.scss */
3822
+ /* line 519, ../sass/app.scss */
3584
3823
  .highlight .sh {
3585
3824
  color: #A5C261;
3586
3825
  }
3587
3826
 
3588
- /* line 522, ../sass/app.scss */
3827
+ /* line 524, ../sass/app.scss */
3589
3828
  .highlight .si {
3590
3829
  color: #A5C261;
3591
3830
  }
3592
3831
 
3593
- /* line 527, ../sass/app.scss */
3832
+ /* line 529, ../sass/app.scss */
3594
3833
  .highlight .sx {
3595
3834
  color: #A5C261;
3596
3835
  }
3597
3836
 
3598
- /* line 532, ../sass/app.scss */
3837
+ /* line 534, ../sass/app.scss */
3599
3838
  .highlight .sr {
3600
3839
  color: #A5C261;
3601
3840
  }
3602
3841
 
3603
- /* line 537, ../sass/app.scss */
3842
+ /* line 539, ../sass/app.scss */
3604
3843
  .highlight .s1 {
3605
3844
  color: #A5C261;
3606
3845
  }
3607
3846
 
3608
- /* line 542, ../sass/app.scss */
3847
+ /* line 544, ../sass/app.scss */
3609
3848
  .highlight .ss {
3610
3849
  color: #A5C261;
3611
3850
  }
3612
3851
 
3613
- /* line 547, ../sass/app.scss */
3852
+ /* line 549, ../sass/app.scss */
3614
3853
  .highlight .bp {
3615
3854
  color: #E6E1DC;
3616
3855
  }
3617
3856
 
3618
- /* line 552, ../sass/app.scss */
3857
+ /* line 554, ../sass/app.scss */
3619
3858
  .highlight .vc {
3620
3859
  color: #D0D0FF;
3621
3860
  }
3622
3861
 
3623
- /* line 557, ../sass/app.scss */
3862
+ /* line 559, ../sass/app.scss */
3624
3863
  .highlight .vg {
3625
3864
  color: #D0D0FF;
3626
3865
  }
3627
3866
 
3628
- /* line 562, ../sass/app.scss */
3867
+ /* line 564, ../sass/app.scss */
3629
3868
  .highlight .vi {
3630
3869
  color: #D0D0FF;
3631
3870
  }
3632
3871
 
3633
- /* line 567, ../sass/app.scss */
3872
+ /* line 569, ../sass/app.scss */
3634
3873
  .highlight .il {
3635
3874
  color: #A5C261;
3636
3875
  }
3876
+
3877
+ /* line 595, ../sass/app.scss */
3878
+ .switch-row {
3879
+ margin-bottom: 0em;
3880
+ }
3881
+
3882
+ /* line 599, ../sass/app.scss */
3883
+ .top-row {
3884
+ padding-top: 1.5em;
3885
+ }
3886
+
3887
+ /* line 603, ../sass/app.scss */
3888
+ .passing-switch {
3889
+ position: relative;
3890
+ width: 100%;
3891
+ padding: 0;
3892
+ display: block;
3893
+ overflow: hidden;
3894
+ border-style: solid;
3895
+ border-width: 1px;
3896
+ margin-bottom: 1.25em;
3897
+ -webkit-animation: webkitSiblingBugfix infinite 1s;
3898
+ height: 22px;
3899
+ background: white;
3900
+ border-color: #cccccc;
3901
+ -webkit-border-radius: 4px;
3902
+ border-radius: 4px;
3903
+ margin-bottom: 0em;
3904
+ }
3905
+ /* line 59, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3906
+ .passing-switch label {
3907
+ position: relative;
3908
+ left: 0;
3909
+ z-index: 2;
3910
+ float: left;
3911
+ width: 50%;
3912
+ height: 100%;
3913
+ margin: 0;
3914
+ font-weight: bold;
3915
+ text-align: left;
3916
+ -webkit-transition: all 0.1s ease-out;
3917
+ -moz-transition: all 0.1s ease-out;
3918
+ transition: all 0.1s ease-out;
3919
+ }
3920
+ /* line 76, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3921
+ .passing-switch input {
3922
+ position: absolute;
3923
+ z-index: 3;
3924
+ opacity: 0;
3925
+ width: 100%;
3926
+ height: 100%;
3927
+ -moz-appearance: none;
3928
+ }
3929
+ /* line 86, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3930
+ .passing-switch input:hover, .passing-switch input:focus {
3931
+ cursor: pointer;
3932
+ }
3933
+ /* line 92, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3934
+ .passing-switch span:last-child {
3935
+ position: absolute;
3936
+ top: -1px;
3937
+ left: -1px;
3938
+ z-index: 1;
3939
+ display: block;
3940
+ padding: 0;
3941
+ border-width: 1px;
3942
+ border-style: solid;
3943
+ -webkit-transition: all 0.1s ease-out;
3944
+ -moz-transition: all 0.1s ease-out;
3945
+ transition: all 0.1s ease-out;
3946
+ }
3947
+ /* line 107, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3948
+ .passing-switch input:not(:checked) + label {
3949
+ opacity: 0;
3950
+ }
3951
+ /* line 110, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3952
+ .passing-switch input:checked {
3953
+ display: none !important;
3954
+ }
3955
+ /* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3956
+ .passing-switch input {
3957
+ left: 0;
3958
+ display: block !important;
3959
+ }
3960
+ /* line 115, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3961
+ .passing-switch input:first-of-type + label,
3962
+ .passing-switch input:first-of-type + span + label {
3963
+ left: -50%;
3964
+ }
3965
+ /* line 117, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3966
+ .passing-switch input:first-of-type:checked + label,
3967
+ .passing-switch input:first-of-type:checked + span + label {
3968
+ left: 0%;
3969
+ }
3970
+ /* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3971
+ .passing-switch input:last-of-type + label,
3972
+ .passing-switch input:last-of-type + span + label {
3973
+ right: -50%;
3974
+ left: auto;
3975
+ text-align: right;
3976
+ }
3977
+ /* line 123, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3978
+ .passing-switch input:last-of-type:checked + label,
3979
+ .passing-switch input:last-of-type:checked + span + label {
3980
+ right: 0%;
3981
+ left: auto;
3982
+ }
3983
+ /* line 126, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3984
+ .passing-switch span.custom {
3985
+ display: none !important;
3986
+ }
3987
+ /* line 132, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3988
+ form.custom .passing-switch .hidden-field {
3989
+ margin-left: auto;
3990
+ position: absolute;
3991
+ visibility: visible;
3992
+ }
3993
+ /* line 144, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
3994
+ .passing-switch label {
3995
+ padding: 0 0.375em;
3996
+ line-height: 2.3em;
3997
+ font-size: 0.6875em;
3998
+ }
3999
+ /* line 152, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4000
+ .passing-switch input:first-of-type:checked ~ span:last-child {
4001
+ left: 100%;
4002
+ margin-left: -1.3125em;
4003
+ }
4004
+ /* line 158, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4005
+ .passing-switch span:last-child {
4006
+ width: 1.375em;
4007
+ height: 1.375em;
4008
+ }
4009
+ /* line 172, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4010
+ .passing-switch span:last-child {
4011
+ border-color: #b3b3b3;
4012
+ background: white;
4013
+ background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%);
4014
+ background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%);
4015
+ background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
4016
+ -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #659700, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px #c9f76f;
4017
+ box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #659700, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px #c9f76f;
4018
+ }
4019
+ /* line 196, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4020
+ .passing-switch:hover span:last-child, .passing-switch:focus span:last-child {
4021
+ background: white;
4022
+ background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%);
4023
+ background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%);
4024
+ background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
4025
+ }
4026
+ /* line 206, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4027
+ .passing-switch:active {
4028
+ background: transparent;
4029
+ }
4030
+ /* line 212, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4031
+ .passing-switch span:last-child {
4032
+ -webkit-border-radius: 3px;
4033
+ border-radius: 3px;
4034
+ }
4035
+
4036
+ /* line 608, ../sass/app.scss */
4037
+ .failing-switch {
4038
+ position: relative;
4039
+ width: 100%;
4040
+ padding: 0;
4041
+ display: block;
4042
+ overflow: hidden;
4043
+ border-style: solid;
4044
+ border-width: 1px;
4045
+ margin-bottom: 1.25em;
4046
+ -webkit-animation: webkitSiblingBugfix infinite 1s;
4047
+ height: 22px;
4048
+ background: white;
4049
+ border-color: #cccccc;
4050
+ -webkit-border-radius: 4px;
4051
+ border-radius: 4px;
4052
+ margin-bottom: 0em;
4053
+ }
4054
+ /* line 59, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4055
+ .failing-switch label {
4056
+ position: relative;
4057
+ left: 0;
4058
+ z-index: 2;
4059
+ float: left;
4060
+ width: 50%;
4061
+ height: 100%;
4062
+ margin: 0;
4063
+ font-weight: bold;
4064
+ text-align: left;
4065
+ -webkit-transition: all 0.1s ease-out;
4066
+ -moz-transition: all 0.1s ease-out;
4067
+ transition: all 0.1s ease-out;
4068
+ }
4069
+ /* line 76, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4070
+ .failing-switch input {
4071
+ position: absolute;
4072
+ z-index: 3;
4073
+ opacity: 0;
4074
+ width: 100%;
4075
+ height: 100%;
4076
+ -moz-appearance: none;
4077
+ }
4078
+ /* line 86, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4079
+ .failing-switch input:hover, .failing-switch input:focus {
4080
+ cursor: pointer;
4081
+ }
4082
+ /* line 92, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4083
+ .failing-switch span:last-child {
4084
+ position: absolute;
4085
+ top: -1px;
4086
+ left: -1px;
4087
+ z-index: 1;
4088
+ display: block;
4089
+ padding: 0;
4090
+ border-width: 1px;
4091
+ border-style: solid;
4092
+ -webkit-transition: all 0.1s ease-out;
4093
+ -moz-transition: all 0.1s ease-out;
4094
+ transition: all 0.1s ease-out;
4095
+ }
4096
+ /* line 107, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4097
+ .failing-switch input:not(:checked) + label {
4098
+ opacity: 0;
4099
+ }
4100
+ /* line 110, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4101
+ .failing-switch input:checked {
4102
+ display: none !important;
4103
+ }
4104
+ /* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4105
+ .failing-switch input {
4106
+ left: 0;
4107
+ display: block !important;
4108
+ }
4109
+ /* line 115, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4110
+ .failing-switch input:first-of-type + label,
4111
+ .failing-switch input:first-of-type + span + label {
4112
+ left: -50%;
4113
+ }
4114
+ /* line 117, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4115
+ .failing-switch input:first-of-type:checked + label,
4116
+ .failing-switch input:first-of-type:checked + span + label {
4117
+ left: 0%;
4118
+ }
4119
+ /* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4120
+ .failing-switch input:last-of-type + label,
4121
+ .failing-switch input:last-of-type + span + label {
4122
+ right: -50%;
4123
+ left: auto;
4124
+ text-align: right;
4125
+ }
4126
+ /* line 123, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4127
+ .failing-switch input:last-of-type:checked + label,
4128
+ .failing-switch input:last-of-type:checked + span + label {
4129
+ right: 0%;
4130
+ left: auto;
4131
+ }
4132
+ /* line 126, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4133
+ .failing-switch span.custom {
4134
+ display: none !important;
4135
+ }
4136
+ /* line 132, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4137
+ form.custom .failing-switch .hidden-field {
4138
+ margin-left: auto;
4139
+ position: absolute;
4140
+ visibility: visible;
4141
+ }
4142
+ /* line 144, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4143
+ .failing-switch label {
4144
+ padding: 0 0.375em;
4145
+ line-height: 2.3em;
4146
+ font-size: 0.6875em;
4147
+ }
4148
+ /* line 152, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4149
+ .failing-switch input:first-of-type:checked ~ span:last-child {
4150
+ left: 100%;
4151
+ margin-left: -1.3125em;
4152
+ }
4153
+ /* line 158, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4154
+ .failing-switch span:last-child {
4155
+ width: 1.375em;
4156
+ height: 1.375em;
4157
+ }
4158
+ /* line 172, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4159
+ .failing-switch span:last-child {
4160
+ border-color: #b3b3b3;
4161
+ background: white;
4162
+ background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%);
4163
+ background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%);
4164
+ background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
4165
+ -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #ff4c00, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px #fc9b71;
4166
+ box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #ff4c00, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px #fc9b71;
4167
+ }
4168
+ /* line 196, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4169
+ .failing-switch:hover span:last-child, .failing-switch:focus span:last-child {
4170
+ background: white;
4171
+ background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%);
4172
+ background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%);
4173
+ background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
4174
+ }
4175
+ /* line 206, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4176
+ .failing-switch:active {
4177
+ background: transparent;
4178
+ }
4179
+ /* line 212, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4180
+ .failing-switch span:last-child {
4181
+ -webkit-border-radius: 3px;
4182
+ border-radius: 3px;
4183
+ }
4184
+
4185
+ /* line 613, ../sass/app.scss */
4186
+ .pending-switch {
4187
+ position: relative;
4188
+ width: 100%;
4189
+ padding: 0;
4190
+ display: block;
4191
+ overflow: hidden;
4192
+ border-style: solid;
4193
+ border-width: 1px;
4194
+ margin-bottom: 1.25em;
4195
+ -webkit-animation: webkitSiblingBugfix infinite 1s;
4196
+ height: 22px;
4197
+ background: white;
4198
+ border-color: #cccccc;
4199
+ -webkit-border-radius: 4px;
4200
+ border-radius: 4px;
4201
+ margin-bottom: 0em;
4202
+ }
4203
+ /* line 59, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4204
+ .pending-switch label {
4205
+ position: relative;
4206
+ left: 0;
4207
+ z-index: 2;
4208
+ float: left;
4209
+ width: 50%;
4210
+ height: 100%;
4211
+ margin: 0;
4212
+ font-weight: bold;
4213
+ text-align: left;
4214
+ -webkit-transition: all 0.1s ease-out;
4215
+ -moz-transition: all 0.1s ease-out;
4216
+ transition: all 0.1s ease-out;
4217
+ }
4218
+ /* line 76, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4219
+ .pending-switch input {
4220
+ position: absolute;
4221
+ z-index: 3;
4222
+ opacity: 0;
4223
+ width: 100%;
4224
+ height: 100%;
4225
+ -moz-appearance: none;
4226
+ }
4227
+ /* line 86, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4228
+ .pending-switch input:hover, .pending-switch input:focus {
4229
+ cursor: pointer;
4230
+ }
4231
+ /* line 92, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4232
+ .pending-switch span:last-child {
4233
+ position: absolute;
4234
+ top: -1px;
4235
+ left: -1px;
4236
+ z-index: 1;
4237
+ display: block;
4238
+ padding: 0;
4239
+ border-width: 1px;
4240
+ border-style: solid;
4241
+ -webkit-transition: all 0.1s ease-out;
4242
+ -moz-transition: all 0.1s ease-out;
4243
+ transition: all 0.1s ease-out;
4244
+ }
4245
+ /* line 107, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4246
+ .pending-switch input:not(:checked) + label {
4247
+ opacity: 0;
4248
+ }
4249
+ /* line 110, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4250
+ .pending-switch input:checked {
4251
+ display: none !important;
4252
+ }
4253
+ /* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4254
+ .pending-switch input {
4255
+ left: 0;
4256
+ display: block !important;
4257
+ }
4258
+ /* line 115, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4259
+ .pending-switch input:first-of-type + label,
4260
+ .pending-switch input:first-of-type + span + label {
4261
+ left: -50%;
4262
+ }
4263
+ /* line 117, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4264
+ .pending-switch input:first-of-type:checked + label,
4265
+ .pending-switch input:first-of-type:checked + span + label {
4266
+ left: 0%;
4267
+ }
4268
+ /* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4269
+ .pending-switch input:last-of-type + label,
4270
+ .pending-switch input:last-of-type + span + label {
4271
+ right: -50%;
4272
+ left: auto;
4273
+ text-align: right;
4274
+ }
4275
+ /* line 123, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4276
+ .pending-switch input:last-of-type:checked + label,
4277
+ .pending-switch input:last-of-type:checked + span + label {
4278
+ right: 0%;
4279
+ left: auto;
4280
+ }
4281
+ /* line 126, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4282
+ .pending-switch span.custom {
4283
+ display: none !important;
4284
+ }
4285
+ /* line 132, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4286
+ form.custom .pending-switch .hidden-field {
4287
+ margin-left: auto;
4288
+ position: absolute;
4289
+ visibility: visible;
4290
+ }
4291
+ /* line 144, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4292
+ .pending-switch label {
4293
+ padding: 0 0.375em;
4294
+ line-height: 2.3em;
4295
+ font-size: 0.6875em;
4296
+ }
4297
+ /* line 152, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4298
+ .pending-switch input:first-of-type:checked ~ span:last-child {
4299
+ left: 100%;
4300
+ margin-left: -1.3125em;
4301
+ }
4302
+ /* line 158, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4303
+ .pending-switch span:last-child {
4304
+ width: 1.375em;
4305
+ height: 1.375em;
4306
+ }
4307
+ /* line 172, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4308
+ .pending-switch span:last-child {
4309
+ border-color: #b3b3b3;
4310
+ background: white;
4311
+ background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%);
4312
+ background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%);
4313
+ background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
4314
+ -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #ffca00, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px #fcdf71;
4315
+ box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #ffca00, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px #fcdf71;
4316
+ }
4317
+ /* line 196, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4318
+ .pending-switch:hover span:last-child, .pending-switch:focus span:last-child {
4319
+ background: white;
4320
+ background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%);
4321
+ background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%);
4322
+ background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
4323
+ }
4324
+ /* line 206, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4325
+ .pending-switch:active {
4326
+ background: transparent;
4327
+ }
4328
+ /* line 212, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_switch.scss */
4329
+ .pending-switch span:last-child {
4330
+ -webkit-border-radius: 3px;
4331
+ border-radius: 3px;
4332
+ }
4333
+
4334
+ /* line 618, ../sass/app.scss */
4335
+ .switch-label {
4336
+ text-align: right;
4337
+ font-weight: bold;
4338
+ font-size: .8em;
4339
+ padding-top: 5px;
4340
+ }