keppler 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +8 -0
  3. data/CODE_OF_CONDUCT.md +74 -0
  4. data/Gemfile.lock +26 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +93 -22
  7. data/Rakefile +6 -0
  8. data/bin/keppler +6 -2
  9. data/bin/setup +2 -1
  10. data/exe/keppler +6 -0
  11. data/installer/core/.gitignore +87 -0
  12. data/installer/core/.ruby-version +1 -0
  13. data/installer/core/Gemfile +6 -4
  14. data/installer/core/README.md +86 -50
  15. data/installer/core/app/assets/images/.keep +0 -0
  16. data/installer/core/app/assets/images/admin/astronauta_keppler.svg +123 -0
  17. data/installer/core/app/assets/images/admin/avatar_keppler.svg +100 -0
  18. data/installer/core/app/assets/images/admin/image_default.png +0 -0
  19. data/installer/core/app/assets/images/app/fondo.svg +19 -0
  20. data/installer/core/app/assets/javascripts/admin/file_upload.coffee +11 -0
  21. data/installer/core/app/assets/javascripts/admin/main.coffee +23 -12
  22. data/installer/core/app/assets/javascripts/admin/preview_template.js +2 -2
  23. data/installer/core/app/assets/javascripts/admin/sidebar.js +8 -7
  24. data/installer/core/app/assets/javascripts/admin/swal.js +37 -0
  25. data/installer/core/app/assets/javascripts/admin/switch.js +6 -0
  26. data/installer/core/app/assets/javascripts/admin/tooltips.coffee +3 -0
  27. data/installer/core/app/assets/javascripts/errors/application.js.coffee +1 -0
  28. data/installer/core/app/assets/javascripts/errors/errors.js +113 -0
  29. data/installer/core/app/assets/javascripts/keppler_ga_dashboard/view-selector2.js +1 -1
  30. data/installer/core/app/assets/javascripts/vue_admin/index.js +34 -9
  31. data/installer/core/app/assets/stylesheets/admin/application.scss +4 -14
  32. data/installer/core/app/assets/stylesheets/admin/components/navigation/_navbar.scss +4 -5
  33. data/installer/core/app/assets/stylesheets/admin/components/navigation/_sidebar.scss +26 -17
  34. data/installer/core/app/assets/stylesheets/admin/pages/_appearance.scss +5 -0
  35. data/installer/core/app/assets/stylesheets/admin/pages/_customize.scss +21 -0
  36. data/installer/core/app/assets/stylesheets/admin/pages/_datepicker.scss +1088 -0
  37. data/installer/core/app/assets/stylesheets/admin/pages/_files.scss +26 -9
  38. data/installer/core/app/assets/stylesheets/admin/pages/_form.scss +19 -6
  39. data/installer/core/app/assets/stylesheets/admin/pages/_index.scss +4 -8
  40. data/installer/core/app/assets/stylesheets/admin/pages/_listing.scss +5 -0
  41. data/installer/core/app/assets/stylesheets/admin/pages/_navbar.scss +9 -2
  42. data/installer/core/app/assets/stylesheets/admin/pages/_roles.scss +6 -0
  43. data/installer/core/app/assets/stylesheets/admin/pages/_search.scss +24 -28
  44. data/installer/core/app/assets/stylesheets/admin/pages/_sidebar.scss +1 -1
  45. data/installer/core/app/assets/stylesheets/admin/pages/_switchs.scss +135 -39
  46. data/installer/core/app/assets/stylesheets/admin/pages/_timepicker.scss +16 -0
  47. data/installer/core/app/assets/stylesheets/admin/pages/_user.scss +6 -0
  48. data/installer/core/app/assets/stylesheets/admin/utils/_base.scss +6 -1
  49. data/installer/core/app/assets/stylesheets/admin/utils/_theme.scss +24 -11
  50. data/installer/core/app/assets/stylesheets/admin/utils/_variables.scss +1 -1
  51. data/installer/core/app/assets/stylesheets/app/pages/_front.sass +70 -56
  52. data/installer/core/app/assets/stylesheets/errors/errors.scss +161 -120
  53. data/installer/core/app/assets/stylesheets/vendor/admin-lte/_skin-blue.scss +1 -1
  54. data/installer/core/app/controllers/admin/admin_controller.rb +1 -1
  55. data/installer/core/app/controllers/admin/customizes_controller.rb +6 -8
  56. data/installer/core/app/controllers/admin/meta_tags_controller.rb +14 -18
  57. data/installer/core/app/controllers/admin/roles_controller.rb +176 -0
  58. data/installer/core/app/controllers/admin/scripts_controller.rb +14 -33
  59. data/installer/core/app/controllers/admin/settings_controller.rb +26 -27
  60. data/installer/core/app/controllers/admin/users_controller.rb +35 -29
  61. data/installer/core/app/controllers/app/app_controller.rb +27 -4
  62. data/installer/core/app/controllers/application_controller.rb +39 -1
  63. data/installer/core/app/controllers/concerns/.keep +0 -0
  64. data/installer/core/app/helpers/admin_helper.rb +5 -0
  65. data/installer/core/app/helpers/application_helper.rb +9 -0
  66. data/installer/core/app/helpers/roles_helper.rb +2 -0
  67. data/installer/core/app/inputs/file_material_input.rb +4 -2
  68. data/installer/core/app/inputs/keppler_boolean_input.rb +74 -0
  69. data/installer/core/app/inputs/keppler_file_input.rb +70 -0
  70. data/installer/core/app/mailers/.keep +0 -0
  71. data/installer/core/app/mailers/application_mailer.rb +13 -13
  72. data/installer/core/app/models/.keep +0 -0
  73. data/installer/core/app/models/appearance.rb +2 -0
  74. data/installer/core/app/models/application_record.rb +3 -0
  75. data/installer/core/app/models/concerns/.keep +0 -0
  76. data/installer/core/app/models/concerns/downloadable.rb +13 -0
  77. data/installer/core/app/models/concerns/sortable.rb +9 -0
  78. data/installer/core/app/models/concerns/uploadable.rb +10 -0
  79. data/installer/core/app/models/customize.rb +8 -6
  80. data/installer/core/app/models/front.rb +3 -0
  81. data/installer/core/app/models/google_analytics_setting.rb +2 -0
  82. data/installer/core/app/models/meta_tag.rb +27 -14
  83. data/installer/core/app/models/permission.rb +3 -0
  84. data/installer/core/app/models/role.rb +62 -5
  85. data/installer/core/app/models/script.rb +6 -15
  86. data/installer/core/app/models/setting.rb +2 -0
  87. data/installer/core/app/models/smtp_setting.rb +2 -0
  88. data/installer/core/app/models/social_account.rb +2 -0
  89. data/installer/core/app/models/user.rb +17 -1
  90. data/installer/core/app/policies/application_policy.rb +4 -4
  91. data/installer/core/app/policies/controller_policy.rb +15 -11
  92. data/installer/core/app/policies/role_policy.rb +25 -0
  93. data/installer/core/app/policies/user_policy.rb +1 -1
  94. data/installer/core/app/uploaders/attachment_uploader.rb +18 -1
  95. data/installer/core/app/views/admin/customizes/_description.html.haml +4 -4
  96. data/installer/core/app/views/admin/customizes/_form.html.haml +4 -4
  97. data/installer/core/app/views/admin/customizes/_listing.html.haml +1 -1
  98. data/installer/core/app/views/admin/customizes/_switch_default_template.html.haml +8 -13
  99. data/installer/core/app/views/admin/customizes/_switch_template.html.haml +8 -11
  100. data/installer/core/app/views/admin/customizes/index.html.haml +9 -9
  101. data/installer/core/app/views/admin/layouts/_head.html.haml +3 -3
  102. data/installer/core/app/views/admin/layouts/_keppler_boolean_script.haml +12 -0
  103. data/installer/core/app/views/admin/layouts/_navigation.html.haml +17 -16
  104. data/installer/core/app/views/admin/layouts/_sidebar.html.haml +27 -36
  105. data/installer/core/app/views/admin/layouts/application.html.haml +1 -0
  106. data/installer/core/app/views/admin/layouts/index/remote_messages.js.haml +6 -6
  107. data/installer/core/app/views/admin/meta_tags/_index_show.html.haml +2 -2
  108. data/installer/core/app/views/admin/meta_tags/_listing.html.haml +6 -6
  109. data/installer/core/app/views/admin/meta_tags/index.html.haml +15 -29
  110. data/installer/core/app/views/admin/meta_tags/show.html.haml +7 -8
  111. data/installer/core/app/views/admin/roles/_description.html.haml +13 -0
  112. data/installer/core/app/views/admin/roles/_form.html.haml +27 -0
  113. data/installer/core/app/views/admin/roles/_index_show.html.haml +24 -0
  114. data/installer/core/app/views/admin/roles/_listing.html.haml +46 -0
  115. data/installer/core/app/views/admin/roles/_switch.html.haml +20 -0
  116. data/installer/core/app/views/admin/roles/add_permissions.html.haml +60 -0
  117. data/installer/core/app/views/admin/roles/create_permissions.html.haml +0 -0
  118. data/installer/core/app/views/admin/roles/create_permissions.js.erb +1 -0
  119. data/installer/core/app/views/admin/roles/edit.html.haml +1 -0
  120. data/installer/core/app/views/admin/roles/index.html.haml +80 -0
  121. data/installer/core/app/views/admin/roles/new.html.haml +1 -0
  122. data/installer/core/app/views/admin/roles/reload.js.haml +5 -0
  123. data/installer/core/app/views/admin/roles/show.html.haml +32 -0
  124. data/installer/core/app/views/admin/roles/show.js.haml +4 -0
  125. data/installer/core/app/views/admin/roles/show_description.js.erb +2 -0
  126. data/installer/core/app/views/admin/scripts/_index_show.html.haml +2 -2
  127. data/installer/core/app/views/admin/scripts/_listing.html.haml +13 -13
  128. data/installer/core/app/views/admin/scripts/index.html.haml +12 -26
  129. data/installer/core/app/views/admin/scripts/show.html.haml +4 -4
  130. data/installer/core/app/views/admin/settings/components/_preview.html.haml +1 -1
  131. data/installer/core/app/views/admin/settings/fields/_appearance.html.haml +25 -17
  132. data/installer/core/app/views/admin/settings/fields/_basic_information.html.haml +13 -7
  133. data/installer/core/app/views/admin/settings/fields/_email_setting.html.haml +16 -16
  134. data/installer/core/app/views/admin/settings/fields/_google_analytics_setting.html.haml +1 -1
  135. data/installer/core/app/views/admin/settings/fields/_social_accounts.html.haml +39 -39
  136. data/installer/core/app/views/admin/users/_form.html.haml +18 -25
  137. data/installer/core/app/views/admin/users/_index_show.html.haml +2 -2
  138. data/installer/core/app/views/admin/users/_listing.html.haml +6 -6
  139. data/installer/core/app/views/admin/users/delete_avatar.js.haml +3 -0
  140. data/installer/core/app/views/admin/users/filter_by_role.js.erb +9 -0
  141. data/installer/core/app/views/admin/users/index.html.haml +22 -22
  142. data/installer/core/app/views/admin/users/show.html.haml +10 -12
  143. data/installer/core/app/views/app/front/index.html.haml +137 -87
  144. data/installer/core/app/views/app/layouts/_footer.html.haml +2 -2
  145. data/installer/core/app/views/app/layouts/_head.html.haml +4 -12
  146. data/installer/core/app/views/app/layouts/_meta_tags.html.haml +38 -6
  147. data/installer/core/app/views/app/layouts/application.html.haml +8 -8
  148. data/installer/core/app/views/devise/sessions/new.html.haml +32 -28
  149. data/installer/core/app/views/errors/internal_server_error.html.haml +50 -7
  150. data/installer/core/app/views/errors/not_authorized.html.haml +75 -6
  151. data/installer/core/app/views/errors/not_found.html.haml +101 -7
  152. data/installer/core/app/views/errors/unprocessable.html.haml +50 -7
  153. data/installer/core/bin/update +31 -0
  154. data/installer/core/bin/yarn +11 -0
  155. data/installer/core/config/application.rb +1 -1
  156. data/installer/core/config/environments/production.rb +1 -1
  157. data/installer/core/config/initializers/carrierwave.rb +12 -0
  158. data/installer/core/config/initializers/mime_types.rb +2 -2
  159. data/installer/core/config/initializers/simple_form_bootstrap.rb +20 -1
  160. data/installer/core/config/initializers/simple_form_components.rb +61 -0
  161. data/installer/core/config/locales/en.yml +29 -6
  162. data/installer/core/config/locales/es.yml +32 -5
  163. data/installer/core/config/locales/simple_form.en.yml +1 -0
  164. data/installer/core/config/locales/simple_form.es.yml +3 -2
  165. data/installer/core/config/menu.yml +34 -8
  166. data/installer/core/config/permissions.yml +21 -0
  167. data/installer/core/config/routes.rb +56 -14
  168. data/installer/core/db/migrate/20140812210925_rolify_create_roles.rb +2 -0
  169. data/installer/core/db/migrate/20160128131802_create_scripts.rb +1 -0
  170. data/installer/core/db/migrate/20180503174351_create_permissions.rb +11 -0
  171. data/installer/core/db/seeds.rb +12 -6
  172. data/installer/core/lib/generators/keppler_front/templates/views/template.html.haml +222 -177
  173. data/installer/core/lib/generators/keppler_relation/keppler_relation_generator.rb +1 -1
  174. data/installer/core/lib/generators/keppler_scaffold/keppler_scaffold_generator.rb +57 -40
  175. data/installer/core/lib/generators/keppler_scaffold/templates/controllers/controller.rb +29 -30
  176. data/installer/core/lib/generators/keppler_scaffold/templates/models/model.rb +14 -20
  177. data/installer/core/lib/generators/keppler_scaffold/templates/views/_form.html.haml +24 -35
  178. data/installer/core/lib/generators/keppler_scaffold/templates/views/_index_show.html.haml +12 -11
  179. data/installer/core/lib/generators/keppler_scaffold/templates/views/_listing.html.haml +7 -7
  180. data/installer/core/lib/generators/keppler_scaffold/templates/views/index.html.haml +17 -33
  181. data/installer/core/lib/generators/keppler_scaffold/templates/views/show.html.haml +23 -24
  182. data/installer/core/plugins/keppler_ga_dashboard/app/assets/images/keppler_ga_dashboard/.keep +0 -0
  183. data/installer/core/plugins/keppler_ga_dashboard/config/permissions.yml +4 -0
  184. data/installer/core/plugins/keppler_ga_dashboard/keppler_ga_dashboard.gemspec +1 -1
  185. data/installer/core/test/controllers/.keep +0 -0
  186. data/installer/core/test/controllers/roles_controller_test.rb +48 -0
  187. data/installer/core/test/fixtures/.keep +0 -0
  188. data/installer/core/test/fixtures/permissions.yml +9 -0
  189. data/installer/core/test/helpers/.keep +0 -0
  190. data/installer/core/test/integration/.keep +0 -0
  191. data/installer/core/test/mailers/.keep +0 -0
  192. data/installer/core/test/models/.keep +0 -0
  193. data/installer/core/test/models/permission_test.rb +7 -0
  194. data/installer/core/test/system/roles_test.rb +43 -0
  195. data/installer/core/vendor/assets/javascripts/.keep +0 -0
  196. data/installer/core/vendor/assets/stylesheets/.keep +0 -0
  197. data/installer/plugins/concerns/commons.rb +47 -0
  198. data/installer/plugins/concerns/destroy_multiple.rb +33 -0
  199. data/installer/plugins/concerns/history.rb +24 -0
  200. data/installer/plugins/config/locales/en.yml +104 -0
  201. data/installer/plugins/config/locales/es.yml +139 -0
  202. data/installer/plugins/config/menu.yml +12 -0
  203. data/installer/plugins/config/permissions.yml +1 -0
  204. data/installer/plugins/generators/keppler_scaffold/keppler_scaffold_generator.rb +203 -0
  205. data/installer/plugins/generators/keppler_scaffold/templates/controllers/controller.rb +171 -0
  206. data/installer/plugins/generators/keppler_scaffold/templates/models/model.rb +41 -0
  207. data/installer/plugins/generators/keppler_scaffold/templates/policies/policy.rb +11 -0
  208. data/installer/plugins/generators/keppler_scaffold/templates/views/_description.html.haml +13 -0
  209. data/installer/plugins/generators/keppler_scaffold/templates/views/_form.html.haml +49 -0
  210. data/installer/plugins/generators/keppler_scaffold/templates/views/_index_show.html.haml +26 -0
  211. data/installer/plugins/generators/keppler_scaffold/templates/views/_listing.html.haml +65 -0
  212. data/installer/plugins/generators/keppler_scaffold/templates/views/edit.html.haml +1 -0
  213. data/installer/plugins/generators/keppler_scaffold/templates/views/index.html.haml +97 -0
  214. data/installer/plugins/generators/keppler_scaffold/templates/views/new.html.haml +1 -0
  215. data/installer/plugins/generators/keppler_scaffold/templates/views/reload.js.haml +5 -0
  216. data/installer/plugins/generators/keppler_scaffold/templates/views/show.html.haml +66 -0
  217. data/installer/plugins/generators/keppler_scaffold/templates/views/show.js.haml +4 -0
  218. data/installer/plugins/install.rb +156 -0
  219. data/installer/plugins/layouts/_navigation.html.haml +47 -0
  220. data/installer/plugins/layouts/application.html.haml +24 -0
  221. data/keppler.gemspec +35 -0
  222. data/lib/keppler.rb +0 -1
  223. data/lib/keppler/add.rb +13 -0
  224. data/lib/keppler/cli.rb +134 -5
  225. data/lib/keppler/delete.rb +13 -0
  226. data/lib/keppler/version.rb +1 -1
  227. metadata +117 -23
  228. data/installer/core/app/assets/images/admin/space.png +0 -0
  229. data/installer/core/app/assets/stylesheets/admin/pages/_header.scss +0 -34
  230. data/installer/core/app/assets/stylesheets/admin/pages/_pageslide.scss +0 -125
  231. data/installer/core/db/schema.rb +0 -172
  232. data/installer/lib/conf.rb +0 -31
  233. data/installer/lib/scaffold.rb +0 -10
  234. data/installer/run.sh +0 -17
  235. data/installer/scripts/bin.sh +0 -61
  236. data/lib/keppler/cli/generate.rb +0 -19
@@ -0,0 +1,21 @@
1
+ #customize-index {
2
+ padding: 2rem;
3
+ padding-top: 20px;
4
+ padding: 2rem;
5
+ .status {
6
+ padding-right: 50px;
7
+ }
8
+ }
9
+ #box-body {
10
+ height: 325px;
11
+ overflow: hidden;
12
+ margin: 0 auto;
13
+
14
+ iframe {
15
+ height:250%;
16
+ width:250%;
17
+ zoom:1.8;
18
+ transform:scale(0.4);
19
+ transform-origin:0 0;
20
+ }
21
+ }
@@ -0,0 +1,1088 @@
1
+ .ui-helper-hidden {
2
+ display: none;
3
+ }
4
+ .ui-helper-hidden-accessible {
5
+ border: 0;
6
+ clip: rect(0 0 0 0);
7
+ height: 1px;
8
+ margin: -1px;
9
+ overflow: hidden;
10
+ padding: 0;
11
+ position: absolute;
12
+ width: 1px;
13
+ }
14
+ .ui-helper-reset {
15
+ margin: 0;
16
+ padding: 0;
17
+ border: 0;
18
+ outline: 0;
19
+ line-height: 1.3;
20
+ text-decoration: none;
21
+ font-size: 100%;
22
+ list-style: none;
23
+ }
24
+ .ui-helper-clearfix:before,
25
+ .ui-helper-clearfix:after {
26
+ content: "";
27
+ display: table;
28
+ border-collapse: collapse;
29
+ }
30
+ .ui-helper-clearfix:after {
31
+ clear: both;
32
+ }
33
+ .ui-helper-zfix {
34
+ width: 100%;
35
+ height: 100%;
36
+ top: 0;
37
+ left: 0;
38
+ position: absolute;
39
+ opacity: 0;
40
+ filter:Alpha(Opacity=0); /* support: IE8 */
41
+ }
42
+
43
+ .ui-front {
44
+ z-index: 100;
45
+ }
46
+
47
+
48
+ /* Interaction Cues
49
+ ----------------------------------*/
50
+ .ui-state-disabled {
51
+ cursor: default !important;
52
+ pointer-events: none;
53
+ }
54
+
55
+
56
+ /* Icons
57
+ ----------------------------------*/
58
+ .ui-icon {
59
+ display: inline-block;
60
+ vertical-align: middle;
61
+ margin-top: -.25em;
62
+ position: relative;
63
+ text-indent: -99999px;
64
+ overflow: hidden;
65
+ background-repeat: no-repeat;
66
+ }
67
+
68
+ .ui-widget-icon-block {
69
+ left: 50%;
70
+ margin-left: -8px;
71
+ display: block;
72
+ }
73
+
74
+ /* Misc visuals
75
+ ----------------------------------*/
76
+
77
+ /* Overlays */
78
+ .ui-widget-overlay {
79
+ position: fixed;
80
+ top: 0;
81
+ left: 0;
82
+ width: 100%;
83
+ height: 100%;
84
+ }
85
+ .ui-accordion .ui-accordion-header {
86
+ display: block;
87
+ cursor: pointer;
88
+ position: relative;
89
+ margin: 2px 0 0 0;
90
+ padding: .5em .5em .5em .7em;
91
+ font-size: 100%;
92
+ }
93
+ .ui-accordion .ui-accordion-content {
94
+ padding: 1em 2.2em;
95
+ border-top: 0;
96
+ overflow: auto;
97
+ }
98
+ .ui-autocomplete {
99
+ position: absolute;
100
+ top: 0;
101
+ left: 0;
102
+ cursor: default;
103
+ }
104
+ .ui-menu {
105
+ list-style: none;
106
+ padding: 0;
107
+ margin: 0;
108
+ display: block;
109
+ outline: 0;
110
+ }
111
+ .ui-menu .ui-menu {
112
+ position: absolute;
113
+ }
114
+ .ui-menu .ui-menu-item {
115
+ margin: 0;
116
+ cursor: pointer;
117
+ /* support: IE10, see #8844 */
118
+ list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
119
+ }
120
+ .ui-menu .ui-menu-item-wrapper {
121
+ position: relative;
122
+ padding: 3px 1em 3px .4em;
123
+ }
124
+ .ui-menu .ui-menu-divider {
125
+ margin: 5px 0;
126
+ height: 0;
127
+ font-size: 0;
128
+ line-height: 0;
129
+ border-width: 1px 0 0 0;
130
+ }
131
+ .ui-menu .ui-state-focus,
132
+ .ui-menu .ui-state-active {
133
+ margin: -1px;
134
+ }
135
+
136
+ /* icon support */
137
+ .ui-menu-icons {
138
+ position: relative;
139
+ }
140
+ .ui-menu-icons .ui-menu-item-wrapper {
141
+ padding-left: 2em;
142
+ }
143
+
144
+ /* left-aligned */
145
+ .ui-menu .ui-icon {
146
+ position: absolute;
147
+ top: 0;
148
+ bottom: 0;
149
+ left: .2em;
150
+ margin: auto 0;
151
+ }
152
+
153
+ /* right-aligned */
154
+ .ui-menu .ui-menu-icon {
155
+ left: auto;
156
+ right: 0;
157
+ }
158
+ .ui-button {
159
+ padding: .4em 1em;
160
+ display: inline-block;
161
+ position: relative;
162
+ line-height: normal;
163
+ margin-right: .1em;
164
+ cursor: pointer;
165
+ vertical-align: middle;
166
+ text-align: center;
167
+ -webkit-user-select: none;
168
+ -moz-user-select: none;
169
+ -ms-user-select: none;
170
+ user-select: none;
171
+
172
+ /* Support: IE <= 11 */
173
+ overflow: visible;
174
+ }
175
+
176
+ .ui-button,
177
+ .ui-button:link,
178
+ .ui-button:visited,
179
+ .ui-button:hover,
180
+ .ui-button:active {
181
+ text-decoration: none;
182
+ }
183
+
184
+ /* to make room for the icon, a width needs to be set here */
185
+ .ui-button-icon-only {
186
+ width: 2em;
187
+ box-sizing: border-box;
188
+ text-indent: -9999px;
189
+ white-space: nowrap;
190
+ }
191
+
192
+ /* no icon support for input elements */
193
+ input.ui-button.ui-button-icon-only {
194
+ text-indent: 0;
195
+ }
196
+
197
+ /* button icon element(s) */
198
+ .ui-button-icon-only .ui-icon {
199
+ position: absolute;
200
+ top: 50%;
201
+ left: 50%;
202
+ margin-top: -8px;
203
+ margin-left: -8px;
204
+ }
205
+
206
+ .ui-button.ui-icon-notext .ui-icon {
207
+ padding: 0;
208
+ width: 2.1em;
209
+ height: 2.1em;
210
+ text-indent: -9999px;
211
+ white-space: nowrap;
212
+
213
+ }
214
+
215
+ input.ui-button.ui-icon-notext .ui-icon {
216
+ width: auto;
217
+ height: auto;
218
+ text-indent: 0;
219
+ white-space: normal;
220
+ padding: .4em 1em;
221
+ }
222
+
223
+ /* workarounds */
224
+ /* Support: Firefox 5 - 40 */
225
+ input.ui-button::-moz-focus-inner,
226
+ button.ui-button::-moz-focus-inner {
227
+ border: 0;
228
+ padding: 0;
229
+ }
230
+ .ui-controlgroup {
231
+ vertical-align: middle;
232
+ display: inline-block;
233
+ }
234
+ .ui-controlgroup > .ui-controlgroup-item {
235
+ float: left;
236
+ margin-left: 0;
237
+ margin-right: 0;
238
+ }
239
+ .ui-controlgroup > .ui-controlgroup-item:focus,
240
+ .ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
241
+ z-index: 9999;
242
+ }
243
+ .ui-controlgroup-vertical > .ui-controlgroup-item {
244
+ display: block;
245
+ float: none;
246
+ width: 100%;
247
+ margin-top: 0;
248
+ margin-bottom: 0;
249
+ text-align: left;
250
+ }
251
+ .ui-controlgroup-vertical .ui-controlgroup-item {
252
+ box-sizing: border-box;
253
+ }
254
+ .ui-controlgroup .ui-controlgroup-label {
255
+ padding: .4em 1em;
256
+ }
257
+ .ui-controlgroup .ui-controlgroup-label span {
258
+ font-size: 80%;
259
+ }
260
+ .ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
261
+ border-left: none;
262
+ }
263
+ .ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
264
+ border-top: none;
265
+ }
266
+ .ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
267
+ border-right: none;
268
+ }
269
+ .ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
270
+ border-bottom: none;
271
+ }
272
+
273
+ /* Spinner specific style fixes */
274
+ .ui-controlgroup-vertical .ui-spinner-input {
275
+
276
+ /* Support: IE8 only, Android < 4.4 only */
277
+ width: 75%;
278
+ width: calc( 100% - 2.4em );
279
+ }
280
+ .ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
281
+ border-top-style: solid;
282
+ }
283
+
284
+ .ui-checkboxradio-label .ui-icon-background {
285
+ box-shadow: inset 1px 1px 1px #ccc;
286
+ border-radius: .12em;
287
+ border: transparent;
288
+ }
289
+ .ui-checkboxradio-radio-label .ui-icon-background {
290
+ width: 16px;
291
+ height: 16px;
292
+ border-radius: 1em;
293
+ overflow: visible;
294
+ border: transparent;
295
+ }
296
+ .ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
297
+ .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
298
+ background-image: none;
299
+ width: 8px;
300
+ height: 8px;
301
+ border-width: 4px;
302
+ border-style: solid;
303
+ }
304
+ .ui-checkboxradio-disabled {
305
+ pointer-events: none;
306
+ }
307
+ .ui-datepicker {
308
+ width: 17em;
309
+ padding: .2em .2em 0;
310
+ display: none;
311
+ }
312
+ .ui-datepicker .ui-datepicker-header {
313
+ position: relative;
314
+ padding: .2em 0;
315
+ }
316
+ .ui-datepicker .ui-datepicker-prev,
317
+ .ui-datepicker .ui-datepicker-next {
318
+ position: absolute;
319
+ top: 2px;
320
+ width: 1.8em;
321
+ height: 1.8em;
322
+ }
323
+ .ui-datepicker .ui-datepicker-prev span,
324
+ .ui-datepicker .ui-datepicker-next span {
325
+ display: block;
326
+ position: absolute;
327
+ left: 50%;
328
+ margin-left: -8px;
329
+ top: 50%;
330
+ margin-top: -8px;
331
+ }
332
+ .ui-datepicker .ui-datepicker-title {
333
+ margin: 0 2.3em;
334
+ line-height: 1.8em;
335
+ text-align: center;
336
+ }
337
+ .ui-datepicker .ui-datepicker-title select {
338
+ font-size: 1em;
339
+ margin: 1px 0;
340
+ background: #fefefe;
341
+ }
342
+ .ui-datepicker select.ui-datepicker-month,
343
+ .ui-datepicker select.ui-datepicker-year {
344
+ width: 45%;
345
+ }
346
+ .ui-datepicker table {
347
+ width: 100%;
348
+ font-size: .9em;
349
+ border-collapse: collapse;
350
+ margin: 0 0 .4em;
351
+ }
352
+ .ui-datepicker th {
353
+ padding: .7em .3em;
354
+ text-align: center;
355
+ font-weight: bold;
356
+ border: 0;
357
+ }
358
+ .ui-datepicker td {
359
+ border: 0;
360
+ padding: 1px;
361
+ }
362
+ .ui-datepicker td span,
363
+ .ui-datepicker td a {
364
+ display: block;
365
+ padding: .2em;
366
+ text-align: right;
367
+ text-decoration: none;
368
+ }
369
+ .ui-datepicker .ui-datepicker-buttonpane {
370
+ background-image: none;
371
+ margin: .7em 0 0 0;
372
+ padding: 0 .2em;
373
+ border-left: 0;
374
+ border-right: 0;
375
+ border-bottom: 0;
376
+ }
377
+ .ui-datepicker .ui-datepicker-buttonpane button {
378
+ float: right;
379
+ margin: .5em .2em .4em;
380
+ cursor: pointer;
381
+ padding: .2em .6em .3em .6em;
382
+ width: auto;
383
+ overflow: visible;
384
+ }
385
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
386
+ float: left;
387
+ }
388
+
389
+ /* with multiple calendars */
390
+ .ui-datepicker.ui-datepicker-multi {
391
+ width: auto;
392
+ }
393
+ .ui-datepicker-multi .ui-datepicker-group {
394
+ float: left;
395
+ }
396
+ .ui-datepicker-multi .ui-datepicker-group table {
397
+ width: 95%;
398
+ margin: 0 auto .4em;
399
+ }
400
+ .ui-datepicker-multi-2 .ui-datepicker-group {
401
+ width: 50%;
402
+ }
403
+ .ui-datepicker-multi-3 .ui-datepicker-group {
404
+ width: 33.3%;
405
+ }
406
+ .ui-datepicker-multi-4 .ui-datepicker-group {
407
+ width: 25%;
408
+ }
409
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
410
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
411
+ border-left-width: 0;
412
+ }
413
+ .ui-datepicker-multi .ui-datepicker-buttonpane {
414
+ clear: left;
415
+ }
416
+ .ui-datepicker-row-break {
417
+ clear: both;
418
+ width: 100%;
419
+ font-size: 0;
420
+ }
421
+
422
+ /* RTL support */
423
+ .ui-datepicker-rtl {
424
+ direction: rtl;
425
+ }
426
+ .ui-datepicker-rtl .ui-datepicker-prev {
427
+ right: 2px;
428
+ left: auto;
429
+ }
430
+ .ui-datepicker-rtl .ui-datepicker-next {
431
+ left: 2px;
432
+ right: auto;
433
+ }
434
+ .ui-datepicker-rtl .ui-datepicker-buttonpane {
435
+ clear: right;
436
+ }
437
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button {
438
+ float: left;
439
+ }
440
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
441
+ .ui-datepicker-rtl .ui-datepicker-group {
442
+ float: right;
443
+ }
444
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
445
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
446
+ border-right-width: 0;
447
+ border-left-width: 1px;
448
+ }
449
+
450
+ /* Icons */
451
+ .ui-datepicker .ui-icon {
452
+ display: block;
453
+ text-indent: -99999px;
454
+ overflow: hidden;
455
+ background-repeat: no-repeat;
456
+ left: .5em;
457
+ top: .3em;
458
+ }
459
+ .ui-dialog {
460
+ position: absolute;
461
+ top: 0;
462
+ left: 0;
463
+ padding: .2em;
464
+ outline: 0;
465
+ }
466
+ .ui-dialog .ui-dialog-titlebar {
467
+ padding: .4em 1em;
468
+ position: relative;
469
+ }
470
+ .ui-dialog .ui-dialog-title {
471
+ float: left;
472
+ margin: .1em 0;
473
+ white-space: nowrap;
474
+ width: 90%;
475
+ overflow: hidden;
476
+ text-overflow: ellipsis;
477
+ }
478
+ .ui-dialog .ui-dialog-titlebar-close {
479
+ position: absolute;
480
+ right: .3em;
481
+ top: 50%;
482
+ width: 20px;
483
+ margin: -10px 0 0 0;
484
+ padding: 1px;
485
+ height: 20px;
486
+ }
487
+ .ui-dialog .ui-dialog-content {
488
+ position: relative;
489
+ border: 0;
490
+ padding: .5em 1em;
491
+ background: none;
492
+ overflow: auto;
493
+ }
494
+ .ui-dialog .ui-dialog-buttonpane {
495
+ text-align: left;
496
+ border-width: 1px 0 0 0;
497
+ background-image: none;
498
+ margin-top: .5em;
499
+ padding: .3em 1em .5em .4em;
500
+ }
501
+ .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
502
+ float: right;
503
+ }
504
+ .ui-dialog .ui-dialog-buttonpane button {
505
+ margin: .5em .4em .5em 0;
506
+ cursor: pointer;
507
+ }
508
+ .ui-dialog .ui-resizable-n {
509
+ height: 2px;
510
+ top: 0;
511
+ }
512
+ .ui-dialog .ui-resizable-e {
513
+ width: 2px;
514
+ right: 0;
515
+ }
516
+ .ui-dialog .ui-resizable-s {
517
+ height: 2px;
518
+ bottom: 0;
519
+ }
520
+ .ui-dialog .ui-resizable-w {
521
+ width: 2px;
522
+ left: 0;
523
+ }
524
+ .ui-dialog .ui-resizable-se,
525
+ .ui-dialog .ui-resizable-sw,
526
+ .ui-dialog .ui-resizable-ne,
527
+ .ui-dialog .ui-resizable-nw {
528
+ width: 7px;
529
+ height: 7px;
530
+ }
531
+ .ui-dialog .ui-resizable-se {
532
+ right: 0;
533
+ bottom: 0;
534
+ }
535
+ .ui-dialog .ui-resizable-sw {
536
+ left: 0;
537
+ bottom: 0;
538
+ }
539
+ .ui-dialog .ui-resizable-ne {
540
+ right: 0;
541
+ top: 0;
542
+ }
543
+ .ui-dialog .ui-resizable-nw {
544
+ left: 0;
545
+ top: 0;
546
+ }
547
+ .ui-draggable .ui-dialog-titlebar {
548
+ cursor: move;
549
+ }
550
+ .ui-draggable-handle {
551
+ -ms-touch-action: none;
552
+ touch-action: none;
553
+ }
554
+ .ui-resizable {
555
+ position: relative;
556
+ }
557
+ .ui-resizable-handle {
558
+ position: absolute;
559
+ font-size: 0.1px;
560
+ display: block;
561
+ -ms-touch-action: none;
562
+ touch-action: none;
563
+ }
564
+ .ui-resizable-disabled .ui-resizable-handle,
565
+ .ui-resizable-autohide .ui-resizable-handle {
566
+ display: none;
567
+ }
568
+ .ui-resizable-n {
569
+ cursor: n-resize;
570
+ height: 7px;
571
+ width: 100%;
572
+ top: -5px;
573
+ left: 0;
574
+ }
575
+ .ui-resizable-s {
576
+ cursor: s-resize;
577
+ height: 7px;
578
+ width: 100%;
579
+ bottom: -5px;
580
+ left: 0;
581
+ }
582
+ .ui-resizable-e {
583
+ cursor: e-resize;
584
+ width: 7px;
585
+ right: -5px;
586
+ top: 0;
587
+ height: 100%;
588
+ }
589
+ .ui-resizable-w {
590
+ cursor: w-resize;
591
+ width: 7px;
592
+ left: -5px;
593
+ top: 0;
594
+ height: 100%;
595
+ }
596
+ .ui-resizable-se {
597
+ cursor: se-resize;
598
+ width: 12px;
599
+ height: 12px;
600
+ right: 1px;
601
+ bottom: 1px;
602
+ }
603
+ .ui-resizable-sw {
604
+ cursor: sw-resize;
605
+ width: 9px;
606
+ height: 9px;
607
+ left: -5px;
608
+ bottom: -5px;
609
+ }
610
+ .ui-resizable-nw {
611
+ cursor: nw-resize;
612
+ width: 9px;
613
+ height: 9px;
614
+ left: -5px;
615
+ top: -5px;
616
+ }
617
+ .ui-resizable-ne {
618
+ cursor: ne-resize;
619
+ width: 9px;
620
+ height: 9px;
621
+ right: -5px;
622
+ top: -5px;
623
+ }
624
+ .ui-progressbar {
625
+ height: 2em;
626
+ text-align: left;
627
+ overflow: hidden;
628
+ }
629
+ .ui-progressbar .ui-progressbar-value {
630
+ margin: -1px;
631
+ height: 100%;
632
+ }
633
+ .ui-progressbar .ui-progressbar-overlay {
634
+ background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
635
+ height: 100%;
636
+ filter: alpha(opacity=25); /* support: IE8 */
637
+ opacity: 0.25;
638
+ }
639
+ .ui-progressbar-indeterminate .ui-progressbar-value {
640
+ background-image: none;
641
+ }
642
+ .ui-selectable {
643
+ -ms-touch-action: none;
644
+ touch-action: none;
645
+ }
646
+ .ui-selectable-helper {
647
+ position: absolute;
648
+ z-index: 100;
649
+ border: 1px dotted black;
650
+ }
651
+ .ui-selectmenu-menu {
652
+ padding: 0;
653
+ margin: 0;
654
+ position: absolute;
655
+ top: 0;
656
+ left: 0;
657
+ display: none;
658
+ }
659
+ .ui-selectmenu-menu .ui-menu {
660
+ overflow: auto;
661
+ overflow-x: hidden;
662
+ padding-bottom: 1px;
663
+ }
664
+ .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
665
+ font-size: 1em;
666
+ font-weight: bold;
667
+ line-height: 1.5;
668
+ padding: 2px 0.4em;
669
+ margin: 0.5em 0 0 0;
670
+ height: auto;
671
+ border: 0;
672
+ }
673
+ .ui-selectmenu-open {
674
+ display: block;
675
+ }
676
+ .ui-selectmenu-text {
677
+ display: block;
678
+ margin-right: 20px;
679
+ overflow: hidden;
680
+ text-overflow: ellipsis;
681
+ }
682
+ .ui-selectmenu-button.ui-button {
683
+ text-align: left;
684
+ white-space: nowrap;
685
+ width: 14em;
686
+ }
687
+ .ui-selectmenu-icon.ui-icon {
688
+ float: right;
689
+ margin-top: 0;
690
+ }
691
+ .ui-slider {
692
+ position: relative;
693
+ text-align: left;
694
+ }
695
+ .ui-slider .ui-slider-handle {
696
+ position: absolute;
697
+ z-index: 2;
698
+ width: 1.2em;
699
+ height: 1.2em;
700
+ cursor: default;
701
+ -ms-touch-action: none;
702
+ touch-action: none;
703
+ }
704
+ .ui-slider .ui-slider-range {
705
+ position: absolute;
706
+ z-index: 1;
707
+ font-size: .7em;
708
+ display: block;
709
+ border: 0;
710
+ background-position: 0 0;
711
+ }
712
+
713
+ /* support: IE8 - See #6727 */
714
+ .ui-slider.ui-state-disabled .ui-slider-handle,
715
+ .ui-slider.ui-state-disabled .ui-slider-range {
716
+ filter: inherit;
717
+ }
718
+
719
+ .ui-slider-horizontal {
720
+ height: .8em;
721
+ }
722
+ .ui-slider-horizontal .ui-slider-handle {
723
+ top: -.3em;
724
+ margin-left: -.6em;
725
+ }
726
+ .ui-slider-horizontal .ui-slider-range {
727
+ top: 0;
728
+ height: 100%;
729
+ }
730
+ .ui-slider-horizontal .ui-slider-range-min {
731
+ left: 0;
732
+ }
733
+ .ui-slider-horizontal .ui-slider-range-max {
734
+ right: 0;
735
+ }
736
+
737
+ .ui-slider-vertical {
738
+ width: .8em;
739
+ height: 100px;
740
+ }
741
+ .ui-slider-vertical .ui-slider-handle {
742
+ left: -.3em;
743
+ margin-left: 0;
744
+ margin-bottom: -.6em;
745
+ }
746
+ .ui-slider-vertical .ui-slider-range {
747
+ left: 0;
748
+ width: 100%;
749
+ }
750
+ .ui-slider-vertical .ui-slider-range-min {
751
+ bottom: 0;
752
+ }
753
+ .ui-slider-vertical .ui-slider-range-max {
754
+ top: 0;
755
+ }
756
+ .ui-sortable-handle {
757
+ -ms-touch-action: none;
758
+ touch-action: none;
759
+ }
760
+ .ui-spinner {
761
+ position: relative;
762
+ display: inline-block;
763
+ overflow: hidden;
764
+ padding: 0;
765
+ vertical-align: middle;
766
+ }
767
+ .ui-spinner-input {
768
+ border: transparent;
769
+ background: none;
770
+ color: inherit;
771
+ padding: .222em 0;
772
+ margin: .2em 0;
773
+ vertical-align: middle;
774
+ margin-left: .4em;
775
+ margin-right: 2em;
776
+ }
777
+ .ui-spinner-button {
778
+ width: 1.6em;
779
+ height: 50%;
780
+ font-size: .5em;
781
+ padding: 0;
782
+ margin: 0;
783
+ text-align: center;
784
+ position: absolute;
785
+ cursor: default;
786
+ display: block;
787
+ overflow: hidden;
788
+ right: 0;
789
+ }
790
+ /* more specificity required here to override default borders */
791
+ .ui-spinner a.ui-spinner-button {
792
+ border-top-style: none;
793
+ border-bottom-style: none;
794
+ border-right-style: none;
795
+ }
796
+ .ui-spinner-up {
797
+ top: 0;
798
+ }
799
+ .ui-spinner-down {
800
+ bottom: 0;
801
+ }
802
+ .ui-tabs {
803
+ position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
804
+ padding: .2em;
805
+ }
806
+ .ui-tabs .ui-tabs-nav {
807
+ margin: 0;
808
+ padding: .2em .2em 0;
809
+ }
810
+ .ui-tabs .ui-tabs-nav li {
811
+ list-style: none;
812
+ float: left;
813
+ position: relative;
814
+ top: 0;
815
+ margin: 1px .2em 0 0;
816
+ border-bottom-width: 0;
817
+ padding: 0;
818
+ white-space: nowrap;
819
+ }
820
+ .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
821
+ float: left;
822
+ padding: .5em 1em;
823
+ text-decoration: none;
824
+ }
825
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active {
826
+ margin-bottom: -1px;
827
+ padding-bottom: 1px;
828
+ }
829
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
830
+ .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
831
+ .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
832
+ cursor: text;
833
+ }
834
+ .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
835
+ cursor: pointer;
836
+ }
837
+ .ui-tabs .ui-tabs-panel {
838
+ display: block;
839
+ border-width: 0;
840
+ padding: 1em 1.4em;
841
+ background: none;
842
+ }
843
+ .ui-tooltip {
844
+ padding: 8px;
845
+ position: absolute;
846
+ z-index: 9999;
847
+ max-width: 300px;
848
+ }
849
+ body .ui-tooltip {
850
+ border-width: 2px;
851
+ }
852
+ /* Component containers
853
+ ----------------------------------*/
854
+ .ui-widget {
855
+ font-family: Arial,Helvetica,sans-serif;
856
+ font-size: 1em;
857
+ }
858
+ .ui-widget .ui-widget {
859
+ font-size: 1em;
860
+ }
861
+ .ui-widget input,
862
+ .ui-widget select,
863
+ .ui-widget textarea,
864
+ .ui-widget button {
865
+ font-family: Arial,Helvetica,sans-serif;
866
+ font-size: 1em;
867
+ }
868
+ .ui-widget.ui-widget-content {
869
+ border: 1px solid #c5c5c5;
870
+ }
871
+ .ui-widget-content {
872
+ border: 1px solid #dddddd;
873
+ background: #ffffff;
874
+ color: #333333;
875
+ }
876
+ .ui-widget-content a {
877
+ color: #333333;
878
+ }
879
+ .ui-widget-header {
880
+ border: 1px solid #dddddd;
881
+ background: #e9e9e9;
882
+ color: #333333;
883
+ font-weight: bold;
884
+ }
885
+ .ui-widget-header a {
886
+ color: #333333;
887
+ }
888
+
889
+ /* Interaction states
890
+ ----------------------------------*/
891
+ .ui-state-default,
892
+ .ui-widget-content .ui-state-default,
893
+ .ui-widget-header .ui-state-default,
894
+ .ui-button,
895
+
896
+ /* We use html here because we need a greater specificity to make sure disabled
897
+ works properly when clicked or hovered */
898
+ html .ui-button.ui-state-disabled:hover,
899
+ html .ui-button.ui-state-disabled:active {
900
+ border: transparent;
901
+ background: #f6f6f6;
902
+ font-weight: normal;
903
+ color: #454545;
904
+ }
905
+ .ui-state-default a,
906
+ .ui-state-default a:link,
907
+ .ui-state-default a:visited,
908
+ a.ui-button,
909
+ a:link.ui-button,
910
+ a:visited.ui-button,
911
+ .ui-button {
912
+ color: #454545;
913
+ text-decoration: none;
914
+ }
915
+ .ui-state-hover,
916
+ .ui-widget-content .ui-state-hover,
917
+ .ui-widget-header .ui-state-hover,
918
+ .ui-state-focus,
919
+ .ui-widget-content .ui-state-focus,
920
+ .ui-widget-header .ui-state-focus,
921
+ .ui-button:hover,
922
+ .ui-button:focus {
923
+ border: none;
924
+ background: #ededed;
925
+ font-weight: normal;
926
+ color: #2b2b2b;
927
+ cursor: pointer;
928
+ }
929
+ .ui-state-hover a,
930
+ .ui-state-hover a:hover,
931
+ .ui-state-hover a:link,
932
+ .ui-state-hover a:visited,
933
+ .ui-state-focus a,
934
+ .ui-state-focus a:hover,
935
+ .ui-state-focus a:link,
936
+ .ui-state-focus a:visited,
937
+ a.ui-button:hover,
938
+ a.ui-button:focus {
939
+ color: #2b2b2b;
940
+ text-decoration: none;
941
+ cursor: pointer;
942
+ }
943
+
944
+ .ui-visual-focus {
945
+ box-shadow: 0 0 3px 1px rgb(94, 158, 214);
946
+ }
947
+ .ui-state-active,
948
+ .ui-widget-content .ui-state-active,
949
+ .ui-widget-header .ui-state-active,
950
+ a.ui-button:active,
951
+ .ui-button:active,
952
+ .ui-button.ui-state-active:hover {
953
+ border: transparent;
954
+ background: $keppler-color;
955
+ font-weight: normal;
956
+ color: #ffffff;
957
+ }
958
+ .ui-icon-background,
959
+ .ui-state-active .ui-icon-background {
960
+ border: #003eff;
961
+ background-color: #ffffff;
962
+ }
963
+ .ui-state-active a,
964
+ .ui-state-active a:link,
965
+ .ui-state-active a:visited {
966
+ color: #ffffff;
967
+ text-decoration: none;
968
+ }
969
+
970
+ /* Interaction Cues
971
+ ----------------------------------*/
972
+ .ui-state-highlight,
973
+ .ui-widget-content .ui-state-highlight,
974
+ .ui-widget-header .ui-state-highlight {
975
+ border: transparent;
976
+ background: $keppler-color;
977
+ color: #fff;
978
+ }
979
+ .ui-state-checked {
980
+ border: 1px solid #dad55e;
981
+ background: #fffa90;
982
+ }
983
+ .ui-state-highlight a,
984
+ .ui-widget-content .ui-state-highlight a,
985
+ .ui-widget-header .ui-state-highlight a {
986
+ color: #777620;
987
+ }
988
+ .ui-state-error,
989
+ .ui-widget-content .ui-state-error,
990
+ .ui-widget-header .ui-state-error {
991
+ border: 1px solid #f1a899;
992
+ background: #fddfdf;
993
+ color: #5f3f3f;
994
+ }
995
+ .ui-state-error a,
996
+ .ui-widget-content .ui-state-error a,
997
+ .ui-widget-header .ui-state-error a {
998
+ color: #5f3f3f;
999
+ }
1000
+ .ui-state-error-text,
1001
+ .ui-widget-content .ui-state-error-text,
1002
+ .ui-widget-header .ui-state-error-text {
1003
+ color: #5f3f3f;
1004
+ }
1005
+ .ui-priority-primary,
1006
+ .ui-widget-content .ui-priority-primary,
1007
+ .ui-widget-header .ui-priority-primary {
1008
+ font-weight: bold;
1009
+ }
1010
+ .ui-priority-secondary,
1011
+ .ui-widget-content .ui-priority-secondary,
1012
+ .ui-widget-header .ui-priority-secondary {
1013
+ opacity: .7;
1014
+ filter:Alpha(Opacity=70); /* support: IE8 */
1015
+ font-weight: normal;
1016
+ }
1017
+ .ui-state-disabled,
1018
+ .ui-widget-content .ui-state-disabled,
1019
+ .ui-widget-header .ui-state-disabled {
1020
+ opacity: .35;
1021
+ filter:Alpha(Opacity=35); /* support: IE8 */
1022
+ background-image: none;
1023
+ }
1024
+ .ui-state-disabled .ui-icon {
1025
+ filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
1026
+ }
1027
+
1028
+ /* Icons
1029
+ ----------------------------------*/
1030
+ .ui-icon-play { background-position: 0 -160px; }
1031
+ .ui-icon-pause { background-position: -16px -160px; }
1032
+ .ui-icon-circle-plus { background-position: 0 -192px; }
1033
+ .ui-icon-circle-minus { background-position: -16px -192px; }
1034
+ .ui-icon-circle-close { background-position: -32px -192px; }
1035
+ .ui-icon-circle-triangle-n { background-position: -96px -192px; }
1036
+ .ui-icon-circle-triangle-e {
1037
+ background-position: -48px -192px;
1038
+ &::before {
1039
+ content: ''
1040
+ }
1041
+ }
1042
+ .ui-icon-circle-triangle-s { background-position: -64px -192px; }
1043
+ .ui-icon-circle-triangle-w { background-position: -80px -192px; }
1044
+ .ui-icon-circle-arrow-e { background-position: -112px -192px; }
1045
+ .ui-icon-circle-arrow-s { background-position: -128px -192px; }
1046
+ .ui-icon-circle-arrow-w { background-position: -144px -192px; }
1047
+ .ui-icon-circle-arrow-n { background-position: -160px -192px; }
1048
+
1049
+
1050
+ /* Misc visuals
1051
+ ----------------------------------*/
1052
+
1053
+ /* Corner radius */
1054
+ .ui-corner-all,
1055
+ .ui-corner-top,
1056
+ .ui-corner-left,
1057
+ .ui-corner-tl {
1058
+ border-top-left-radius: 3px;
1059
+ }
1060
+ .ui-corner-all,
1061
+ .ui-corner-top,
1062
+ .ui-corner-right,
1063
+ .ui-corner-tr {
1064
+ border-top-right-radius: 3px;
1065
+ }
1066
+ .ui-corner-all,
1067
+ .ui-corner-bottom,
1068
+ .ui-corner-left,
1069
+ .ui-corner-bl {
1070
+ border-bottom-left-radius: 3px;
1071
+ }
1072
+ .ui-corner-all,
1073
+ .ui-corner-bottom,
1074
+ .ui-corner-right,
1075
+ .ui-corner-br {
1076
+ border-bottom-right-radius: 3px;
1077
+ }
1078
+
1079
+ /* Overlays */
1080
+ .ui-widget-overlay {
1081
+ background: #aaaaaa;
1082
+ opacity: .3;
1083
+ filter: Alpha(Opacity=30); /* support: IE8 */
1084
+ }
1085
+ .ui-widget-shadow {
1086
+ -webkit-box-shadow: 0px 0px 5px #666666;
1087
+ box-shadow: 0px 0px 5px #666666;
1088
+ }