jquery-ui-rails 3.0.1 → 4.0.0
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.
Potentially problematic release.
This version of jquery-ui-rails might be problematic. Click here for more details.
- data/History.md +10 -0
 - data/README.md +1 -1
 - data/Rakefile +4 -5
 - data/lib/jquery/ui/rails/version.rb +1 -1
 - data/vendor/assets/javascripts/jquery.ui.accordion.js +130 -290
 - data/vendor/assets/javascripts/jquery.ui.autocomplete.js +30 -18
 - data/vendor/assets/javascripts/jquery.ui.button.js +9 -8
 - data/vendor/assets/javascripts/jquery.ui.core.js +19 -53
 - data/vendor/assets/javascripts/jquery.ui.datepicker-be.js +23 -0
 - data/vendor/assets/javascripts/jquery.ui.datepicker-fr-CA.js +23 -0
 - data/vendor/assets/javascripts/jquery.ui.datepicker-ky.js +24 -0
 - data/vendor/assets/javascripts/jquery.ui.datepicker-nb.js +22 -0
 - data/vendor/assets/javascripts/jquery.ui.datepicker-nn.js +22 -0
 - data/vendor/assets/javascripts/jquery.ui.datepicker.js +1076 -878
 - data/vendor/assets/javascripts/jquery.ui.dialog.js +456 -547
 - data/vendor/assets/javascripts/jquery.ui.draggable.js +317 -207
 - data/vendor/assets/javascripts/jquery.ui.droppable.js +177 -100
 - data/vendor/assets/javascripts/jquery.ui.effect-blind.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-bounce.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-clip.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-drop.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-explode.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-fade.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-fold.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-highlight.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-pulsate.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-scale.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-shake.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-slide.js +2 -2
 - data/vendor/assets/javascripts/jquery.ui.effect-transfer.js +3 -3
 - data/vendor/assets/javascripts/jquery.ui.effect.js +91 -99
 - data/vendor/assets/javascripts/jquery.ui.menu.js +20 -9
 - data/vendor/assets/javascripts/jquery.ui.mouse.js +25 -25
 - data/vendor/assets/javascripts/jquery.ui.position.js +39 -59
 - data/vendor/assets/javascripts/jquery.ui.progressbar.js +73 -33
 - data/vendor/assets/javascripts/jquery.ui.resizable.js +461 -294
 - data/vendor/assets/javascripts/jquery.ui.selectable.js +67 -51
 - data/vendor/assets/javascripts/jquery.ui.slider.js +100 -95
 - data/vendor/assets/javascripts/jquery.ui.sortable.js +411 -257
 - data/vendor/assets/javascripts/jquery.ui.spinner.js +19 -5
 - data/vendor/assets/javascripts/jquery.ui.tabs.js +47 -567
 - data/vendor/assets/javascripts/jquery.ui.tooltip.js +14 -10
 - data/vendor/assets/javascripts/jquery.ui.widget.js +33 -40
 - data/vendor/assets/stylesheets/jquery.ui.accordion.css.erb +30 -8
 - data/vendor/assets/stylesheets/jquery.ui.all.css.erb +2 -2
 - data/vendor/assets/stylesheets/jquery.ui.autocomplete.css.erb +2 -5
 - data/vendor/assets/stylesheets/jquery.ui.base.css.erb +2 -2
 - data/vendor/assets/stylesheets/jquery.ui.button.css.erb +100 -26
 - data/vendor/assets/stylesheets/jquery.ui.core.css.erb +65 -12
 - data/vendor/assets/stylesheets/jquery.ui.datepicker.css.erb +166 -55
 - data/vendor/assets/stylesheets/jquery.ui.dialog.css.erb +61 -14
 - data/vendor/assets/stylesheets/jquery.ui.menu.css.erb +61 -14
 - data/vendor/assets/stylesheets/jquery.ui.progressbar.css.erb +20 -4
 - data/vendor/assets/stylesheets/jquery.ui.resizable.css.erb +70 -13
 - data/vendor/assets/stylesheets/jquery.ui.selectable.css.erb +7 -3
 - data/vendor/assets/stylesheets/jquery.ui.slider.css.erb +63 -15
 - data/vendor/assets/stylesheets/jquery.ui.spinner.css.erb +52 -10
 - data/vendor/assets/stylesheets/jquery.ui.tabs.css.erb +44 -10
 - data/vendor/assets/stylesheets/jquery.ui.theme.css.erb +196 -38
 - data/vendor/assets/stylesheets/jquery.ui.tooltip.css.erb +4 -6
 - metadata +8 -3
 
| 
         @@ -1,8 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /*!
         
     | 
| 
       2 
     | 
    
         
            -
             * jQuery UI Datepicker 1. 
     | 
| 
      
 2 
     | 
    
         
            +
             * jQuery UI Datepicker 1.10.0
         
     | 
| 
       3 
3 
     | 
    
         
             
             * http://jqueryui.com
         
     | 
| 
       4 
4 
     | 
    
         
             
             *
         
     | 
| 
       5 
     | 
    
         
            -
             * Copyright  
     | 
| 
      
 5 
     | 
    
         
            +
             * Copyright 2013 jQuery Foundation and other contributors
         
     | 
| 
       6 
6 
     | 
    
         
             
             * Released under the MIT license.
         
     | 
| 
       7 
7 
     | 
    
         
             
             * http://jquery.org/license
         
     | 
| 
       8 
8 
     | 
    
         
             
             *
         
     | 
| 
         @@ -12,60 +12,171 @@ 
     | 
|
| 
       12 
12 
     | 
    
         
             
             *= require jquery.ui.core
         
     | 
| 
       13 
13 
     | 
    
         
             
             *= require jquery.ui.theme
         
     | 
| 
       14 
14 
     | 
    
         
             
             */
         
     | 
| 
       15 
     | 
    
         
            -
            .ui-datepicker { 
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
            .ui-datepicker .ui-datepicker- 
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
            .ui-datepicker .ui-datepicker- 
     | 
| 
       25 
     | 
    
         
            -
            .ui-datepicker .ui-datepicker- 
     | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
            .ui-datepicker  
     | 
| 
       32 
     | 
    
         
            -
            .ui-datepicker  
     | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
            .ui-datepicker .ui-datepicker- 
     | 
| 
      
 15 
     | 
    
         
            +
            .ui-datepicker {
         
     | 
| 
      
 16 
     | 
    
         
            +
            	width: 17em;
         
     | 
| 
      
 17 
     | 
    
         
            +
            	padding: .2em .2em 0;
         
     | 
| 
      
 18 
     | 
    
         
            +
            	display: none;
         
     | 
| 
      
 19 
     | 
    
         
            +
            }
         
     | 
| 
      
 20 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-header {
         
     | 
| 
      
 21 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 22 
     | 
    
         
            +
            	padding: .2em 0;
         
     | 
| 
      
 23 
     | 
    
         
            +
            }
         
     | 
| 
      
 24 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-prev,
         
     | 
| 
      
 25 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-next {
         
     | 
| 
      
 26 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 27 
     | 
    
         
            +
            	top: 2px;
         
     | 
| 
      
 28 
     | 
    
         
            +
            	width: 1.8em;
         
     | 
| 
      
 29 
     | 
    
         
            +
            	height: 1.8em;
         
     | 
| 
      
 30 
     | 
    
         
            +
            }
         
     | 
| 
      
 31 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-prev-hover,
         
     | 
| 
      
 32 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-next-hover {
         
     | 
| 
      
 33 
     | 
    
         
            +
            	top: 1px;
         
     | 
| 
      
 34 
     | 
    
         
            +
            }
         
     | 
| 
      
 35 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-prev {
         
     | 
| 
      
 36 
     | 
    
         
            +
            	left: 2px;
         
     | 
| 
      
 37 
     | 
    
         
            +
            }
         
     | 
| 
      
 38 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-next {
         
     | 
| 
      
 39 
     | 
    
         
            +
            	right: 2px;
         
     | 
| 
      
 40 
     | 
    
         
            +
            }
         
     | 
| 
      
 41 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-prev-hover {
         
     | 
| 
      
 42 
     | 
    
         
            +
            	left: 1px;
         
     | 
| 
      
 43 
     | 
    
         
            +
            }
         
     | 
| 
      
 44 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-next-hover {
         
     | 
| 
      
 45 
     | 
    
         
            +
            	right: 1px;
         
     | 
| 
      
 46 
     | 
    
         
            +
            }
         
     | 
| 
      
 47 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-prev span,
         
     | 
| 
      
 48 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-next span {
         
     | 
| 
      
 49 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 50 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 51 
     | 
    
         
            +
            	left: 50%;
         
     | 
| 
      
 52 
     | 
    
         
            +
            	margin-left: -8px;
         
     | 
| 
      
 53 
     | 
    
         
            +
            	top: 50%;
         
     | 
| 
      
 54 
     | 
    
         
            +
            	margin-top: -8px;
         
     | 
| 
      
 55 
     | 
    
         
            +
            }
         
     | 
| 
      
 56 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-title {
         
     | 
| 
      
 57 
     | 
    
         
            +
            	margin: 0 2.3em;
         
     | 
| 
      
 58 
     | 
    
         
            +
            	line-height: 1.8em;
         
     | 
| 
      
 59 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 60 
     | 
    
         
            +
            }
         
     | 
| 
      
 61 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-title select {
         
     | 
| 
      
 62 
     | 
    
         
            +
            	font-size: 1em;
         
     | 
| 
      
 63 
     | 
    
         
            +
            	margin: 1px 0;
         
     | 
| 
      
 64 
     | 
    
         
            +
            }
         
     | 
| 
      
 65 
     | 
    
         
            +
            .ui-datepicker select.ui-datepicker-month-year {
         
     | 
| 
      
 66 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 67 
     | 
    
         
            +
            }
         
     | 
| 
      
 68 
     | 
    
         
            +
            .ui-datepicker select.ui-datepicker-month,
         
     | 
| 
      
 69 
     | 
    
         
            +
            .ui-datepicker select.ui-datepicker-year {
         
     | 
| 
      
 70 
     | 
    
         
            +
            	width: 49%;
         
     | 
| 
      
 71 
     | 
    
         
            +
            }
         
     | 
| 
      
 72 
     | 
    
         
            +
            .ui-datepicker table {
         
     | 
| 
      
 73 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 74 
     | 
    
         
            +
            	font-size: .9em;
         
     | 
| 
      
 75 
     | 
    
         
            +
            	border-collapse: collapse;
         
     | 
| 
      
 76 
     | 
    
         
            +
            	margin: 0 0 .4em;
         
     | 
| 
      
 77 
     | 
    
         
            +
            }
         
     | 
| 
      
 78 
     | 
    
         
            +
            .ui-datepicker th {
         
     | 
| 
      
 79 
     | 
    
         
            +
            	padding: .7em .3em;
         
     | 
| 
      
 80 
     | 
    
         
            +
            	text-align: center;
         
     | 
| 
      
 81 
     | 
    
         
            +
            	font-weight: bold;
         
     | 
| 
      
 82 
     | 
    
         
            +
            	border: 0;
         
     | 
| 
      
 83 
     | 
    
         
            +
            }
         
     | 
| 
      
 84 
     | 
    
         
            +
            .ui-datepicker td {
         
     | 
| 
      
 85 
     | 
    
         
            +
            	border: 0;
         
     | 
| 
      
 86 
     | 
    
         
            +
            	padding: 1px;
         
     | 
| 
      
 87 
     | 
    
         
            +
            }
         
     | 
| 
      
 88 
     | 
    
         
            +
            .ui-datepicker td span,
         
     | 
| 
      
 89 
     | 
    
         
            +
            .ui-datepicker td a {
         
     | 
| 
      
 90 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 91 
     | 
    
         
            +
            	padding: .2em;
         
     | 
| 
      
 92 
     | 
    
         
            +
            	text-align: right;
         
     | 
| 
      
 93 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 94 
     | 
    
         
            +
            }
         
     | 
| 
      
 95 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-buttonpane {
         
     | 
| 
      
 96 
     | 
    
         
            +
            	background-image: none;
         
     | 
| 
      
 97 
     | 
    
         
            +
            	margin: .7em 0 0 0;
         
     | 
| 
      
 98 
     | 
    
         
            +
            	padding: 0 .2em;
         
     | 
| 
      
 99 
     | 
    
         
            +
            	border-left: 0;
         
     | 
| 
      
 100 
     | 
    
         
            +
            	border-right: 0;
         
     | 
| 
      
 101 
     | 
    
         
            +
            	border-bottom: 0;
         
     | 
| 
      
 102 
     | 
    
         
            +
            }
         
     | 
| 
      
 103 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-buttonpane button {
         
     | 
| 
      
 104 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 105 
     | 
    
         
            +
            	margin: .5em .2em .4em;
         
     | 
| 
      
 106 
     | 
    
         
            +
            	cursor: pointer;
         
     | 
| 
      
 107 
     | 
    
         
            +
            	padding: .2em .6em .3em .6em;
         
     | 
| 
      
 108 
     | 
    
         
            +
            	width: auto;
         
     | 
| 
      
 109 
     | 
    
         
            +
            	overflow: visible;
         
     | 
| 
      
 110 
     | 
    
         
            +
            }
         
     | 
| 
      
 111 
     | 
    
         
            +
            .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
         
     | 
| 
      
 112 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 113 
     | 
    
         
            +
            }
         
     | 
| 
       36 
114 
     | 
    
         | 
| 
       37 
115 
     | 
    
         
             
            /* with multiple calendars */
         
     | 
| 
       38 
     | 
    
         
            -
            .ui-datepicker.ui-datepicker-multi { 
     | 
| 
       39 
     | 
    
         
            -
             
     | 
| 
       40 
     | 
    
         
            -
             
     | 
| 
       41 
     | 
    
         
            -
            .ui-datepicker-multi 
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
       44 
     | 
    
         
            -
            .ui-datepicker-multi .ui-datepicker-group 
     | 
| 
       45 
     | 
    
         
            -
             
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
             
     | 
| 
      
 116 
     | 
    
         
            +
            .ui-datepicker.ui-datepicker-multi {
         
     | 
| 
      
 117 
     | 
    
         
            +
            	width: auto;
         
     | 
| 
      
 118 
     | 
    
         
            +
            }
         
     | 
| 
      
 119 
     | 
    
         
            +
            .ui-datepicker-multi .ui-datepicker-group {
         
     | 
| 
      
 120 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 121 
     | 
    
         
            +
            }
         
     | 
| 
      
 122 
     | 
    
         
            +
            .ui-datepicker-multi .ui-datepicker-group table {
         
     | 
| 
      
 123 
     | 
    
         
            +
            	width: 95%;
         
     | 
| 
      
 124 
     | 
    
         
            +
            	margin: 0 auto .4em;
         
     | 
| 
      
 125 
     | 
    
         
            +
            }
         
     | 
| 
      
 126 
     | 
    
         
            +
            .ui-datepicker-multi-2 .ui-datepicker-group {
         
     | 
| 
      
 127 
     | 
    
         
            +
            	width: 50%;
         
     | 
| 
      
 128 
     | 
    
         
            +
            }
         
     | 
| 
      
 129 
     | 
    
         
            +
            .ui-datepicker-multi-3 .ui-datepicker-group {
         
     | 
| 
      
 130 
     | 
    
         
            +
            	width: 33.3%;
         
     | 
| 
      
 131 
     | 
    
         
            +
            }
         
     | 
| 
      
 132 
     | 
    
         
            +
            .ui-datepicker-multi-4 .ui-datepicker-group {
         
     | 
| 
      
 133 
     | 
    
         
            +
            	width: 25%;
         
     | 
| 
      
 134 
     | 
    
         
            +
            }
         
     | 
| 
      
 135 
     | 
    
         
            +
            .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
         
     | 
| 
      
 136 
     | 
    
         
            +
            .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
         
     | 
| 
      
 137 
     | 
    
         
            +
            	border-left-width: 0;
         
     | 
| 
      
 138 
     | 
    
         
            +
            }
         
     | 
| 
      
 139 
     | 
    
         
            +
            .ui-datepicker-multi .ui-datepicker-buttonpane {
         
     | 
| 
      
 140 
     | 
    
         
            +
            	clear: left;
         
     | 
| 
      
 141 
     | 
    
         
            +
            }
         
     | 
| 
      
 142 
     | 
    
         
            +
            .ui-datepicker-row-break {
         
     | 
| 
      
 143 
     | 
    
         
            +
            	clear: both;
         
     | 
| 
      
 144 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 145 
     | 
    
         
            +
            	font-size: 0;
         
     | 
| 
      
 146 
     | 
    
         
            +
            }
         
     | 
| 
       48 
147 
     | 
    
         | 
| 
       49 
148 
     | 
    
         
             
            /* RTL support */
         
     | 
| 
       50 
     | 
    
         
            -
            .ui-datepicker-rtl { 
     | 
| 
       51 
     | 
    
         
            -
             
     | 
| 
       52 
     | 
    
         
            -
             
     | 
| 
       53 
     | 
    
         
            -
            .ui-datepicker-rtl .ui-datepicker-prev 
     | 
| 
       54 
     | 
    
         
            -
             
     | 
| 
       55 
     | 
    
         
            -
             
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
            .ui-datepicker-rtl .ui-datepicker- 
     | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
       59 
     | 
    
         
            -
             
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
             
     | 
| 
       62 
     | 
    
         
            -
             
     | 
| 
       63 
     | 
    
         
            -
             
     | 
| 
       64 
     | 
    
         
            -
             
     | 
| 
       65 
     | 
    
         
            -
             
     | 
| 
       66 
     | 
    
         
            -
             
     | 
| 
       67 
     | 
    
         
            -
             
     | 
| 
       68 
     | 
    
         
            -
             
     | 
| 
       69 
     | 
    
         
            -
             
     | 
| 
       70 
     | 
    
         
            -
             
     | 
| 
       71 
     | 
    
         
            -
            }
         
     | 
| 
      
 149 
     | 
    
         
            +
            .ui-datepicker-rtl {
         
     | 
| 
      
 150 
     | 
    
         
            +
            	direction: rtl;
         
     | 
| 
      
 151 
     | 
    
         
            +
            }
         
     | 
| 
      
 152 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-prev {
         
     | 
| 
      
 153 
     | 
    
         
            +
            	right: 2px;
         
     | 
| 
      
 154 
     | 
    
         
            +
            	left: auto;
         
     | 
| 
      
 155 
     | 
    
         
            +
            }
         
     | 
| 
      
 156 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-next {
         
     | 
| 
      
 157 
     | 
    
         
            +
            	left: 2px;
         
     | 
| 
      
 158 
     | 
    
         
            +
            	right: auto;
         
     | 
| 
      
 159 
     | 
    
         
            +
            }
         
     | 
| 
      
 160 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-prev:hover {
         
     | 
| 
      
 161 
     | 
    
         
            +
            	right: 1px;
         
     | 
| 
      
 162 
     | 
    
         
            +
            	left: auto;
         
     | 
| 
      
 163 
     | 
    
         
            +
            }
         
     | 
| 
      
 164 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-next:hover {
         
     | 
| 
      
 165 
     | 
    
         
            +
            	left: 1px;
         
     | 
| 
      
 166 
     | 
    
         
            +
            	right: auto;
         
     | 
| 
      
 167 
     | 
    
         
            +
            }
         
     | 
| 
      
 168 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-buttonpane {
         
     | 
| 
      
 169 
     | 
    
         
            +
            	clear: right;
         
     | 
| 
      
 170 
     | 
    
         
            +
            }
         
     | 
| 
      
 171 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-buttonpane button {
         
     | 
| 
      
 172 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 173 
     | 
    
         
            +
            }
         
     | 
| 
      
 174 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
         
     | 
| 
      
 175 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-group {
         
     | 
| 
      
 176 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 177 
     | 
    
         
            +
            }
         
     | 
| 
      
 178 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
         
     | 
| 
      
 179 
     | 
    
         
            +
            .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
         
     | 
| 
      
 180 
     | 
    
         
            +
            	border-right-width: 0;
         
     | 
| 
      
 181 
     | 
    
         
            +
            	border-left-width: 1px;
         
     | 
| 
      
 182 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,8 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /*!
         
     | 
| 
       2 
     | 
    
         
            -
             * jQuery UI Dialog 1. 
     | 
| 
      
 2 
     | 
    
         
            +
             * jQuery UI Dialog 1.10.0
         
     | 
| 
       3 
3 
     | 
    
         
             
             * http://jqueryui.com
         
     | 
| 
       4 
4 
     | 
    
         
             
             *
         
     | 
| 
       5 
     | 
    
         
            -
             * Copyright  
     | 
| 
      
 5 
     | 
    
         
            +
             * Copyright 2013 jQuery Foundation and other contributors
         
     | 
| 
       6 
6 
     | 
    
         
             
             * Released under the MIT license.
         
     | 
| 
       7 
7 
     | 
    
         
             
             * http://jquery.org/license
         
     | 
| 
       8 
8 
     | 
    
         
             
             *
         
     | 
| 
         @@ -14,15 +14,62 @@ 
     | 
|
| 
       14 
14 
     | 
    
         
             
             *= require jquery.ui.resizable
         
     | 
| 
       15 
15 
     | 
    
         
             
             *= require jquery.ui.theme
         
     | 
| 
       16 
16 
     | 
    
         
             
             */
         
     | 
| 
       17 
     | 
    
         
            -
            .ui-dialog { 
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
            .ui-dialog .ui-dialog- 
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
            .ui- 
     | 
| 
      
 17 
     | 
    
         
            +
            .ui-dialog {
         
     | 
| 
      
 18 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 19 
     | 
    
         
            +
            	top: 0;
         
     | 
| 
      
 20 
     | 
    
         
            +
            	left: 0;
         
     | 
| 
      
 21 
     | 
    
         
            +
            	padding: .2em;
         
     | 
| 
      
 22 
     | 
    
         
            +
            	outline: 0;
         
     | 
| 
      
 23 
     | 
    
         
            +
            }
         
     | 
| 
      
 24 
     | 
    
         
            +
            .ui-dialog .ui-dialog-titlebar {
         
     | 
| 
      
 25 
     | 
    
         
            +
            	padding: .4em 1em;
         
     | 
| 
      
 26 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 27 
     | 
    
         
            +
            }
         
     | 
| 
      
 28 
     | 
    
         
            +
            .ui-dialog .ui-dialog-title {
         
     | 
| 
      
 29 
     | 
    
         
            +
            	float: left;
         
     | 
| 
      
 30 
     | 
    
         
            +
            	margin: .1em 0;
         
     | 
| 
      
 31 
     | 
    
         
            +
            	white-space: nowrap;
         
     | 
| 
      
 32 
     | 
    
         
            +
            	width: 90%;
         
     | 
| 
      
 33 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 34 
     | 
    
         
            +
            	text-overflow: ellipsis;
         
     | 
| 
      
 35 
     | 
    
         
            +
            }
         
     | 
| 
      
 36 
     | 
    
         
            +
            .ui-dialog .ui-dialog-titlebar-close {
         
     | 
| 
      
 37 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 38 
     | 
    
         
            +
            	right: .3em;
         
     | 
| 
      
 39 
     | 
    
         
            +
            	top: 50%;
         
     | 
| 
      
 40 
     | 
    
         
            +
            	width: 21px;
         
     | 
| 
      
 41 
     | 
    
         
            +
            	margin: -10px 0 0 0;
         
     | 
| 
      
 42 
     | 
    
         
            +
            	padding: 1px;
         
     | 
| 
      
 43 
     | 
    
         
            +
            	height: 20px;
         
     | 
| 
      
 44 
     | 
    
         
            +
            }
         
     | 
| 
      
 45 
     | 
    
         
            +
            .ui-dialog .ui-dialog-content {
         
     | 
| 
      
 46 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 47 
     | 
    
         
            +
            	border: 0;
         
     | 
| 
      
 48 
     | 
    
         
            +
            	padding: .5em 1em;
         
     | 
| 
      
 49 
     | 
    
         
            +
            	background: none;
         
     | 
| 
      
 50 
     | 
    
         
            +
            	overflow: auto;
         
     | 
| 
      
 51 
     | 
    
         
            +
            }
         
     | 
| 
      
 52 
     | 
    
         
            +
            .ui-dialog .ui-dialog-buttonpane {
         
     | 
| 
      
 53 
     | 
    
         
            +
            	text-align: left;
         
     | 
| 
      
 54 
     | 
    
         
            +
            	border-width: 1px 0 0 0;
         
     | 
| 
      
 55 
     | 
    
         
            +
            	background-image: none;
         
     | 
| 
      
 56 
     | 
    
         
            +
            	margin-top: .5em;
         
     | 
| 
      
 57 
     | 
    
         
            +
            	padding: .3em 1em .5em .4em;
         
     | 
| 
      
 58 
     | 
    
         
            +
            }
         
     | 
| 
      
 59 
     | 
    
         
            +
            .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
         
     | 
| 
      
 60 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 61 
     | 
    
         
            +
            }
         
     | 
| 
      
 62 
     | 
    
         
            +
            .ui-dialog .ui-dialog-buttonpane button {
         
     | 
| 
      
 63 
     | 
    
         
            +
            	margin: .5em .4em .5em 0;
         
     | 
| 
      
 64 
     | 
    
         
            +
            	cursor: pointer;
         
     | 
| 
      
 65 
     | 
    
         
            +
            }
         
     | 
| 
      
 66 
     | 
    
         
            +
            .ui-dialog .ui-resizable-se {
         
     | 
| 
      
 67 
     | 
    
         
            +
            	width: 12px;
         
     | 
| 
      
 68 
     | 
    
         
            +
            	height: 12px;
         
     | 
| 
      
 69 
     | 
    
         
            +
            	right: -5px;
         
     | 
| 
      
 70 
     | 
    
         
            +
            	bottom: -5px;
         
     | 
| 
      
 71 
     | 
    
         
            +
            	background-position: 16px 16px;
         
     | 
| 
      
 72 
     | 
    
         
            +
            }
         
     | 
| 
      
 73 
     | 
    
         
            +
            .ui-draggable .ui-dialog-titlebar {
         
     | 
| 
      
 74 
     | 
    
         
            +
            	cursor: move;
         
     | 
| 
      
 75 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,8 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /*!
         
     | 
| 
       2 
     | 
    
         
            -
             * jQuery UI Menu 1. 
     | 
| 
      
 2 
     | 
    
         
            +
             * jQuery UI Menu 1.10.0
         
     | 
| 
       3 
3 
     | 
    
         
             
             * http://jqueryui.com
         
     | 
| 
       4 
4 
     | 
    
         
             
             *
         
     | 
| 
       5 
     | 
    
         
            -
             * Copyright  
     | 
| 
      
 5 
     | 
    
         
            +
             * Copyright 2013 jQuery Foundation and other contributors
         
     | 
| 
       6 
6 
     | 
    
         
             
             * Released under the MIT license.
         
     | 
| 
       7 
7 
     | 
    
         
             
             * http://jquery.org/license
         
     | 
| 
       8 
8 
     | 
    
         
             
             *
         
     | 
| 
         @@ -12,23 +12,70 @@ 
     | 
|
| 
       12 
12 
     | 
    
         
             
             *= require jquery.ui.core
         
     | 
| 
       13 
13 
     | 
    
         
             
             *= require jquery.ui.theme
         
     | 
| 
       14 
14 
     | 
    
         
             
             */
         
     | 
| 
       15 
     | 
    
         
            -
            .ui-menu { 
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
      
 15 
     | 
    
         
            +
            .ui-menu {
         
     | 
| 
      
 16 
     | 
    
         
            +
            	list-style: none;
         
     | 
| 
      
 17 
     | 
    
         
            +
            	padding: 2px;
         
     | 
| 
      
 18 
     | 
    
         
            +
            	margin: 0;
         
     | 
| 
      
 19 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 20 
     | 
    
         
            +
            	outline: none;
         
     | 
| 
      
 21 
     | 
    
         
            +
            }
         
     | 
| 
      
 22 
     | 
    
         
            +
            .ui-menu .ui-menu {
         
     | 
| 
      
 23 
     | 
    
         
            +
            	margin-top: -3px;
         
     | 
| 
      
 24 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 25 
     | 
    
         
            +
            }
         
     | 
| 
      
 26 
     | 
    
         
            +
            .ui-menu .ui-menu-item {
         
     | 
| 
      
 27 
     | 
    
         
            +
            	margin: 0;
         
     | 
| 
      
 28 
     | 
    
         
            +
            	padding: 0;
         
     | 
| 
      
 29 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 30 
     | 
    
         
            +
            }
         
     | 
| 
      
 31 
     | 
    
         
            +
            .ui-menu .ui-menu-divider {
         
     | 
| 
      
 32 
     | 
    
         
            +
            	margin: 5px -2px 5px -2px;
         
     | 
| 
      
 33 
     | 
    
         
            +
            	height: 0;
         
     | 
| 
      
 34 
     | 
    
         
            +
            	font-size: 0;
         
     | 
| 
      
 35 
     | 
    
         
            +
            	line-height: 0;
         
     | 
| 
      
 36 
     | 
    
         
            +
            	border-width: 1px 0 0 0;
         
     | 
| 
      
 37 
     | 
    
         
            +
            }
         
     | 
| 
      
 38 
     | 
    
         
            +
            .ui-menu .ui-menu-item a {
         
     | 
| 
      
 39 
     | 
    
         
            +
            	text-decoration: none;
         
     | 
| 
      
 40 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 41 
     | 
    
         
            +
            	padding: 2px .4em;
         
     | 
| 
      
 42 
     | 
    
         
            +
            	line-height: 1.5;
         
     | 
| 
      
 43 
     | 
    
         
            +
            	min-height: 0; /* support: IE7 */
         
     | 
| 
      
 44 
     | 
    
         
            +
            	font-weight: normal;
         
     | 
| 
      
 45 
     | 
    
         
            +
            }
         
     | 
| 
       20 
46 
     | 
    
         
             
            .ui-menu .ui-menu-item a.ui-state-focus,
         
     | 
| 
       21 
     | 
    
         
            -
            .ui-menu .ui-menu-item a.ui-state-active { 
     | 
| 
      
 47 
     | 
    
         
            +
            .ui-menu .ui-menu-item a.ui-state-active {
         
     | 
| 
      
 48 
     | 
    
         
            +
            	font-weight: normal;
         
     | 
| 
      
 49 
     | 
    
         
            +
            	margin: -1px;
         
     | 
| 
      
 50 
     | 
    
         
            +
            }
         
     | 
| 
       22 
51 
     | 
    
         | 
| 
       23 
     | 
    
         
            -
            .ui-menu .ui-state-disabled { 
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
      
 52 
     | 
    
         
            +
            .ui-menu .ui-state-disabled {
         
     | 
| 
      
 53 
     | 
    
         
            +
            	font-weight: normal;
         
     | 
| 
      
 54 
     | 
    
         
            +
            	margin: .4em 0 .2em;
         
     | 
| 
      
 55 
     | 
    
         
            +
            	line-height: 1.5;
         
     | 
| 
      
 56 
     | 
    
         
            +
            }
         
     | 
| 
      
 57 
     | 
    
         
            +
            .ui-menu .ui-state-disabled a {
         
     | 
| 
      
 58 
     | 
    
         
            +
            	cursor: default;
         
     | 
| 
      
 59 
     | 
    
         
            +
            }
         
     | 
| 
       25 
60 
     | 
    
         | 
| 
       26 
61 
     | 
    
         
             
            /* icon support */
         
     | 
| 
       27 
     | 
    
         
            -
            .ui-menu-icons { 
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
      
 62 
     | 
    
         
            +
            .ui-menu-icons {
         
     | 
| 
      
 63 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 64 
     | 
    
         
            +
            }
         
     | 
| 
      
 65 
     | 
    
         
            +
            .ui-menu-icons .ui-menu-item a {
         
     | 
| 
      
 66 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 67 
     | 
    
         
            +
            	padding-left: 2em;
         
     | 
| 
      
 68 
     | 
    
         
            +
            }
         
     | 
| 
       29 
69 
     | 
    
         | 
| 
       30 
70 
     | 
    
         
             
            /* left-aligned */
         
     | 
| 
       31 
     | 
    
         
            -
            .ui-menu .ui-icon { 
     | 
| 
      
 71 
     | 
    
         
            +
            .ui-menu .ui-icon {
         
     | 
| 
      
 72 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 73 
     | 
    
         
            +
            	top: .2em;
         
     | 
| 
      
 74 
     | 
    
         
            +
            	left: .2em;
         
     | 
| 
      
 75 
     | 
    
         
            +
            }
         
     | 
| 
       32 
76 
     | 
    
         | 
| 
       33 
77 
     | 
    
         
             
            /* right-aligned */
         
     | 
| 
       34 
     | 
    
         
            -
            .ui-menu .ui-menu-icon { 
     | 
| 
      
 78 
     | 
    
         
            +
            .ui-menu .ui-menu-icon {
         
     | 
| 
      
 79 
     | 
    
         
            +
            	position: static;
         
     | 
| 
      
 80 
     | 
    
         
            +
            	float: right;
         
     | 
| 
      
 81 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,8 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /*!
         
     | 
| 
       2 
     | 
    
         
            -
             * jQuery UI Progressbar 1. 
     | 
| 
      
 2 
     | 
    
         
            +
             * jQuery UI Progressbar 1.10.0
         
     | 
| 
       3 
3 
     | 
    
         
             
             * http://jqueryui.com
         
     | 
| 
       4 
4 
     | 
    
         
             
             *
         
     | 
| 
       5 
     | 
    
         
            -
             * Copyright  
     | 
| 
      
 5 
     | 
    
         
            +
             * Copyright 2013 jQuery Foundation and other contributors
         
     | 
| 
       6 
6 
     | 
    
         
             
             * Released under the MIT license.
         
     | 
| 
       7 
7 
     | 
    
         
             
             * http://jquery.org/license
         
     | 
| 
       8 
8 
     | 
    
         
             
             *
         
     | 
| 
         @@ -12,5 +12,21 @@ 
     | 
|
| 
       12 
12 
     | 
    
         
             
             *= require jquery.ui.core
         
     | 
| 
       13 
13 
     | 
    
         
             
             *= require jquery.ui.theme
         
     | 
| 
       14 
14 
     | 
    
         
             
             */
         
     | 
| 
       15 
     | 
    
         
            -
            .ui-progressbar { 
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
      
 15 
     | 
    
         
            +
            .ui-progressbar {
         
     | 
| 
      
 16 
     | 
    
         
            +
            	height: 2em;
         
     | 
| 
      
 17 
     | 
    
         
            +
            	text-align: left;
         
     | 
| 
      
 18 
     | 
    
         
            +
            	overflow: hidden;
         
     | 
| 
      
 19 
     | 
    
         
            +
            }
         
     | 
| 
      
 20 
     | 
    
         
            +
            .ui-progressbar .ui-progressbar-value {
         
     | 
| 
      
 21 
     | 
    
         
            +
            	margin: -1px;
         
     | 
| 
      
 22 
     | 
    
         
            +
            	height: 100%;
         
     | 
| 
      
 23 
     | 
    
         
            +
            }
         
     | 
| 
      
 24 
     | 
    
         
            +
            .ui-progressbar .ui-progressbar-overlay {
         
     | 
| 
      
 25 
     | 
    
         
            +
            	background: url("images/animated-overlay.gif");
         
     | 
| 
      
 26 
     | 
    
         
            +
            	height: 100%;
         
     | 
| 
      
 27 
     | 
    
         
            +
            	filter: alpha(opacity=25);
         
     | 
| 
      
 28 
     | 
    
         
            +
            	opacity: 0.25;
         
     | 
| 
      
 29 
     | 
    
         
            +
            }
         
     | 
| 
      
 30 
     | 
    
         
            +
            .ui-progressbar-indeterminate .ui-progressbar-value {
         
     | 
| 
      
 31 
     | 
    
         
            +
            	background-image: none;
         
     | 
| 
      
 32 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,8 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /*!
         
     | 
| 
       2 
     | 
    
         
            -
             * jQuery UI Resizable 1. 
     | 
| 
      
 2 
     | 
    
         
            +
             * jQuery UI Resizable 1.10.0
         
     | 
| 
       3 
3 
     | 
    
         
             
             * http://jqueryui.com
         
     | 
| 
       4 
4 
     | 
    
         
             
             *
         
     | 
| 
       5 
     | 
    
         
            -
             * Copyright  
     | 
| 
      
 5 
     | 
    
         
            +
             * Copyright 2013 jQuery Foundation and other contributors
         
     | 
| 
       6 
6 
     | 
    
         
             
             * Released under the MIT license.
         
     | 
| 
       7 
7 
     | 
    
         
             
             * http://jquery.org/license
         
     | 
| 
       8 
8 
     | 
    
         
             
             *
         
     | 
| 
         @@ -12,14 +12,71 @@ 
     | 
|
| 
       12 
12 
     | 
    
         
             
             *= require jquery.ui.core
         
     | 
| 
       13 
13 
     | 
    
         
             
             *= require jquery.ui.theme
         
     | 
| 
       14 
14 
     | 
    
         
             
             */
         
     | 
| 
       15 
     | 
    
         
            -
            .ui-resizable { 
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
            .ui-resizable- 
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
            .ui-resizable- 
     | 
| 
       24 
     | 
    
         
            -
            .ui-resizable- 
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
      
 15 
     | 
    
         
            +
            .ui-resizable {
         
     | 
| 
      
 16 
     | 
    
         
            +
            	position: relative;
         
     | 
| 
      
 17 
     | 
    
         
            +
            }
         
     | 
| 
      
 18 
     | 
    
         
            +
            .ui-resizable-handle {
         
     | 
| 
      
 19 
     | 
    
         
            +
            	position: absolute;
         
     | 
| 
      
 20 
     | 
    
         
            +
            	font-size: 0.1px;
         
     | 
| 
      
 21 
     | 
    
         
            +
            	display: block;
         
     | 
| 
      
 22 
     | 
    
         
            +
            }
         
     | 
| 
      
 23 
     | 
    
         
            +
            .ui-resizable-disabled .ui-resizable-handle,
         
     | 
| 
      
 24 
     | 
    
         
            +
            .ui-resizable-autohide .ui-resizable-handle {
         
     | 
| 
      
 25 
     | 
    
         
            +
            	display: none;
         
     | 
| 
      
 26 
     | 
    
         
            +
            }
         
     | 
| 
      
 27 
     | 
    
         
            +
            .ui-resizable-n {
         
     | 
| 
      
 28 
     | 
    
         
            +
            	cursor: n-resize;
         
     | 
| 
      
 29 
     | 
    
         
            +
            	height: 7px;
         
     | 
| 
      
 30 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 31 
     | 
    
         
            +
            	top: -5px;
         
     | 
| 
      
 32 
     | 
    
         
            +
            	left: 0;
         
     | 
| 
      
 33 
     | 
    
         
            +
            }
         
     | 
| 
      
 34 
     | 
    
         
            +
            .ui-resizable-s {
         
     | 
| 
      
 35 
     | 
    
         
            +
            	cursor: s-resize;
         
     | 
| 
      
 36 
     | 
    
         
            +
            	height: 7px;
         
     | 
| 
      
 37 
     | 
    
         
            +
            	width: 100%;
         
     | 
| 
      
 38 
     | 
    
         
            +
            	bottom: -5px;
         
     | 
| 
      
 39 
     | 
    
         
            +
            	left: 0;
         
     | 
| 
      
 40 
     | 
    
         
            +
            }
         
     | 
| 
      
 41 
     | 
    
         
            +
            .ui-resizable-e {
         
     | 
| 
      
 42 
     | 
    
         
            +
            	cursor: e-resize;
         
     | 
| 
      
 43 
     | 
    
         
            +
            	width: 7px;
         
     | 
| 
      
 44 
     | 
    
         
            +
            	right: -5px;
         
     | 
| 
      
 45 
     | 
    
         
            +
            	top: 0;
         
     | 
| 
      
 46 
     | 
    
         
            +
            	height: 100%;
         
     | 
| 
      
 47 
     | 
    
         
            +
            }
         
     | 
| 
      
 48 
     | 
    
         
            +
            .ui-resizable-w {
         
     | 
| 
      
 49 
     | 
    
         
            +
            	cursor: w-resize;
         
     | 
| 
      
 50 
     | 
    
         
            +
            	width: 7px;
         
     | 
| 
      
 51 
     | 
    
         
            +
            	left: -5px;
         
     | 
| 
      
 52 
     | 
    
         
            +
            	top: 0;
         
     | 
| 
      
 53 
     | 
    
         
            +
            	height: 100%;
         
     | 
| 
      
 54 
     | 
    
         
            +
            }
         
     | 
| 
      
 55 
     | 
    
         
            +
            .ui-resizable-se {
         
     | 
| 
      
 56 
     | 
    
         
            +
            	cursor: se-resize;
         
     | 
| 
      
 57 
     | 
    
         
            +
            	width: 12px;
         
     | 
| 
      
 58 
     | 
    
         
            +
            	height: 12px;
         
     | 
| 
      
 59 
     | 
    
         
            +
            	right: 1px;
         
     | 
| 
      
 60 
     | 
    
         
            +
            	bottom: 1px;
         
     | 
| 
      
 61 
     | 
    
         
            +
            }
         
     | 
| 
      
 62 
     | 
    
         
            +
            .ui-resizable-sw {
         
     | 
| 
      
 63 
     | 
    
         
            +
            	cursor: sw-resize;
         
     | 
| 
      
 64 
     | 
    
         
            +
            	width: 9px;
         
     | 
| 
      
 65 
     | 
    
         
            +
            	height: 9px;
         
     | 
| 
      
 66 
     | 
    
         
            +
            	left: -5px;
         
     | 
| 
      
 67 
     | 
    
         
            +
            	bottom: -5px;
         
     | 
| 
      
 68 
     | 
    
         
            +
            }
         
     | 
| 
      
 69 
     | 
    
         
            +
            .ui-resizable-nw {
         
     | 
| 
      
 70 
     | 
    
         
            +
            	cursor: nw-resize;
         
     | 
| 
      
 71 
     | 
    
         
            +
            	width: 9px;
         
     | 
| 
      
 72 
     | 
    
         
            +
            	height: 9px;
         
     | 
| 
      
 73 
     | 
    
         
            +
            	left: -5px;
         
     | 
| 
      
 74 
     | 
    
         
            +
            	top: -5px;
         
     | 
| 
      
 75 
     | 
    
         
            +
            }
         
     | 
| 
      
 76 
     | 
    
         
            +
            .ui-resizable-ne {
         
     | 
| 
      
 77 
     | 
    
         
            +
            	cursor: ne-resize;
         
     | 
| 
      
 78 
     | 
    
         
            +
            	width: 9px;
         
     | 
| 
      
 79 
     | 
    
         
            +
            	height: 9px;
         
     | 
| 
      
 80 
     | 
    
         
            +
            	right: -5px;
         
     | 
| 
      
 81 
     | 
    
         
            +
            	top: -5px;
         
     | 
| 
      
 82 
     | 
    
         
            +
            }
         
     |