sunrise-cms 1.0.1 → 1.0.2
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.
- checksums.yaml +4 -4
 - data/CHANGELOG.rdoc +6 -0
 - data/app/assets/javascripts/sunrise/application.js +1 -1
 - data/app/assets/javascripts/sunrise/manage.js.coffee +17 -7
 - data/app/assets/stylesheets/sunrise/application.css +1 -1
 - data/app/assets/stylesheets/sunrise/customize.css +15 -0
 - data/lib/sunrise/abstract_model.rb +1 -1
 - data/lib/sunrise/version.rb +1 -1
 - metadata +16 -4
 - data/app/assets/javascripts/sunrise/chosen.jquery.js +0 -1211
 - data/app/assets/stylesheets/sunrise/chosen.css +0 -436
 
| 
         @@ -1,436 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            /*!
         
     | 
| 
       2 
     | 
    
         
            -
            Chosen, a Select Box Enhancer for jQuery and Prototype
         
     | 
| 
       3 
     | 
    
         
            -
            by Patrick Filler for Harvest, http://getharvest.com
         
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
            Version 1.1.0
         
     | 
| 
       6 
     | 
    
         
            -
            Full source at https://github.com/harvesthq/chosen
         
     | 
| 
       7 
     | 
    
         
            -
            Copyright (c) 2011 Harvest http://getharvest.com
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
            MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
         
     | 
| 
       10 
     | 
    
         
            -
            This file is generated by `grunt build`, do not edit it by hand.
         
     | 
| 
       11 
     | 
    
         
            -
            */
         
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
            /* @group Base */
         
     | 
| 
       14 
     | 
    
         
            -
            .chosen-container {
         
     | 
| 
       15 
     | 
    
         
            -
              position: relative;
         
     | 
| 
       16 
     | 
    
         
            -
              display: inline-block;
         
     | 
| 
       17 
     | 
    
         
            -
              vertical-align: middle;
         
     | 
| 
       18 
     | 
    
         
            -
              font-size: 13px;
         
     | 
| 
       19 
     | 
    
         
            -
              zoom: 1;
         
     | 
| 
       20 
     | 
    
         
            -
              *display: inline;
         
     | 
| 
       21 
     | 
    
         
            -
              -webkit-user-select: none;
         
     | 
| 
       22 
     | 
    
         
            -
              -moz-user-select: none;
         
     | 
| 
       23 
     | 
    
         
            -
              user-select: none;
         
     | 
| 
       24 
     | 
    
         
            -
              min-width: 150px;
         
     | 
| 
       25 
     | 
    
         
            -
            }
         
     | 
| 
       26 
     | 
    
         
            -
            .chosen-container .chosen-drop {
         
     | 
| 
       27 
     | 
    
         
            -
              position: absolute;
         
     | 
| 
       28 
     | 
    
         
            -
              top: 100%;
         
     | 
| 
       29 
     | 
    
         
            -
              left: -9999px;
         
     | 
| 
       30 
     | 
    
         
            -
              z-index: 1010;
         
     | 
| 
       31 
     | 
    
         
            -
              -webkit-box-sizing: border-box;
         
     | 
| 
       32 
     | 
    
         
            -
              -moz-box-sizing: border-box;
         
     | 
| 
       33 
     | 
    
         
            -
              box-sizing: border-box;
         
     | 
| 
       34 
     | 
    
         
            -
              width: 100%;
         
     | 
| 
       35 
     | 
    
         
            -
              border: 1px solid #d9d9d9;
         
     | 
| 
       36 
     | 
    
         
            -
              border-top: 0;
         
     | 
| 
       37 
     | 
    
         
            -
              background: #fff;
         
     | 
| 
       38 
     | 
    
         
            -
              box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
         
     | 
| 
       39 
     | 
    
         
            -
            }
         
     | 
| 
       40 
     | 
    
         
            -
            .chosen-container.chosen-with-drop .chosen-drop {
         
     | 
| 
       41 
     | 
    
         
            -
              left: 0;
         
     | 
| 
       42 
     | 
    
         
            -
            }
         
     | 
| 
       43 
     | 
    
         
            -
            .chosen-container a {
         
     | 
| 
       44 
     | 
    
         
            -
              cursor: pointer;
         
     | 
| 
       45 
     | 
    
         
            -
            }
         
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
            /* @end */
         
     | 
| 
       48 
     | 
    
         
            -
            /* @group Single Chosen */
         
     | 
| 
       49 
     | 
    
         
            -
            .chosen-container-single .chosen-single {
         
     | 
| 
       50 
     | 
    
         
            -
              position: relative;
         
     | 
| 
       51 
     | 
    
         
            -
              display: block;
         
     | 
| 
       52 
     | 
    
         
            -
              overflow: hidden;
         
     | 
| 
       53 
     | 
    
         
            -
              padding: 0 0 0 8px;
         
     | 
| 
       54 
     | 
    
         
            -
              height: 23px;
         
     | 
| 
       55 
     | 
    
         
            -
              border: 1px solid #d9d9d9;
         
     | 
| 
       56 
     | 
    
         
            -
              border-radius: 5px;
         
     | 
| 
       57 
     | 
    
         
            -
              background-color: #f4f4f4;
         
     | 
| 
       58 
     | 
    
         
            -
              background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
         
     | 
| 
       59 
     | 
    
         
            -
              background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
         
     | 
| 
       60 
     | 
    
         
            -
              background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
         
     | 
| 
       61 
     | 
    
         
            -
              background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
         
     | 
| 
       62 
     | 
    
         
            -
              background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
         
     | 
| 
       63 
     | 
    
         
            -
              background-clip: padding-box;
         
     | 
| 
       64 
     | 
    
         
            -
              box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
         
     | 
| 
       65 
     | 
    
         
            -
              color: #616161;
         
     | 
| 
       66 
     | 
    
         
            -
              text-decoration: none;
         
     | 
| 
       67 
     | 
    
         
            -
              white-space: nowrap;
         
     | 
| 
       68 
     | 
    
         
            -
              line-height: 24px;
         
     | 
| 
       69 
     | 
    
         
            -
            }
         
     | 
| 
       70 
     | 
    
         
            -
            .chosen-container-single .chosen-default {
         
     | 
| 
       71 
     | 
    
         
            -
              color: #999;
         
     | 
| 
       72 
     | 
    
         
            -
            }
         
     | 
| 
       73 
     | 
    
         
            -
            .chosen-container-single .chosen-single span {
         
     | 
| 
       74 
     | 
    
         
            -
              display: block;
         
     | 
| 
       75 
     | 
    
         
            -
              overflow: hidden;
         
     | 
| 
       76 
     | 
    
         
            -
              margin-right: 26px;
         
     | 
| 
       77 
     | 
    
         
            -
              text-overflow: ellipsis;
         
     | 
| 
       78 
     | 
    
         
            -
              white-space: nowrap;
         
     | 
| 
       79 
     | 
    
         
            -
            }
         
     | 
| 
       80 
     | 
    
         
            -
            .chosen-container-single .chosen-single-with-deselect span {
         
     | 
| 
       81 
     | 
    
         
            -
              margin-right: 38px;
         
     | 
| 
       82 
     | 
    
         
            -
            }
         
     | 
| 
       83 
     | 
    
         
            -
            .chosen-container-single .chosen-single abbr {
         
     | 
| 
       84 
     | 
    
         
            -
              position: absolute;
         
     | 
| 
       85 
     | 
    
         
            -
              top: 6px;
         
     | 
| 
       86 
     | 
    
         
            -
              right: 26px;
         
     | 
| 
       87 
     | 
    
         
            -
              display: block;
         
     | 
| 
       88 
     | 
    
         
            -
              width: 12px;
         
     | 
| 
       89 
     | 
    
         
            -
              height: 12px;
         
     | 
| 
       90 
     | 
    
         
            -
              background: url('/assets/sunrise/chosen-sprite.png') -42px 1px no-repeat;
         
     | 
| 
       91 
     | 
    
         
            -
              font-size: 1px;
         
     | 
| 
       92 
     | 
    
         
            -
            }
         
     | 
| 
       93 
     | 
    
         
            -
            .chosen-container-single .chosen-single abbr:hover {
         
     | 
| 
       94 
     | 
    
         
            -
              background-position: -42px -10px;
         
     | 
| 
       95 
     | 
    
         
            -
            }
         
     | 
| 
       96 
     | 
    
         
            -
            .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
         
     | 
| 
       97 
     | 
    
         
            -
              background-position: -42px -10px;
         
     | 
| 
       98 
     | 
    
         
            -
            }
         
     | 
| 
       99 
     | 
    
         
            -
            .chosen-container-single .chosen-single div {
         
     | 
| 
       100 
     | 
    
         
            -
              position: absolute;
         
     | 
| 
       101 
     | 
    
         
            -
              top: 0;
         
     | 
| 
       102 
     | 
    
         
            -
              right: 0;
         
     | 
| 
       103 
     | 
    
         
            -
              display: block;
         
     | 
| 
       104 
     | 
    
         
            -
              width: 18px;
         
     | 
| 
       105 
     | 
    
         
            -
              height: 100%;
         
     | 
| 
       106 
     | 
    
         
            -
            }
         
     | 
| 
       107 
     | 
    
         
            -
            .chosen-container-single .chosen-single div b {
         
     | 
| 
       108 
     | 
    
         
            -
              display: block;
         
     | 
| 
       109 
     | 
    
         
            -
              width: 100%;
         
     | 
| 
       110 
     | 
    
         
            -
              height: 100%;
         
     | 
| 
       111 
     | 
    
         
            -
              background: url('/assets/sunrise/chosen-sprite.png') no-repeat 0px 2px;
         
     | 
| 
       112 
     | 
    
         
            -
            }
         
     | 
| 
       113 
     | 
    
         
            -
            .chosen-container-single .chosen-search {
         
     | 
| 
       114 
     | 
    
         
            -
              position: relative;
         
     | 
| 
       115 
     | 
    
         
            -
              z-index: 1010;
         
     | 
| 
       116 
     | 
    
         
            -
              margin: 0;
         
     | 
| 
       117 
     | 
    
         
            -
              padding: 3px 4px;
         
     | 
| 
       118 
     | 
    
         
            -
              white-space: nowrap;
         
     | 
| 
       119 
     | 
    
         
            -
            }
         
     | 
| 
       120 
     | 
    
         
            -
            .chosen-container-single .chosen-search input[type="text"] {
         
     | 
| 
       121 
     | 
    
         
            -
              -webkit-box-sizing: border-box;
         
     | 
| 
       122 
     | 
    
         
            -
              -moz-box-sizing: border-box;
         
     | 
| 
       123 
     | 
    
         
            -
              box-sizing: border-box;
         
     | 
| 
       124 
     | 
    
         
            -
              margin: 1px 0;
         
     | 
| 
       125 
     | 
    
         
            -
              padding: 4px 20px 4px 5px;
         
     | 
| 
       126 
     | 
    
         
            -
              width: 100%;
         
     | 
| 
       127 
     | 
    
         
            -
              height: auto;
         
     | 
| 
       128 
     | 
    
         
            -
              outline: 0;
         
     | 
| 
       129 
     | 
    
         
            -
              border: 1px solid #aaa;
         
     | 
| 
       130 
     | 
    
         
            -
              background: white url('/assets/sunrise/chosen-sprite.png') no-repeat 100% -20px;
         
     | 
| 
       131 
     | 
    
         
            -
              background: url('/assets/sunrise/chosen-sprite.png') no-repeat 100% -20px;
         
     | 
| 
       132 
     | 
    
         
            -
              font-size: 1em;
         
     | 
| 
       133 
     | 
    
         
            -
              font-family: sans-serif;
         
     | 
| 
       134 
     | 
    
         
            -
              line-height: normal;
         
     | 
| 
       135 
     | 
    
         
            -
              border-radius: 0;
         
     | 
| 
       136 
     | 
    
         
            -
            }
         
     | 
| 
       137 
     | 
    
         
            -
            .chosen-container-single .chosen-drop {
         
     | 
| 
       138 
     | 
    
         
            -
              margin-top: -1px;
         
     | 
| 
       139 
     | 
    
         
            -
              border-radius: 0 0 4px 4px;
         
     | 
| 
       140 
     | 
    
         
            -
              background-clip: padding-box;
         
     | 
| 
       141 
     | 
    
         
            -
            }
         
     | 
| 
       142 
     | 
    
         
            -
            .chosen-container-single.chosen-container-single-nosearch .chosen-search {
         
     | 
| 
       143 
     | 
    
         
            -
              position: absolute;
         
     | 
| 
       144 
     | 
    
         
            -
              left: -9999px;
         
     | 
| 
       145 
     | 
    
         
            -
            }
         
     | 
| 
       146 
     | 
    
         
            -
             
     | 
| 
       147 
     | 
    
         
            -
            /* @end */
         
     | 
| 
       148 
     | 
    
         
            -
            /* @group Results */
         
     | 
| 
       149 
     | 
    
         
            -
            .chosen-container .chosen-results {
         
     | 
| 
       150 
     | 
    
         
            -
              position: relative;
         
     | 
| 
       151 
     | 
    
         
            -
              overflow-x: hidden;
         
     | 
| 
       152 
     | 
    
         
            -
              overflow-y: auto;
         
     | 
| 
       153 
     | 
    
         
            -
              margin: 0 4px 4px 0;
         
     | 
| 
       154 
     | 
    
         
            -
              padding: 0 0 0 4px;
         
     | 
| 
       155 
     | 
    
         
            -
              max-height: 240px;
         
     | 
| 
       156 
     | 
    
         
            -
              -webkit-overflow-scrolling: touch;
         
     | 
| 
       157 
     | 
    
         
            -
            }
         
     | 
| 
       158 
     | 
    
         
            -
            .chosen-container .chosen-results li {
         
     | 
| 
       159 
     | 
    
         
            -
              display: none;
         
     | 
| 
       160 
     | 
    
         
            -
              margin: 0;
         
     | 
| 
       161 
     | 
    
         
            -
              padding: 5px 6px;
         
     | 
| 
       162 
     | 
    
         
            -
              list-style: none;
         
     | 
| 
       163 
     | 
    
         
            -
              line-height: 15px;
         
     | 
| 
       164 
     | 
    
         
            -
              -webkit-touch-callout: none;
         
     | 
| 
       165 
     | 
    
         
            -
            }
         
     | 
| 
       166 
     | 
    
         
            -
            .chosen-container .chosen-results li.active-result {
         
     | 
| 
       167 
     | 
    
         
            -
              display: list-item;
         
     | 
| 
       168 
     | 
    
         
            -
              cursor: pointer;
         
     | 
| 
       169 
     | 
    
         
            -
            }
         
     | 
| 
       170 
     | 
    
         
            -
            .chosen-container .chosen-results li.disabled-result {
         
     | 
| 
       171 
     | 
    
         
            -
              display: list-item;
         
     | 
| 
       172 
     | 
    
         
            -
              color: #ccc;
         
     | 
| 
       173 
     | 
    
         
            -
              cursor: default;
         
     | 
| 
       174 
     | 
    
         
            -
            }
         
     | 
| 
       175 
     | 
    
         
            -
            .chosen-container .chosen-results li.highlighted {
         
     | 
| 
       176 
     | 
    
         
            -
              background-color: #972da0;
         
     | 
| 
       177 
     | 
    
         
            -
              /*background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
         
     | 
| 
       178 
     | 
    
         
            -
              background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
         
     | 
| 
       179 
     | 
    
         
            -
              background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
         
     | 
| 
       180 
     | 
    
         
            -
              background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
         
     | 
| 
       181 
     | 
    
         
            -
              background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);*/
         
     | 
| 
       182 
     | 
    
         
            -
              color: #fff;
         
     | 
| 
       183 
     | 
    
         
            -
            }
         
     | 
| 
       184 
     | 
    
         
            -
            .chosen-container .chosen-results li.no-results {
         
     | 
| 
       185 
     | 
    
         
            -
              display: list-item;
         
     | 
| 
       186 
     | 
    
         
            -
              background: #f4f4f4;
         
     | 
| 
       187 
     | 
    
         
            -
            }
         
     | 
| 
       188 
     | 
    
         
            -
            .chosen-container .chosen-results li.group-result {
         
     | 
| 
       189 
     | 
    
         
            -
              display: list-item;
         
     | 
| 
       190 
     | 
    
         
            -
              font-weight: bold;
         
     | 
| 
       191 
     | 
    
         
            -
              cursor: default;
         
     | 
| 
       192 
     | 
    
         
            -
            }
         
     | 
| 
       193 
     | 
    
         
            -
            .chosen-container .chosen-results li.group-option {
         
     | 
| 
       194 
     | 
    
         
            -
              padding-left: 15px;
         
     | 
| 
       195 
     | 
    
         
            -
            }
         
     | 
| 
       196 
     | 
    
         
            -
            .chosen-container .chosen-results li em {
         
     | 
| 
       197 
     | 
    
         
            -
              font-style: normal;
         
     | 
| 
       198 
     | 
    
         
            -
              text-decoration: underline;
         
     | 
| 
       199 
     | 
    
         
            -
            }
         
     | 
| 
       200 
     | 
    
         
            -
             
     | 
| 
       201 
     | 
    
         
            -
            /* @end */
         
     | 
| 
       202 
     | 
    
         
            -
            /* @group Multi Chosen */
         
     | 
| 
       203 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices {
         
     | 
| 
       204 
     | 
    
         
            -
              position: relative;
         
     | 
| 
       205 
     | 
    
         
            -
              overflow: hidden;
         
     | 
| 
       206 
     | 
    
         
            -
              -webkit-box-sizing: border-box;
         
     | 
| 
       207 
     | 
    
         
            -
              -moz-box-sizing: border-box;
         
     | 
| 
       208 
     | 
    
         
            -
              box-sizing: border-box;
         
     | 
| 
       209 
     | 
    
         
            -
              margin: 0;
         
     | 
| 
       210 
     | 
    
         
            -
              padding: 0;
         
     | 
| 
       211 
     | 
    
         
            -
              width: 100%;
         
     | 
| 
       212 
     | 
    
         
            -
              height: auto !important;
         
     | 
| 
       213 
     | 
    
         
            -
              height: 1%;
         
     | 
| 
       214 
     | 
    
         
            -
              border: 1px solid #aaa;
         
     | 
| 
       215 
     | 
    
         
            -
              background-color: #fff;
         
     | 
| 
       216 
     | 
    
         
            -
              background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
         
     | 
| 
       217 
     | 
    
         
            -
              background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
         
     | 
| 
       218 
     | 
    
         
            -
              background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
         
     | 
| 
       219 
     | 
    
         
            -
              background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
         
     | 
| 
       220 
     | 
    
         
            -
              background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
         
     | 
| 
       221 
     | 
    
         
            -
              cursor: text;
         
     | 
| 
       222 
     | 
    
         
            -
            }
         
     | 
| 
       223 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li {
         
     | 
| 
       224 
     | 
    
         
            -
              float: left;
         
     | 
| 
       225 
     | 
    
         
            -
              list-style: none;
         
     | 
| 
       226 
     | 
    
         
            -
            }
         
     | 
| 
       227 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-field {
         
     | 
| 
       228 
     | 
    
         
            -
              margin: 0;
         
     | 
| 
       229 
     | 
    
         
            -
              padding: 0;
         
     | 
| 
       230 
     | 
    
         
            -
              white-space: nowrap;
         
     | 
| 
       231 
     | 
    
         
            -
            }
         
     | 
| 
       232 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
         
     | 
| 
       233 
     | 
    
         
            -
              margin: 1px 0;
         
     | 
| 
       234 
     | 
    
         
            -
              padding: 5px;
         
     | 
| 
       235 
     | 
    
         
            -
              height: 15px;
         
     | 
| 
       236 
     | 
    
         
            -
              outline: 0;
         
     | 
| 
       237 
     | 
    
         
            -
              border: 0 !important;
         
     | 
| 
       238 
     | 
    
         
            -
              background: transparent !important;
         
     | 
| 
       239 
     | 
    
         
            -
              box-shadow: none;
         
     | 
| 
       240 
     | 
    
         
            -
              color: #666;
         
     | 
| 
       241 
     | 
    
         
            -
              font-size: 100%;
         
     | 
| 
       242 
     | 
    
         
            -
              font-family: sans-serif;
         
     | 
| 
       243 
     | 
    
         
            -
              line-height: normal;
         
     | 
| 
       244 
     | 
    
         
            -
              border-radius: 0;
         
     | 
| 
       245 
     | 
    
         
            -
            }
         
     | 
| 
       246 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-field .default {
         
     | 
| 
       247 
     | 
    
         
            -
              color: #999;
         
     | 
| 
       248 
     | 
    
         
            -
            }
         
     | 
| 
       249 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-choice {
         
     | 
| 
       250 
     | 
    
         
            -
              position: relative;
         
     | 
| 
       251 
     | 
    
         
            -
              margin: 3px 0 3px 5px;
         
     | 
| 
       252 
     | 
    
         
            -
              padding: 3px 20px 3px 5px;
         
     | 
| 
       253 
     | 
    
         
            -
              border: 1px solid #aaa;
         
     | 
| 
       254 
     | 
    
         
            -
              border-radius: 3px;
         
     | 
| 
       255 
     | 
    
         
            -
              background-color: #e4e4e4;
         
     | 
| 
       256 
     | 
    
         
            -
              background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
         
     | 
| 
       257 
     | 
    
         
            -
              background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
         
     | 
| 
       258 
     | 
    
         
            -
              background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
         
     | 
| 
       259 
     | 
    
         
            -
              background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
         
     | 
| 
       260 
     | 
    
         
            -
              background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
         
     | 
| 
       261 
     | 
    
         
            -
              background-clip: padding-box;
         
     | 
| 
       262 
     | 
    
         
            -
              box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
         
     | 
| 
       263 
     | 
    
         
            -
              color: #333;
         
     | 
| 
       264 
     | 
    
         
            -
              line-height: 13px;
         
     | 
| 
       265 
     | 
    
         
            -
              cursor: default;
         
     | 
| 
       266 
     | 
    
         
            -
            }
         
     | 
| 
       267 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
         
     | 
| 
       268 
     | 
    
         
            -
              position: absolute;
         
     | 
| 
       269 
     | 
    
         
            -
              top: 4px;
         
     | 
| 
       270 
     | 
    
         
            -
              right: 3px;
         
     | 
| 
       271 
     | 
    
         
            -
              display: block;
         
     | 
| 
       272 
     | 
    
         
            -
              width: 12px;
         
     | 
| 
       273 
     | 
    
         
            -
              height: 12px;
         
     | 
| 
       274 
     | 
    
         
            -
              background: url('/assets/sunrise/chosen-sprite.png') -42px 1px no-repeat;
         
     | 
| 
       275 
     | 
    
         
            -
              font-size: 1px;
         
     | 
| 
       276 
     | 
    
         
            -
            }
         
     | 
| 
       277 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
         
     | 
| 
       278 
     | 
    
         
            -
              background-position: -42px -10px;
         
     | 
| 
       279 
     | 
    
         
            -
            }
         
     | 
| 
       280 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-choice-disabled {
         
     | 
| 
       281 
     | 
    
         
            -
              padding-right: 5px;
         
     | 
| 
       282 
     | 
    
         
            -
              border: 1px solid #ccc;
         
     | 
| 
       283 
     | 
    
         
            -
              background-color: #e4e4e4;
         
     | 
| 
       284 
     | 
    
         
            -
              background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
         
     | 
| 
       285 
     | 
    
         
            -
              background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
         
     | 
| 
       286 
     | 
    
         
            -
              background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
         
     | 
| 
       287 
     | 
    
         
            -
              background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
         
     | 
| 
       288 
     | 
    
         
            -
              background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
         
     | 
| 
       289 
     | 
    
         
            -
              color: #666;
         
     | 
| 
       290 
     | 
    
         
            -
            }
         
     | 
| 
       291 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-choice-focus {
         
     | 
| 
       292 
     | 
    
         
            -
              background: #d4d4d4;
         
     | 
| 
       293 
     | 
    
         
            -
            }
         
     | 
| 
       294 
     | 
    
         
            -
            .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
         
     | 
| 
       295 
     | 
    
         
            -
              background-position: -42px -10px;
         
     | 
| 
       296 
     | 
    
         
            -
            }
         
     | 
| 
       297 
     | 
    
         
            -
            .chosen-container-multi .chosen-results {
         
     | 
| 
       298 
     | 
    
         
            -
              margin: 0;
         
     | 
| 
       299 
     | 
    
         
            -
              padding: 0;
         
     | 
| 
       300 
     | 
    
         
            -
            }
         
     | 
| 
       301 
     | 
    
         
            -
            .chosen-container-multi .chosen-drop .result-selected {
         
     | 
| 
       302 
     | 
    
         
            -
              display: list-item;
         
     | 
| 
       303 
     | 
    
         
            -
              color: #ccc;
         
     | 
| 
       304 
     | 
    
         
            -
              cursor: default;
         
     | 
| 
       305 
     | 
    
         
            -
            }
         
     | 
| 
       306 
     | 
    
         
            -
             
     | 
| 
       307 
     | 
    
         
            -
            /* @end */
         
     | 
| 
       308 
     | 
    
         
            -
            /* @group Active  */
         
     | 
| 
       309 
     | 
    
         
            -
            .chosen-container-active .chosen-single {
         
     | 
| 
       310 
     | 
    
         
            -
              border: 1px solid #5897fb;
         
     | 
| 
       311 
     | 
    
         
            -
              box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
         
     | 
| 
       312 
     | 
    
         
            -
            }
         
     | 
| 
       313 
     | 
    
         
            -
            .chosen-container-active.chosen-with-drop .chosen-single {
         
     | 
| 
       314 
     | 
    
         
            -
              border: 1px solid #aaa;
         
     | 
| 
       315 
     | 
    
         
            -
              -moz-border-radius-bottomright: 0;
         
     | 
| 
       316 
     | 
    
         
            -
              border-bottom-right-radius: 0;
         
     | 
| 
       317 
     | 
    
         
            -
              -moz-border-radius-bottomleft: 0;
         
     | 
| 
       318 
     | 
    
         
            -
              border-bottom-left-radius: 0;
         
     | 
| 
       319 
     | 
    
         
            -
              background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
         
     | 
| 
       320 
     | 
    
         
            -
              background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
         
     | 
| 
       321 
     | 
    
         
            -
              background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
         
     | 
| 
       322 
     | 
    
         
            -
              background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
         
     | 
| 
       323 
     | 
    
         
            -
              background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
         
     | 
| 
       324 
     | 
    
         
            -
              box-shadow: 0 1px 0 #fff inset;
         
     | 
| 
       325 
     | 
    
         
            -
            }
         
     | 
| 
       326 
     | 
    
         
            -
            .chosen-container-active.chosen-with-drop .chosen-single div {
         
     | 
| 
       327 
     | 
    
         
            -
              border-left: none;
         
     | 
| 
       328 
     | 
    
         
            -
              background: transparent;
         
     | 
| 
       329 
     | 
    
         
            -
            }
         
     | 
| 
       330 
     | 
    
         
            -
            .chosen-container-active.chosen-with-drop .chosen-single div b {
         
     | 
| 
       331 
     | 
    
         
            -
              background-position: -18px 2px;
         
     | 
| 
       332 
     | 
    
         
            -
            }
         
     | 
| 
       333 
     | 
    
         
            -
            .chosen-container-active .chosen-choices {
         
     | 
| 
       334 
     | 
    
         
            -
              border: 1px solid #5897fb;
         
     | 
| 
       335 
     | 
    
         
            -
              box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
         
     | 
| 
       336 
     | 
    
         
            -
            }
         
     | 
| 
       337 
     | 
    
         
            -
            .chosen-container-active .chosen-choices li.search-field input[type="text"] {
         
     | 
| 
       338 
     | 
    
         
            -
              color: #111 !important;
         
     | 
| 
       339 
     | 
    
         
            -
            }
         
     | 
| 
       340 
     | 
    
         
            -
             
     | 
| 
       341 
     | 
    
         
            -
            /* @end */
         
     | 
| 
       342 
     | 
    
         
            -
            /* @group Disabled Support */
         
     | 
| 
       343 
     | 
    
         
            -
            .chosen-disabled {
         
     | 
| 
       344 
     | 
    
         
            -
              opacity: 0.5 !important;
         
     | 
| 
       345 
     | 
    
         
            -
              cursor: default;
         
     | 
| 
       346 
     | 
    
         
            -
            }
         
     | 
| 
       347 
     | 
    
         
            -
            .chosen-disabled .chosen-single {
         
     | 
| 
       348 
     | 
    
         
            -
              cursor: default;
         
     | 
| 
       349 
     | 
    
         
            -
            }
         
     | 
| 
       350 
     | 
    
         
            -
            .chosen-disabled .chosen-choices .search-choice .search-choice-close {
         
     | 
| 
       351 
     | 
    
         
            -
              cursor: default;
         
     | 
| 
       352 
     | 
    
         
            -
            }
         
     | 
| 
       353 
     | 
    
         
            -
             
     | 
| 
       354 
     | 
    
         
            -
            /* @end */
         
     | 
| 
       355 
     | 
    
         
            -
            /* @group Right to Left */
         
     | 
| 
       356 
     | 
    
         
            -
            .chosen-rtl {
         
     | 
| 
       357 
     | 
    
         
            -
              text-align: right;
         
     | 
| 
       358 
     | 
    
         
            -
            }
         
     | 
| 
       359 
     | 
    
         
            -
            .chosen-rtl .chosen-single {
         
     | 
| 
       360 
     | 
    
         
            -
              overflow: visible;
         
     | 
| 
       361 
     | 
    
         
            -
              padding: 0 8px 0 0;
         
     | 
| 
       362 
     | 
    
         
            -
            }
         
     | 
| 
       363 
     | 
    
         
            -
            .chosen-rtl .chosen-single span {
         
     | 
| 
       364 
     | 
    
         
            -
              margin-right: 0;
         
     | 
| 
       365 
     | 
    
         
            -
              margin-left: 26px;
         
     | 
| 
       366 
     | 
    
         
            -
              direction: rtl;
         
     | 
| 
       367 
     | 
    
         
            -
            }
         
     | 
| 
       368 
     | 
    
         
            -
            .chosen-rtl .chosen-single-with-deselect span {
         
     | 
| 
       369 
     | 
    
         
            -
              margin-left: 38px;
         
     | 
| 
       370 
     | 
    
         
            -
            }
         
     | 
| 
       371 
     | 
    
         
            -
            .chosen-rtl .chosen-single div {
         
     | 
| 
       372 
     | 
    
         
            -
              right: auto;
         
     | 
| 
       373 
     | 
    
         
            -
              left: 3px;
         
     | 
| 
       374 
     | 
    
         
            -
            }
         
     | 
| 
       375 
     | 
    
         
            -
            .chosen-rtl .chosen-single abbr {
         
     | 
| 
       376 
     | 
    
         
            -
              right: auto;
         
     | 
| 
       377 
     | 
    
         
            -
              left: 26px;
         
     | 
| 
       378 
     | 
    
         
            -
            }
         
     | 
| 
       379 
     | 
    
         
            -
            .chosen-rtl .chosen-choices li {
         
     | 
| 
       380 
     | 
    
         
            -
              float: right;
         
     | 
| 
       381 
     | 
    
         
            -
            }
         
     | 
| 
       382 
     | 
    
         
            -
            .chosen-rtl .chosen-choices li.search-field input[type="text"] {
         
     | 
| 
       383 
     | 
    
         
            -
              direction: rtl;
         
     | 
| 
       384 
     | 
    
         
            -
            }
         
     | 
| 
       385 
     | 
    
         
            -
            .chosen-rtl .chosen-choices li.search-choice {
         
     | 
| 
       386 
     | 
    
         
            -
              margin: 3px 5px 3px 0;
         
     | 
| 
       387 
     | 
    
         
            -
              padding: 3px 5px 3px 19px;
         
     | 
| 
       388 
     | 
    
         
            -
            }
         
     | 
| 
       389 
     | 
    
         
            -
            .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
         
     | 
| 
       390 
     | 
    
         
            -
              right: auto;
         
     | 
| 
       391 
     | 
    
         
            -
              left: 4px;
         
     | 
| 
       392 
     | 
    
         
            -
            }
         
     | 
| 
       393 
     | 
    
         
            -
            .chosen-rtl.chosen-container-single-nosearch .chosen-search,
         
     | 
| 
       394 
     | 
    
         
            -
            .chosen-rtl .chosen-drop {
         
     | 
| 
       395 
     | 
    
         
            -
              left: 9999px;
         
     | 
| 
       396 
     | 
    
         
            -
            }
         
     | 
| 
       397 
     | 
    
         
            -
            .chosen-rtl.chosen-container-single .chosen-results {
         
     | 
| 
       398 
     | 
    
         
            -
              margin: 0 0 4px 4px;
         
     | 
| 
       399 
     | 
    
         
            -
              padding: 0 4px 0 0;
         
     | 
| 
       400 
     | 
    
         
            -
            }
         
     | 
| 
       401 
     | 
    
         
            -
            .chosen-rtl .chosen-results li.group-option {
         
     | 
| 
       402 
     | 
    
         
            -
              padding-right: 15px;
         
     | 
| 
       403 
     | 
    
         
            -
              padding-left: 0;
         
     | 
| 
       404 
     | 
    
         
            -
            }
         
     | 
| 
       405 
     | 
    
         
            -
            .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
         
     | 
| 
       406 
     | 
    
         
            -
              border-right: none;
         
     | 
| 
       407 
     | 
    
         
            -
            }
         
     | 
| 
       408 
     | 
    
         
            -
            .chosen-rtl .chosen-search input[type="text"] {
         
     | 
| 
       409 
     | 
    
         
            -
              padding: 4px 5px 4px 20px;
         
     | 
| 
       410 
     | 
    
         
            -
              background: white url('/assets/sunrise/chosen-sprite.png') no-repeat -30px -20px;
         
     | 
| 
       411 
     | 
    
         
            -
              background: url('/assets/sunrise/chosen-sprite.png') no-repeat -30px -20px;
         
     | 
| 
       412 
     | 
    
         
            -
              direction: rtl;
         
     | 
| 
       413 
     | 
    
         
            -
            }
         
     | 
| 
       414 
     | 
    
         
            -
            .chosen-rtl.chosen-container-single .chosen-single div b {
         
     | 
| 
       415 
     | 
    
         
            -
              background-position: 6px 2px;
         
     | 
| 
       416 
     | 
    
         
            -
            }
         
     | 
| 
       417 
     | 
    
         
            -
            .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
         
     | 
| 
       418 
     | 
    
         
            -
              background-position: -12px 2px;
         
     | 
| 
       419 
     | 
    
         
            -
            }
         
     | 
| 
       420 
     | 
    
         
            -
             
     | 
| 
       421 
     | 
    
         
            -
            /* @end */
         
     | 
| 
       422 
     | 
    
         
            -
            /* @group Retina compatibility */
         
     | 
| 
       423 
     | 
    
         
            -
            @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
         
     | 
| 
       424 
     | 
    
         
            -
              .chosen-rtl .chosen-search input[type="text"],
         
     | 
| 
       425 
     | 
    
         
            -
              .chosen-container-single .chosen-single abbr,
         
     | 
| 
       426 
     | 
    
         
            -
              .chosen-container-single .chosen-single div b,
         
     | 
| 
       427 
     | 
    
         
            -
              .chosen-container-single .chosen-search input[type="text"],
         
     | 
| 
       428 
     | 
    
         
            -
              .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
         
     | 
| 
       429 
     | 
    
         
            -
              .chosen-container .chosen-results-scroll-down span,
         
     | 
| 
       430 
     | 
    
         
            -
              .chosen-container .chosen-results-scroll-up span {
         
     | 
| 
       431 
     | 
    
         
            -
                background-image: url('/assets/sunrise/chosen-sprite@2x.png') !important;
         
     | 
| 
       432 
     | 
    
         
            -
                background-size: 52px 37px !important;
         
     | 
| 
       433 
     | 
    
         
            -
                background-repeat: no-repeat !important;
         
     | 
| 
       434 
     | 
    
         
            -
              }
         
     | 
| 
       435 
     | 
    
         
            -
            }
         
     | 
| 
       436 
     | 
    
         
            -
            /* @end */
         
     |