activeadmin-selleo-cms 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +13 -0
- data/Rakefile +40 -0
- data/app/admin/activeadmin_selleo_cms/locale.rb +21 -0
- data/app/admin/activeadmin_selleo_cms/page.rb +68 -0
- data/app/admin/translation.rb +35 -0
- data/app/assets/javascripts/activeadmin-selleo-cms/application.js +15 -0
- data/app/assets/javascripts/activeadmin-selleo-cms/custom.js +44 -0
- data/app/assets/javascripts/activeadmin-selleo-cms/jquery.mjs.nestedSortable.js +429 -0
- data/app/assets/stylesheets/activeadmin-selleo-cms/application.css +13 -0
- data/app/assets/stylesheets/activeadmin-selleo-cms/custom.css +59 -0
- data/app/assets/stylesheets/activeadmin-selleo-cms/jquery-ui.css +517 -0
- data/app/controllers/activeadmin_selleo_cms/application_controller.rb +9 -0
- data/app/controllers/activeadmin_selleo_cms/locales_controller.rb +8 -0
- data/app/controllers/activeadmin_selleo_cms/pages_controller.rb +15 -0
- data/app/controllers/activeadmin_selleo_cms/searches_controller.rb +8 -0
- data/app/helpers/activeadmin_selleo_cms/application_helper.rb +27 -0
- data/app/models/activeadmin_selleo_cms/layout.rb +10 -0
- data/app/models/activeadmin_selleo_cms/locale.rb +44 -0
- data/app/models/activeadmin_selleo_cms/page.rb +64 -0
- data/app/models/activeadmin_selleo_cms/search.rb +10 -0
- data/app/models/activeadmin_selleo_cms/section.rb +20 -0
- data/app/models/ckeditor/asset.rb +4 -0
- data/app/models/ckeditor/attachment_file.rb +12 -0
- data/app/models/ckeditor/picture.rb +13 -0
- data/app/models/translation.rb +25 -0
- data/app/modules/active_admin/views/index_as_list.rb +28 -0
- data/app/modules/activeadmin_selleo_cms/content_translation.rb +25 -0
- data/app/views/active_admin/resource/update.js +0 -0
- data/app/views/activeadmin_selleo_cms/pages/show.html.haml +3 -0
- data/app/views/activeadmin_selleo_cms/searches/show.html.haml +6 -0
- data/app/views/admin/pages/_fields_additional_locale.html.haml +17 -0
- data/app/views/admin/pages/_fields_current_locale.html.haml +14 -0
- data/app/views/admin/pages/_form.html.haml +65 -0
- data/app/views/admin/pages/_js.html.haml +12 -0
- data/app/views/admin/translations/update.js.haml +4 -0
- data/app/views/layouts/activeadmin_selleo_cms/application.html.erb +15 -0
- data/config/initializers/active_admin.rb +7 -0
- data/config/initializers/ckeditor.rb +18 -0
- data/config/initializers/i18n.rb +8 -0
- data/config/initializers/string_extensions.rb +5 -0
- data/config/locales/cms.en.yml +7 -0
- data/config/routes.rb +14 -0
- data/db/migrate/20121129142932_create_activeadmin_selleo_cms_pages.rb +20 -0
- data/db/migrate/20121129160200_create_activeadmin_selleo_cms_locales.rb +19 -0
- data/db/migrate/20121204112326_create_ckeditor_assets.rb +26 -0
- data/db/migrate/20121206231053_create_activeadmin_selleo_cms_sections.rb +12 -0
- data/db/migrate/20121221164723_create_activeadmin_selleo_cms_searches.rb +33 -0
- data/db/migrate/20121227222912_create_translations.rb +18 -0
- data/lib/activeadmin-selleo-cms.rb +11 -0
- data/lib/activeadmin-selleo-cms/application.rb +15 -0
- data/lib/activeadmin-selleo-cms/engine.rb +5 -0
- data/lib/activeadmin-selleo-cms/version.rb +3 -0
- data/lib/tasks/activeadmin-selleo-cms_tasks.rake +4 -0
- data/lib/tasks/i18n.rake +6 -0
- data/test/activeadmin-selleo-cms_test.rb +7 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/fixtures/activeadmin_selleo_cms/layouts.yml +11 -0
- data/test/fixtures/activeadmin_selleo_cms/page_parts.yml +11 -0
- data/test/fixtures/activeadmin_selleo_cms/pages.yml +11 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/activeadmin_selleo_cms/page_part_test.rb +9 -0
- data/test/unit/activeadmin_selleo_cms/page_test.rb +9 -0
- metadata +364 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require_self
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
@@ -0,0 +1,59 @@
|
|
1
|
+
div.translation > input {
|
2
|
+
-webkit-appearance: none;
|
3
|
+
-webkit-background-clip: border-box;
|
4
|
+
-webkit-background-origin: padding-box;
|
5
|
+
-webkit-background-size: auto;
|
6
|
+
-webkit-border-image: none;
|
7
|
+
-webkit-rtl-ordering: logical;
|
8
|
+
-webkit-user-select: text;
|
9
|
+
background-attachment: scroll;
|
10
|
+
background-clip: border-box;
|
11
|
+
background-color: white;
|
12
|
+
background-image: none;
|
13
|
+
background-origin: padding-box;
|
14
|
+
background-size: auto;
|
15
|
+
border-bottom-color: #C9D0D6;
|
16
|
+
border-bottom-left-radius: 3px;
|
17
|
+
border-bottom-right-radius: 3px;
|
18
|
+
border-bottom-style: solid;
|
19
|
+
border-bottom-width: 1px;
|
20
|
+
border-left-color: #C9D0D6;
|
21
|
+
border-left-style: solid;
|
22
|
+
border-left-width: 1px;
|
23
|
+
border-right-color: #C9D0D6;
|
24
|
+
border-right-style: solid;
|
25
|
+
border-right-width: 1px;
|
26
|
+
border-top-color: #C9D0D6;
|
27
|
+
border-top-left-radius: 3px;
|
28
|
+
border-top-right-radius: 3px;
|
29
|
+
border-top-style: solid;
|
30
|
+
border-top-width: 1px;
|
31
|
+
color: black;
|
32
|
+
cursor: auto;
|
33
|
+
display: inline-block;
|
34
|
+
font-family: Helvetica, Arial, sans-serif;
|
35
|
+
font-size: 11px;
|
36
|
+
font-style: normal;
|
37
|
+
font-weight: normal;
|
38
|
+
height: 13px;
|
39
|
+
letter-spacing: normal;
|
40
|
+
line-height: normal;
|
41
|
+
outline-color: black;
|
42
|
+
outline-style: none;
|
43
|
+
outline-width: 0px;
|
44
|
+
padding-bottom: 7px;
|
45
|
+
padding-left: 10px;
|
46
|
+
padding-right: 10px;
|
47
|
+
padding-top: 8px;
|
48
|
+
text-align: start;
|
49
|
+
text-indent: 0px;
|
50
|
+
text-shadow: none;
|
51
|
+
text-transform: none;
|
52
|
+
vertical-align: baseline;
|
53
|
+
width: 220px;
|
54
|
+
word-spacing: 0px;
|
55
|
+
}
|
56
|
+
|
57
|
+
table#translations td.key {
|
58
|
+
padding-top: 16px;
|
59
|
+
}
|
@@ -0,0 +1,517 @@
|
|
1
|
+
/*! jQuery UI - v1.9.2 - 2012-11-23
|
2
|
+
* http://jqueryui.com
|
3
|
+
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css
|
4
|
+
* Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
|
5
|
+
|
6
|
+
/* Layout helpers
|
7
|
+
----------------------------------*/
|
8
|
+
.ui-helper-hidden { display: none; }
|
9
|
+
.ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
|
10
|
+
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
11
|
+
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
|
12
|
+
.ui-helper-clearfix:after { clear: both; }
|
13
|
+
.ui-helper-clearfix { zoom: 1; }
|
14
|
+
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
15
|
+
|
16
|
+
|
17
|
+
/* Interaction Cues
|
18
|
+
----------------------------------*/
|
19
|
+
.ui-state-disabled { cursor: default !important; }
|
20
|
+
|
21
|
+
|
22
|
+
/* Icons
|
23
|
+
----------------------------------*/
|
24
|
+
|
25
|
+
/* states and images */
|
26
|
+
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
27
|
+
|
28
|
+
|
29
|
+
/* Misc visuals
|
30
|
+
----------------------------------*/
|
31
|
+
|
32
|
+
/* Overlays */
|
33
|
+
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
34
|
+
|
35
|
+
.ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; }
|
36
|
+
.ui-accordion .ui-accordion-icons { padding-left: 2.2em; }
|
37
|
+
.ui-accordion .ui-accordion-noicons { padding-left: .7em; }
|
38
|
+
.ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; }
|
39
|
+
.ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
|
40
|
+
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; }
|
41
|
+
|
42
|
+
.ui-autocomplete {
|
43
|
+
position: absolute;
|
44
|
+
top: 0;
|
45
|
+
left: 0;
|
46
|
+
cursor: default;
|
47
|
+
}
|
48
|
+
|
49
|
+
/* workarounds */
|
50
|
+
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
51
|
+
|
52
|
+
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
|
53
|
+
.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; }
|
54
|
+
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
|
55
|
+
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
|
56
|
+
.ui-button-icons-only { width: 3.4em; }
|
57
|
+
button.ui-button-icons-only { width: 3.7em; }
|
58
|
+
|
59
|
+
/*button text element */
|
60
|
+
.ui-button .ui-button-text { display: block; line-height: 1.4; }
|
61
|
+
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
|
62
|
+
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
|
63
|
+
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
|
64
|
+
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
|
65
|
+
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
|
66
|
+
/* no icon support for input elements, provide padding by default */
|
67
|
+
input.ui-button { padding: .4em 1em; }
|
68
|
+
|
69
|
+
/*button icon element(s) */
|
70
|
+
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
|
71
|
+
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
|
72
|
+
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
|
73
|
+
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
74
|
+
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
75
|
+
|
76
|
+
/*button sets*/
|
77
|
+
.ui-buttonset { margin-right: 7px; }
|
78
|
+
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
|
79
|
+
|
80
|
+
/* workarounds */
|
81
|
+
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
|
82
|
+
|
83
|
+
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
|
84
|
+
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
|
85
|
+
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
|
86
|
+
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
|
87
|
+
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
88
|
+
.ui-datepicker .ui-datepicker-next { right:2px; }
|
89
|
+
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
|
90
|
+
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
|
91
|
+
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
|
92
|
+
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
93
|
+
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
|
94
|
+
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
95
|
+
.ui-datepicker select.ui-datepicker-month,
|
96
|
+
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
97
|
+
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
98
|
+
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
99
|
+
.ui-datepicker td { border: 0; padding: 1px; }
|
100
|
+
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
101
|
+
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
|
102
|
+
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
103
|
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
104
|
+
|
105
|
+
/* with multiple calendars */
|
106
|
+
.ui-datepicker.ui-datepicker-multi { width:auto; }
|
107
|
+
.ui-datepicker-multi .ui-datepicker-group { float:left; }
|
108
|
+
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
|
109
|
+
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
|
110
|
+
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
|
111
|
+
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
|
112
|
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
113
|
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
114
|
+
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
115
|
+
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
|
116
|
+
|
117
|
+
/* RTL support */
|
118
|
+
.ui-datepicker-rtl { direction: rtl; }
|
119
|
+
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
|
120
|
+
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
|
121
|
+
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
|
122
|
+
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
|
123
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
|
124
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
|
125
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
|
126
|
+
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
|
127
|
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
128
|
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
129
|
+
|
130
|
+
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
131
|
+
.ui-datepicker-cover {
|
132
|
+
position: absolute; /*must have*/
|
133
|
+
z-index: -1; /*must have*/
|
134
|
+
filter: mask(); /*must have*/
|
135
|
+
top: -4px; /*must have*/
|
136
|
+
left: -4px; /*must have*/
|
137
|
+
width: 200px; /*must have*/
|
138
|
+
height: 200px; /*must have*/
|
139
|
+
}
|
140
|
+
.ui-dialog { position: absolute; top: 0; left: 0; padding: .2em; width: 300px; overflow: hidden; }
|
141
|
+
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
|
142
|
+
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
|
143
|
+
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
|
144
|
+
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
145
|
+
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
|
146
|
+
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
147
|
+
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
148
|
+
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
|
149
|
+
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
|
150
|
+
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
151
|
+
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
152
|
+
|
153
|
+
.ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; }
|
154
|
+
.ui-menu .ui-menu { margin-top: -3px; position: absolute; }
|
155
|
+
.ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; }
|
156
|
+
.ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }
|
157
|
+
.ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }
|
158
|
+
.ui-menu .ui-menu-item a.ui-state-focus,
|
159
|
+
.ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; }
|
160
|
+
|
161
|
+
.ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }
|
162
|
+
.ui-menu .ui-state-disabled a { cursor: default; }
|
163
|
+
|
164
|
+
/* icon support */
|
165
|
+
.ui-menu-icons { position: relative; }
|
166
|
+
.ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }
|
167
|
+
|
168
|
+
/* left-aligned */
|
169
|
+
.ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }
|
170
|
+
|
171
|
+
/* right-aligned */
|
172
|
+
.ui-menu .ui-menu-icon { position: static; float: right; }
|
173
|
+
|
174
|
+
.ui-progressbar { height:2em; text-align: left; overflow: hidden; }
|
175
|
+
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
|
176
|
+
.ui-resizable { position: relative;}
|
177
|
+
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
|
178
|
+
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
179
|
+
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
|
180
|
+
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
|
181
|
+
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
|
182
|
+
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
|
183
|
+
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
184
|
+
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
185
|
+
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
186
|
+
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
|
187
|
+
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
188
|
+
|
189
|
+
.ui-slider { position: relative; text-align: left; }
|
190
|
+
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
|
191
|
+
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
|
192
|
+
|
193
|
+
.ui-slider-horizontal { height: .8em; }
|
194
|
+
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
|
195
|
+
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
|
196
|
+
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
197
|
+
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
198
|
+
|
199
|
+
.ui-slider-vertical { width: .8em; height: 100px; }
|
200
|
+
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
|
201
|
+
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
202
|
+
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
203
|
+
.ui-slider-vertical .ui-slider-range-max { top: 0; }
|
204
|
+
.ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
|
205
|
+
.ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
|
206
|
+
.ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
|
207
|
+
.ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
|
208
|
+
.ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
|
209
|
+
.ui-spinner-up { top: 0; }
|
210
|
+
.ui-spinner-down { bottom: 0; }
|
211
|
+
|
212
|
+
/* TR overrides */
|
213
|
+
.ui-spinner .ui-icon-triangle-1-s {
|
214
|
+
/* need to fix icons sprite */
|
215
|
+
background-position:-65px -16px;
|
216
|
+
}
|
217
|
+
|
218
|
+
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
219
|
+
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
|
220
|
+
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; }
|
221
|
+
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
|
222
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; }
|
223
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
|
224
|
+
.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
225
|
+
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
|
226
|
+
|
227
|
+
.ui-tooltip {
|
228
|
+
padding: 8px;
|
229
|
+
position: absolute;
|
230
|
+
z-index: 9999;
|
231
|
+
max-width: 300px;
|
232
|
+
-webkit-box-shadow: 0 0 5px #aaa;
|
233
|
+
box-shadow: 0 0 5px #aaa;
|
234
|
+
}
|
235
|
+
/* Fades and background-images don't work well together in IE6, drop the image */
|
236
|
+
* html .ui-tooltip {
|
237
|
+
background-image: none;
|
238
|
+
}
|
239
|
+
body .ui-tooltip { border-width: 2px; }
|
240
|
+
|
241
|
+
/* Component containers
|
242
|
+
----------------------------------*/
|
243
|
+
.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
|
244
|
+
.ui-widget .ui-widget { font-size: 1em; }
|
245
|
+
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
|
246
|
+
.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
|
247
|
+
.ui-widget-content a { color: #222222/*{fcContent}*/; }
|
248
|
+
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
|
249
|
+
.ui-widget-header a { color: #222222/*{fcHeader}*/; }
|
250
|
+
|
251
|
+
/* Interaction states
|
252
|
+
----------------------------------*/
|
253
|
+
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
|
254
|
+
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
|
255
|
+
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; }
|
256
|
+
.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #212121/*{fcHover}*/; text-decoration: none; }
|
257
|
+
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; }
|
258
|
+
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; }
|
259
|
+
|
260
|
+
/* Interaction Cues
|
261
|
+
----------------------------------*/
|
262
|
+
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
|
263
|
+
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
|
264
|
+
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
|
265
|
+
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
|
266
|
+
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
|
267
|
+
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
268
|
+
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
269
|
+
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
270
|
+
.ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); } /* For IE8 - See #6059 */
|
271
|
+
|
272
|
+
/* Icons
|
273
|
+
----------------------------------*/
|
274
|
+
|
275
|
+
/* states and images */
|
276
|
+
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
|
277
|
+
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
|
278
|
+
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; }
|
279
|
+
.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; }
|
280
|
+
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; }
|
281
|
+
.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; }
|
282
|
+
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; }
|
283
|
+
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; }
|
284
|
+
|
285
|
+
/* positioning */
|
286
|
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
287
|
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
288
|
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
289
|
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
290
|
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
291
|
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
292
|
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
293
|
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
294
|
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
295
|
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
296
|
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
297
|
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
298
|
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
299
|
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
300
|
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
301
|
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
302
|
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
303
|
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
304
|
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
305
|
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
306
|
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
307
|
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
308
|
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
309
|
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
310
|
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
311
|
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
312
|
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
313
|
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
314
|
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
315
|
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
316
|
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
317
|
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
318
|
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
319
|
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
320
|
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
321
|
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
322
|
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
323
|
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
324
|
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
325
|
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
326
|
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
327
|
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
328
|
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
329
|
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
330
|
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
331
|
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
332
|
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
333
|
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
334
|
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
335
|
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
336
|
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
337
|
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
338
|
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
339
|
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
340
|
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
341
|
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
342
|
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
343
|
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
344
|
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
345
|
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
346
|
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
347
|
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
348
|
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
349
|
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
350
|
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
351
|
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
352
|
+
.ui-icon-extlink { background-position: -32px -80px; }
|
353
|
+
.ui-icon-newwin { background-position: -48px -80px; }
|
354
|
+
.ui-icon-refresh { background-position: -64px -80px; }
|
355
|
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
356
|
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
357
|
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
358
|
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
359
|
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
360
|
+
.ui-icon-document { background-position: -32px -96px; }
|
361
|
+
.ui-icon-document-b { background-position: -48px -96px; }
|
362
|
+
.ui-icon-note { background-position: -64px -96px; }
|
363
|
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
364
|
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
365
|
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
366
|
+
.ui-icon-comment { background-position: -128px -96px; }
|
367
|
+
.ui-icon-person { background-position: -144px -96px; }
|
368
|
+
.ui-icon-print { background-position: -160px -96px; }
|
369
|
+
.ui-icon-trash { background-position: -176px -96px; }
|
370
|
+
.ui-icon-locked { background-position: -192px -96px; }
|
371
|
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
372
|
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
373
|
+
.ui-icon-tag { background-position: -240px -96px; }
|
374
|
+
.ui-icon-home { background-position: 0 -112px; }
|
375
|
+
.ui-icon-flag { background-position: -16px -112px; }
|
376
|
+
.ui-icon-calendar { background-position: -32px -112px; }
|
377
|
+
.ui-icon-cart { background-position: -48px -112px; }
|
378
|
+
.ui-icon-pencil { background-position: -64px -112px; }
|
379
|
+
.ui-icon-clock { background-position: -80px -112px; }
|
380
|
+
.ui-icon-disk { background-position: -96px -112px; }
|
381
|
+
.ui-icon-calculator { background-position: -112px -112px; }
|
382
|
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
383
|
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
384
|
+
.ui-icon-search { background-position: -160px -112px; }
|
385
|
+
.ui-icon-wrench { background-position: -176px -112px; }
|
386
|
+
.ui-icon-gear { background-position: -192px -112px; }
|
387
|
+
.ui-icon-heart { background-position: -208px -112px; }
|
388
|
+
.ui-icon-star { background-position: -224px -112px; }
|
389
|
+
.ui-icon-link { background-position: -240px -112px; }
|
390
|
+
.ui-icon-cancel { background-position: 0 -128px; }
|
391
|
+
.ui-icon-plus { background-position: -16px -128px; }
|
392
|
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
393
|
+
.ui-icon-minus { background-position: -48px -128px; }
|
394
|
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
395
|
+
.ui-icon-close { background-position: -80px -128px; }
|
396
|
+
.ui-icon-closethick { background-position: -96px -128px; }
|
397
|
+
.ui-icon-key { background-position: -112px -128px; }
|
398
|
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
399
|
+
.ui-icon-scissors { background-position: -144px -128px; }
|
400
|
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
401
|
+
.ui-icon-copy { background-position: -176px -128px; }
|
402
|
+
.ui-icon-contact { background-position: -192px -128px; }
|
403
|
+
.ui-icon-image { background-position: -208px -128px; }
|
404
|
+
.ui-icon-video { background-position: -224px -128px; }
|
405
|
+
.ui-icon-script { background-position: -240px -128px; }
|
406
|
+
.ui-icon-alert { background-position: 0 -144px; }
|
407
|
+
.ui-icon-info { background-position: -16px -144px; }
|
408
|
+
.ui-icon-notice { background-position: -32px -144px; }
|
409
|
+
.ui-icon-help { background-position: -48px -144px; }
|
410
|
+
.ui-icon-check { background-position: -64px -144px; }
|
411
|
+
.ui-icon-bullet { background-position: -80px -144px; }
|
412
|
+
.ui-icon-radio-on { background-position: -96px -144px; }
|
413
|
+
.ui-icon-radio-off { background-position: -112px -144px; }
|
414
|
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
415
|
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
416
|
+
.ui-icon-play { background-position: 0 -160px; }
|
417
|
+
.ui-icon-pause { background-position: -16px -160px; }
|
418
|
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
419
|
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
420
|
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
421
|
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
422
|
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
423
|
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
424
|
+
.ui-icon-stop { background-position: -96px -160px; }
|
425
|
+
.ui-icon-eject { background-position: -112px -160px; }
|
426
|
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
427
|
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
428
|
+
.ui-icon-power { background-position: 0 -176px; }
|
429
|
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
430
|
+
.ui-icon-signal { background-position: -32px -176px; }
|
431
|
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
432
|
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
433
|
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
434
|
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
435
|
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
436
|
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
437
|
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
438
|
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
439
|
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
440
|
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
441
|
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
442
|
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
443
|
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
444
|
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
445
|
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
446
|
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
447
|
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
448
|
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
449
|
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
450
|
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
451
|
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
452
|
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
453
|
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
454
|
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
455
|
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
456
|
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
457
|
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
458
|
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
459
|
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
460
|
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
461
|
+
|
462
|
+
|
463
|
+
/* Misc visuals
|
464
|
+
----------------------------------*/
|
465
|
+
|
466
|
+
/* Corner radius */
|
467
|
+
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -khtml-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; }
|
468
|
+
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; -khtml-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
|
469
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
|
470
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
|
471
|
+
|
472
|
+
/* Overlays */
|
473
|
+
.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
|
474
|
+
.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -khtml-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }
|
475
|
+
|
476
|
+
li.hidden {
|
477
|
+
display: none;
|
478
|
+
}
|
479
|
+
|
480
|
+
|
481
|
+
/*******************************************************************************
|
482
|
+
* Language Tabs
|
483
|
+
*
|
484
|
+
*******************************************************************************/
|
485
|
+
.ui-widget-content {
|
486
|
+
border: none;
|
487
|
+
}
|
488
|
+
.ui-widget-header {
|
489
|
+
border: 0;
|
490
|
+
border-bottom: 1px solid #ccc;
|
491
|
+
background: none;
|
492
|
+
}
|
493
|
+
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
|
494
|
+
border: 1px solid #ccc;
|
495
|
+
}
|
496
|
+
.ui-tabs {
|
497
|
+
padding: 0;
|
498
|
+
}
|
499
|
+
.ui-tabs .ui-tabs-panel {
|
500
|
+
padding: 0;
|
501
|
+
padding-top: 1px;
|
502
|
+
}
|
503
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl, {
|
504
|
+
-moz-border-radius-bottomleft: 0;
|
505
|
+
-webkit-border-bottom-left-radius: 0;
|
506
|
+
border-bottom-left-radius: 0;
|
507
|
+
}
|
508
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
|
509
|
+
-moz-border-radius-bottomright: 0;
|
510
|
+
-webkit-border-bottom-right-radius: 0;
|
511
|
+
border-bottom-right-radius: 0;
|
512
|
+
}
|
513
|
+
|
514
|
+
div.index_as_list > ol.ui-sortable { list-style-type: disc; margin: 0; padding: 0; zoom: 1; }
|
515
|
+
div.index_as_list > ol.ui-sortable > li > ol { list-style-type: circle; margin: 0; padding: 0; zoom: 1; padding-left: 20px; }
|
516
|
+
|
517
|
+
div.index_as_list > ol.ui-sortable > li { margin: 0 5px 5px 5px; padding: 3px; width: 90%; }
|