├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── Resources ├── doc │ ├── index.rst │ └── reference │ │ ├── installation.rst │ │ └── usage.rst ├── meta │ └── LICENSE └── public │ ├── jquery-1.8.0.js │ ├── jquery-ui-1.8.23.js │ ├── jquery-ui-i18n.js │ └── themes │ ├── base │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── jquery.ui.accordion.css │ ├── jquery.ui.all.css │ ├── jquery.ui.autocomplete.css │ ├── jquery.ui.base.css │ ├── jquery.ui.button.css │ ├── jquery.ui.core.css │ ├── jquery.ui.datepicker.css │ ├── jquery.ui.dialog.css │ ├── jquery.ui.progressbar.css │ ├── jquery.ui.resizable.css │ ├── jquery.ui.selectable.css │ ├── jquery.ui.slider.css │ ├── jquery.ui.tabs.css │ └── jquery.ui.theme.css │ └── flick │ ├── images │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_0_eeeeee_40x100.png │ ├── ui-bg_flat_55_ffffff_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ ├── ui-icons_0073ea_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_666666_256x240.png │ ├── ui-icons_ff0084_256x240.png │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui-1.8.16.custom.css │ ├── jquery.ui.accordion.css │ ├── jquery.ui.all.css │ ├── jquery.ui.autocomplete.css │ ├── jquery.ui.base.css │ ├── jquery.ui.button.css │ ├── jquery.ui.core.css │ ├── jquery.ui.datepicker.css │ ├── jquery.ui.dialog.css │ ├── jquery.ui.progressbar.css │ ├── jquery.ui.resizable.css │ ├── jquery.ui.selectable.css │ ├── jquery.ui.slider.css │ ├── jquery.ui.tabs.css │ └── jquery.ui.theme.css ├── SonatajQueryBundle.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Sonata respects the symfony’s conventions about contributing to the code. So before going further please review the [contributing documentation of Symfony](http://symfony.com/doc/current/contributing/code/patches.html#make-a-pull-request). 2 | 3 | ## Reporting bugs 4 | 5 | If you happen to find a bug, we kindly request you to report it. However, before submitting it, please: 6 | 7 | * Check the [project documentation available online](http://sonata-project.org/bundles/) 8 | 9 | Then, if it appears that it’s a real bug, you may report it using Github by following these 3 points: 10 | 11 | * Check if the bug is not already reported! 12 | * A clear title to resume the issue 13 | * A description of the workflow needed to reproduce the bug, 14 | 15 | > _NOTE:_ Don’t hesitate giving as much information as you can (OS, PHP version extensions …) 16 | 17 | ## Sending a Pull Request 18 | 19 | When you send a PR, just make sure that: 20 | 21 | * You add valid test cases. 22 | * Tests are green. 23 | * The related documentation is up-to-date. 24 | * Also don't forget to add a comment when you update a PR with a ping to the maintainer (``@username``), so he/she will get a notification. 25 | 26 | ## Contributing to the documentation 27 | 28 | You need to install the python tool to check and validate the sphinx syntax: 29 | 30 | pip install -r Resources/doc/requirements.txt 31 | 32 | and you can check the documentation with the command: 33 | 34 | cd Resources/doc/ 35 | rm -rf _build && sphinx-build -W -b html -d _build/doctrees . _build/html 36 | 37 | The html will be available in the ``_build/html`` folder. 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | SonatajQueryBundle 2 | ================== 3 | 4 | Add the jQuery framework inside the Symfony2 framework. 5 | 6 | Documentation can be found on [Resources/doc](https://github.com/sonata-project/SonatajQueryBundle/tree/master/Resources/doc). 7 | 8 | **Google Groups**: For questions and proposals you can post on this google groups 9 | 10 | * [Sonata Users](https://groups.google.com/group/sonata-users): Only for user questions 11 | * [Sonata Devs](https://groups.google.com/group/sonata-devs): Only for devs 12 | 13 | License 14 | ------- 15 | 16 | This bundle is available under the [MIT license](Resources/meta/LICENSE). 17 | -------------------------------------------------------------------------------- /Resources/doc/index.rst: -------------------------------------------------------------------------------- 1 | jQuery Bundle 2 | ============= 3 | 4 | Add the jQuery framework inside the Symfony2 framework 5 | 6 | Reference Guide 7 | --------------- 8 | 9 | .. toctree:: 10 | :maxdepth: 1 11 | :numbered: 12 | 13 | reference/installation 14 | reference/usage 15 | -------------------------------------------------------------------------------- /Resources/doc/reference/installation.rst: -------------------------------------------------------------------------------- 1 | Installation 2 | ============ 3 | 4 | Use composer to manage your dependencies and download SonatajQueryBundle: 5 | 6 | .. code-block:: bash 7 | 8 | php composer.phar require sonata-project/jquery-bundle 9 | 10 | You'll be asked to type in a version constraint. 'dev-master' will usually get you the latest 11 | version. Check `packagist `_ 12 | for older versions: 13 | 14 | .. code-block:: bash 15 | 16 | Please provide a version constraint for the sonata-project/jquery-bundle requirement: dev-master 17 | 18 | -------------------------------------------------------------------------------- /Resources/doc/reference/usage.rst: -------------------------------------------------------------------------------- 1 | Usage 2 | ===== 3 | 4 | Include the JavaScript files in you template file: 5 | 6 | .. code-block:: html+jinja 7 | 8 | 9 | 10 | CSS files are also available: 11 | 12 | .. code-block:: html+jinja 13 | 14 | 15 | 16 | Check `SonataAdminBundle `_ for an example. 17 | -------------------------------------------------------------------------------- /Resources/meta/LICENSE: -------------------------------------------------------------------------------- 1 | jQueryBundle 2 | 3 | The MIT License 4 | 5 | Copyright (c) 2010-201 3thomas.rabaix@sonata-project.org 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in 15 | all copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 | THE SOFTWARE. 24 | 25 | 26 | jQuery Framework (http://jquery.org/license) 27 | 28 | Copyright 2013 jQuery Foundation and other contributors 29 | http://jquery.com/ 30 | 31 | Permission is hereby granted, free of charge, to any person obtaining 32 | a copy of this software and associated documentation files (the 33 | "Software"), to deal in the Software without restriction, including 34 | without limitation the rights to use, copy, modify, merge, publish, 35 | distribute, sublicense, and/or sell copies of the Software, and to 36 | permit persons to whom the Software is furnished to do so, subject to 37 | the following conditions: 38 | 39 | The above copyright notice and this permission notice shall be 40 | included in all copies or substantial portions of the Software. 41 | 42 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 43 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 44 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 45 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 46 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 47 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 48 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 49 | -------------------------------------------------------------------------------- /Resources/public/jquery-ui-i18n.js: -------------------------------------------------------------------------------- 1 | /* Afrikaans initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Renier Pretorius. */ 3 | jQuery(function ($) { 4 | $.datepicker.regional['af'] = { 5 | closeText:'Selekteer', 6 | prevText:'Vorige', 7 | nextText:'Volgende', 8 | currentText:'Vandag', 9 | monthNames:['Januarie', 'Februarie', 'Maart', 'April', 'Mei', 'Junie', 10 | 'Julie', 'Augustus', 'September', 'Oktober', 'November', 'Desember'], 11 | monthNamesShort:['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], 13 | dayNames:['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'], 14 | dayNamesShort:['Son', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'], 15 | dayNamesMin:['So', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Sa'], 16 | weekHeader:'Wk', 17 | dateFormat:'dd/mm/yy', 18 | firstDay:1, 19 | isRTL:false, 20 | showMonthAfterYear:false, 21 | yearSuffix:''}; 22 | 23 | /* Algerian Arabic Translation for jQuery UI date picker plugin. (can be used for Tunisia)*/ 24 | /* Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */ 25 | $.datepicker.regional['ar-DZ'] = { 26 | closeText:'إغلاق', 27 | prevText:'<السابق', 28 | nextText:'التالي>', 29 | currentText:'اليوم', 30 | monthNames:['جانفي', 'فيفري', 'مارس', 'أفريل', 'ماي', 'جوان', 31 | 'جويلية', 'أوت', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'], 32 | monthNamesShort:['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], 33 | dayNames:['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 34 | dayNamesShort:['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 35 | dayNamesMin:['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 36 | weekHeader:'أسبوع', 37 | dateFormat:'dd/mm/yy', 38 | firstDay:6, 39 | isRTL:true, 40 | showMonthAfterYear:false, 41 | yearSuffix:''}; 42 | 43 | /* Arabic Translation for jQuery UI date picker plugin. */ 44 | /* Khaled Alhourani -- me@khaledalhourani.com */ 45 | /* NOTE: monthNames are the original months names and they are the Arabic names, not the new months name فبراير - يناير and there isn't any Arabic roots for these months */ 46 | $.datepicker.regional['ar'] = { 47 | closeText:'إغلاق', 48 | prevText:'<السابق', 49 | nextText:'التالي>', 50 | currentText:'اليوم', 51 | monthNames:['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'مايو', 'حزيران', 52 | 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'], 53 | monthNamesShort:['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], 54 | dayNames:['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 55 | dayNamesShort:['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 56 | dayNamesMin:['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 57 | weekHeader:'أسبوع', 58 | dateFormat:'dd/mm/yy', 59 | firstDay:6, 60 | isRTL:true, 61 | showMonthAfterYear:false, 62 | yearSuffix:''}; 63 | 64 | /* Azerbaijani (UTF-8) initialisation for the jQuery UI date picker plugin. */ 65 | /* Written by Jamil Najafov (necefov33@gmail.com). */ 66 | $.datepicker.regional['az'] = { 67 | closeText:'Bağla', 68 | prevText:'<Geri', 69 | nextText:'İrəli>', 70 | currentText:'Bugün', 71 | monthNames:['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'İyun', 72 | 'İyul', 'Avqust', 'Sentyabr', 'Oktyabr', 'Noyabr', 'Dekabr'], 73 | monthNamesShort:['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyun', 74 | 'İyul', 'Avq', 'Sen', 'Okt', 'Noy', 'Dek'], 75 | dayNames:['Bazar', 'Bazar ertəsi', 'Çərşənbə axşamı', 'Çərşənbə', 'Cümə axşamı', 'Cümə', 'Şənbə'], 76 | dayNamesShort:['B', 'Be', 'Ça', 'Ç', 'Ca', 'C', 'Ş'], 77 | dayNamesMin:['B', 'B', 'Ç', 'С', 'Ç', 'C', 'Ş'], 78 | weekHeader:'Hf', 79 | dateFormat:'dd.mm.yy', 80 | firstDay:1, 81 | isRTL:false, 82 | showMonthAfterYear:false, 83 | yearSuffix:''}; 84 | 85 | /* Bulgarian initialisation for the jQuery UI date picker plugin. */ 86 | /* Written by Stoyan Kyosev (http://svest.org). */ 87 | $.datepicker.regional['bg'] = { 88 | closeText:'затвори', 89 | prevText:'<назад', 90 | nextText:'напред>', 91 | nextBigText:'>>', 92 | currentText:'днес', 93 | monthNames:['Януари', 'Февруари', 'Март', 'Април', 'Май', 'Юни', 94 | 'Юли', 'Август', 'Септември', 'Октомври', 'Ноември', 'Декември'], 95 | monthNamesShort:['Яну', 'Фев', 'Мар', 'Апр', 'Май', 'Юни', 96 | 'Юли', 'Авг', 'Сеп', 'Окт', 'Нов', 'Дек'], 97 | dayNames:['Неделя', 'Понеделник', 'Вторник', 'Сряда', 'Четвъртък', 'Петък', 'Събота'], 98 | dayNamesShort:['Нед', 'Пон', 'Вто', 'Сря', 'Чет', 'Пет', 'Съб'], 99 | dayNamesMin:['Не', 'По', 'Вт', 'Ср', 'Че', 'Пе', 'Съ'], 100 | weekHeader:'Wk', 101 | dateFormat:'dd.mm.yy', 102 | firstDay:1, 103 | isRTL:false, 104 | showMonthAfterYear:false, 105 | yearSuffix:''}; 106 | 107 | /* Bosnian i18n for the jQuery UI date picker plugin. */ 108 | /* Written by Kenan Konjo. */ 109 | $.datepicker.regional['bs'] = { 110 | closeText:'Zatvori', 111 | prevText:'<', 112 | nextText:'>', 113 | currentText:'Danas', 114 | monthNames:['Januar', 'Februar', 'Mart', 'April', 'Maj', 'Juni', 115 | 'Juli', 'August', 'Septembar', 'Oktobar', 'Novembar', 'Decembar'], 116 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 117 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'], 118 | dayNames:['Nedelja', 'Ponedeljak', 'Utorak', 'Srijeda', 'Četvrtak', 'Petak', 'Subota'], 119 | dayNamesShort:['Ned', 'Pon', 'Uto', 'Sri', 'Čet', 'Pet', 'Sub'], 120 | dayNamesMin:['Ne', 'Po', 'Ut', 'Sr', 'Če', 'Pe', 'Su'], 121 | weekHeader:'Wk', 122 | dateFormat:'dd.mm.yy', 123 | firstDay:1, 124 | isRTL:false, 125 | showMonthAfterYear:false, 126 | yearSuffix:''}; 127 | 128 | /* Inicialització en català per a l'extenció 'calendar' per jQuery. */ 129 | /* Writers: (joan.leon@gmail.com). */ 130 | $.datepicker.regional['ca'] = { 131 | closeText:'Tancar', 132 | prevText:'<Ant', 133 | nextText:'Seg>', 134 | currentText:'Avui', 135 | monthNames:['Gener', 'Febrer', 'Març', 'Abril', 'Maig', 'Juny', 136 | 'Juliol', 'Agost', 'Setembre', 'Octubre', 'Novembre', 'Desembre'], 137 | monthNamesShort:['Gen', 'Feb', 'Mar', 'Abr', 'Mai', 'Jun', 138 | 'Jul', 'Ago', 'Set', 'Oct', 'Nov', 'Des'], 139 | dayNames:['Diumenge', 'Dilluns', 'Dimarts', 'Dimecres', 'Dijous', 'Divendres', 'Dissabte'], 140 | dayNamesShort:['Dug', 'Dln', 'Dmt', 'Dmc', 'Djs', 'Dvn', 'Dsb'], 141 | dayNamesMin:['Dg', 'Dl', 'Dt', 'Dc', 'Dj', 'Dv', 'Ds'], 142 | weekHeader:'Sm', 143 | dateFormat:'dd/mm/yy', 144 | firstDay:1, 145 | isRTL:false, 146 | showMonthAfterYear:false, 147 | yearSuffix:''}; 148 | 149 | /* Czech initialisation for the jQuery UI date picker plugin. */ 150 | /* Written by Tomas Muller (tomas@tomas-muller.net). */ 151 | $.datepicker.regional['cs'] = { 152 | closeText:'Zavřít', 153 | prevText:'<Dříve', 154 | nextText:'Později>', 155 | currentText:'Nyní', 156 | monthNames:['leden', 'únor', 'březen', 'duben', 'květen', 'červen', 157 | 'červenec', 'srpen', 'září', 'říjen', 'listopad', 'prosinec'], 158 | monthNamesShort:['led', 'úno', 'bře', 'dub', 'kvě', 'čer', 159 | 'čvc', 'srp', 'zář', 'říj', 'lis', 'pro'], 160 | dayNames:['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'], 161 | dayNamesShort:['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'], 162 | dayNamesMin:['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'], 163 | weekHeader:'Týd', 164 | dateFormat:'dd.mm.yy', 165 | firstDay:1, 166 | isRTL:false, 167 | showMonthAfterYear:false, 168 | yearSuffix:''}; 169 | 170 | /* Danish initialisation for the jQuery UI date picker plugin. */ 171 | /* Written by Jan Christensen ( deletestuff@gmail.com). */ 172 | $.datepicker.regional['da'] = { 173 | closeText:'Luk', 174 | prevText:'<Forrige', 175 | nextText:'Næste>', 176 | currentText:'Idag', 177 | monthNames:['Januar', 'Februar', 'Marts', 'April', 'Maj', 'Juni', 178 | 'Juli', 'August', 'September', 'Oktober', 'November', 'December'], 179 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 180 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'], 181 | dayNames:['Søndag', 'Mandag', 'Tirsdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lørdag'], 182 | dayNamesShort:['Søn', 'Man', 'Tir', 'Ons', 'Tor', 'Fre', 'Lør'], 183 | dayNamesMin:['Sø', 'Ma', 'Ti', 'On', 'To', 'Fr', 'Lø'], 184 | weekHeader:'Uge', 185 | dateFormat:'dd-mm-yy', 186 | firstDay:1, 187 | isRTL:false, 188 | showMonthAfterYear:false, 189 | yearSuffix:''}; 190 | 191 | /* German initialisation for the jQuery UI date picker plugin. */ 192 | /* Written by Milian Wolff (mail@milianw.de). */ 193 | $.datepicker.regional['de'] = { 194 | closeText:'schließen', 195 | prevText:'<zurück', 196 | nextText:'Vor>', 197 | currentText:'heute', 198 | monthNames:['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 199 | 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'], 200 | monthNamesShort:['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 201 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], 202 | dayNames:['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'], 203 | dayNamesShort:['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'], 204 | dayNamesMin:['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'], 205 | weekHeader:'Wo', 206 | dateFormat:'dd.mm.yy', 207 | firstDay:1, 208 | isRTL:false, 209 | showMonthAfterYear:false, 210 | yearSuffix:''}; 211 | 212 | /* Greek (el) initialisation for the jQuery UI date picker plugin. */ 213 | /* Written by Alex Cicovic (http://www.alexcicovic.com) */ 214 | $.datepicker.regional['el'] = { 215 | closeText:'Κλείσιμο', 216 | prevText:'Προηγούμενος', 217 | nextText:'Επόμενος', 218 | currentText:'Τρέχων Μήνας', 219 | monthNames:['Ιανουάριος', 'Φεβρουάριος', 'Μάρτιος', 'Απρίλιος', 'Μάιος', 'Ιούνιος', 220 | 'Ιούλιος', 'Αύγουστος', 'Σεπτέμβριος', 'Οκτώβριος', 'Νοέμβριος', 'Δεκέμβριος'], 221 | monthNamesShort:['Ιαν', 'Φεβ', 'Μαρ', 'Απρ', 'Μαι', 'Ιουν', 222 | 'Ιουλ', 'Αυγ', 'Σεπ', 'Οκτ', 'Νοε', 'Δεκ'], 223 | dayNames:['Κυριακή', 'Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη', 'Παρασκευή', 'Σάββατο'], 224 | dayNamesShort:['Κυρ', 'Δευ', 'Τρι', 'Τετ', 'Πεμ', 'Παρ', 'Σαβ'], 225 | dayNamesMin:['Κυ', 'Δε', 'Τρ', 'Τε', 'Πε', 'Πα', 'Σα'], 226 | weekHeader:'Εβδ', 227 | dateFormat:'dd/mm/yy', 228 | firstDay:1, 229 | isRTL:false, 230 | showMonthAfterYear:false, 231 | yearSuffix:''}; 232 | 233 | /* English/Australia initialisation for the jQuery UI date picker plugin. */ 234 | /* Based on the en-GB initialisation. */ 235 | $.datepicker.regional['en-AU'] = { 236 | closeText:'Done', 237 | prevText:'Prev', 238 | nextText:'Next', 239 | currentText:'Today', 240 | monthNames:['January', 'February', 'March', 'April', 'May', 'June', 241 | 'July', 'August', 'September', 'October', 'November', 'December'], 242 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 243 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 244 | dayNames:['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 245 | dayNamesShort:['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 246 | dayNamesMin:['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], 247 | weekHeader:'Wk', 248 | dateFormat:'dd/mm/yy', 249 | firstDay:1, 250 | isRTL:false, 251 | showMonthAfterYear:false, 252 | yearSuffix:''}; 253 | 254 | /* English/UK initialisation for the jQuery UI date picker plugin. */ 255 | /* Written by Stuart. */ 256 | $.datepicker.regional['en-GB'] = { 257 | closeText:'Done', 258 | prevText:'Prev', 259 | nextText:'Next', 260 | currentText:'Today', 261 | monthNames:['January', 'February', 'March', 'April', 'May', 'June', 262 | 'July', 'August', 'September', 'October', 'November', 'December'], 263 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 264 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 265 | dayNames:['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 266 | dayNamesShort:['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 267 | dayNamesMin:['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], 268 | weekHeader:'Wk', 269 | dateFormat:'dd/mm/yy', 270 | firstDay:1, 271 | isRTL:false, 272 | showMonthAfterYear:false, 273 | yearSuffix:''}; 274 | 275 | /* English/New Zealand initialisation for the jQuery UI date picker plugin. */ 276 | /* Based on the en-GB initialisation. */ 277 | $.datepicker.regional['en-NZ'] = { 278 | closeText:'Done', 279 | prevText:'Prev', 280 | nextText:'Next', 281 | currentText:'Today', 282 | monthNames:['January', 'February', 'March', 'April', 'May', 'June', 283 | 'July', 'August', 'September', 'October', 'November', 'December'], 284 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 285 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 286 | dayNames:['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 287 | dayNamesShort:['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 288 | dayNamesMin:['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], 289 | weekHeader:'Wk', 290 | dateFormat:'dd/mm/yy', 291 | firstDay:1, 292 | isRTL:false, 293 | showMonthAfterYear:false, 294 | yearSuffix:''}; 295 | 296 | /* Esperanto initialisation for the jQuery UI date picker plugin. */ 297 | /* Written by Olivier M. (olivierweb@ifrance.com). */ 298 | $.datepicker.regional['eo'] = { 299 | closeText:'Fermi', 300 | prevText:'<Anta', 301 | nextText:'Sekv>', 302 | currentText:'Nuna', 303 | monthNames:['Januaro', 'Februaro', 'Marto', 'Aprilo', 'Majo', 'Junio', 304 | 'Julio', 'Aŭgusto', 'Septembro', 'Oktobro', 'Novembro', 'Decembro'], 305 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 306 | 'Jul', 'Aŭg', 'Sep', 'Okt', 'Nov', 'Dec'], 307 | dayNames:['Dimanĉo', 'Lundo', 'Mardo', 'Merkredo', 'Ĵaŭdo', 'Vendredo', 'Sabato'], 308 | dayNamesShort:['Dim', 'Lun', 'Mar', 'Mer', 'Ĵaŭ', 'Ven', 'Sab'], 309 | dayNamesMin:['Di', 'Lu', 'Ma', 'Me', 'Ĵa', 'Ve', 'Sa'], 310 | weekHeader:'Sb', 311 | dateFormat:'dd/mm/yy', 312 | firstDay:0, 313 | isRTL:false, 314 | showMonthAfterYear:false, 315 | yearSuffix:''}; 316 | 317 | /* Inicialización en español para la extensión 'UI date picker' para jQuery. */ 318 | /* Traducido por Vester (xvester@gmail.com). */ 319 | $.datepicker.regional['es'] = { 320 | closeText:'Cerrar', 321 | prevText:'<Ant', 322 | nextText:'Sig>', 323 | currentText:'Hoy', 324 | monthNames:['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 325 | 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'], 326 | monthNamesShort:['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 327 | 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'], 328 | dayNames:['Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'], 329 | dayNamesShort:['Dom', 'Lun', 'Mar', 'Mié', 'Juv', 'Vie', 'Sáb'], 330 | dayNamesMin:['Do', 'Lu', 'Ma', 'Mi', 'Ju', 'Vi', 'Sá'], 331 | weekHeader:'Sm', 332 | dateFormat:'dd/mm/yy', 333 | firstDay:1, 334 | isRTL:false, 335 | showMonthAfterYear:false, 336 | yearSuffix:''}; 337 | 338 | 339 | /* Estonian initialisation for the jQuery UI date picker plugin. */ 340 | /* Written by Mart Sõmermaa (mrts.pydev at gmail com). */ 341 | $.datepicker.regional['et'] = { 342 | closeText:'Sulge', 343 | prevText:'Eelnev', 344 | nextText:'Järgnev', 345 | currentText:'Täna', 346 | monthNames:['Jaanuar', 'Veebruar', 'Märts', 'Aprill', 'Mai', 'Juuni', 347 | 'Juuli', 'August', 'September', 'Oktoober', 'November', 'Detsember'], 348 | monthNamesShort:['Jaan', 'Veebr', 'Märts', 'Apr', 'Mai', 'Juuni', 349 | 'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'], 350 | dayNames:['Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev'], 351 | dayNamesShort:['Pühap', 'Esmasp', 'Teisip', 'Kolmap', 'Neljap', 'Reede', 'Laup'], 352 | dayNamesMin:['P', 'E', 'T', 'K', 'N', 'R', 'L'], 353 | weekHeader:'Sm', 354 | dateFormat:'dd.mm.yy', 355 | firstDay:1, 356 | isRTL:false, 357 | showMonthAfterYear:false, 358 | yearSuffix:''}; 359 | 360 | /* Euskarako oinarria 'UI date picker' jquery-ko extentsioarentzat */ 361 | /* Karrikas-ek itzulia (karrikas@karrikas.com) */ 362 | $.datepicker.regional['eu'] = { 363 | closeText:'Egina', 364 | prevText:'<Aur', 365 | nextText:'Hur>', 366 | currentText:'Gaur', 367 | monthNames:['Urtarrila', 'Otsaila', 'Martxoa', 'Apirila', 'Maiatza', 'Ekaina', 368 | 'Uztaila', 'Abuztua', 'Iraila', 'Urria', 'Azaroa', 'Abendua'], 369 | monthNamesShort:['Urt', 'Ots', 'Mar', 'Api', 'Mai', 'Eka', 370 | 'Uzt', 'Abu', 'Ira', 'Urr', 'Aza', 'Abe'], 371 | dayNames:['Igandea', 'Astelehena', 'Asteartea', 'Asteazkena', 'Osteguna', 'Ostirala', 'Larunbata'], 372 | dayNamesShort:['Iga', 'Ast', 'Ast', 'Ast', 'Ost', 'Ost', 'Lar'], 373 | dayNamesMin:['Ig', 'As', 'As', 'As', 'Os', 'Os', 'La'], 374 | weekHeader:'Wk', 375 | dateFormat:'yy/mm/dd', 376 | firstDay:1, 377 | isRTL:false, 378 | showMonthAfterYear:false, 379 | yearSuffix:''}; 380 | 381 | /* Persian (Farsi) Translation for the jQuery UI date picker plugin. */ 382 | /* Javad Mowlanezhad -- jmowla@gmail.com */ 383 | /* Jalali calendar should supported soon! (Its implemented but I have to test it) */ 384 | $.datepicker.regional['fa'] = { 385 | closeText:'بستن', 386 | prevText:'<قبلي', 387 | nextText:'بعدي>', 388 | currentText:'امروز', 389 | monthNames:['فروردين', 'ارديبهشت', 'خرداد', 'تير', 'مرداد', 'شهريور', 390 | 'مهر', 'آبان', 'آذر', 'دي', 'بهمن', 'اسفند'], 391 | monthNamesShort:['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], 392 | dayNames:['يکشنبه', 'دوشنبه', 'سه‌شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'], 393 | dayNamesShort:['ي', 'د', 'س', 'چ', 'پ', 'ج', 'ش'], 394 | dayNamesMin:['ي', 'د', 'س', 'چ', 'پ', 'ج', 'ش'], 395 | weekHeader:'هف', 396 | dateFormat:'yy/mm/dd', 397 | firstDay:6, 398 | isRTL:true, 399 | showMonthAfterYear:false, 400 | yearSuffix:''}; 401 | 402 | /* Finnish initialisation for the jQuery UI date picker plugin. */ 403 | /* Written by Harri Kilpi� (harrikilpio@gmail.com). */ 404 | $.datepicker.regional['fi'] = { 405 | closeText:'Sulje', 406 | prevText:'«Edellinen', 407 | nextText:'Seuraava»', 408 | currentText:'Tänään', 409 | monthNames:['Tammikuu', 'Helmikuu', 'Maaliskuu', 'Huhtikuu', 'Toukokuu', 'Kesäkuu', 410 | 'Heinäkuu', 'Elokuu', 'Syyskuu', 'Lokakuu', 'Marraskuu', 'Joulukuu'], 411 | monthNamesShort:['Tammi', 'Helmi', 'Maalis', 'Huhti', 'Touko', 'Kesä', 412 | 'Heinä', 'Elo', 'Syys', 'Loka', 'Marras', 'Joulu'], 413 | dayNamesShort:['Su', 'Ma', 'Ti', 'Ke', 'To', 'Pe', 'Su'], 414 | dayNames:['Sunnuntai', 'Maanantai', 'Tiistai', 'Keskiviikko', 'Torstai', 'Perjantai', 'Lauantai'], 415 | dayNamesMin:['Su', 'Ma', 'Ti', 'Ke', 'To', 'Pe', 'La'], 416 | weekHeader:'Vk', 417 | dateFormat:'dd.mm.yy', 418 | firstDay:1, 419 | isRTL:false, 420 | showMonthAfterYear:false, 421 | yearSuffix:''}; 422 | 423 | /* Faroese initialisation for the jQuery UI date picker plugin */ 424 | /* Written by Sverri Mohr Olsen, sverrimo@gmail.com */ 425 | $.datepicker.regional['fo'] = { 426 | closeText:'Lat aftur', 427 | prevText:'<Fyrra', 428 | nextText:'Næsta>', 429 | currentText:'Í dag', 430 | monthNames:['Januar', 'Februar', 'Mars', 'Apríl', 'Mei', 'Juni', 431 | 'Juli', 'August', 'September', 'Oktober', 'November', 'Desember'], 432 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 433 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], 434 | dayNames:['Sunnudagur', 'Mánadagur', 'Týsdagur', 'Mikudagur', 'Hósdagur', 'Fríggjadagur', 'Leyardagur'], 435 | dayNamesShort:['Sun', 'Mán', 'Týs', 'Mik', 'Hós', 'Frí', 'Ley'], 436 | dayNamesMin:['Su', 'Má', 'Tý', 'Mi', 'Hó', 'Fr', 'Le'], 437 | weekHeader:'Vk', 438 | dateFormat:'dd-mm-yy', 439 | firstDay:0, 440 | isRTL:false, 441 | showMonthAfterYear:false, 442 | yearSuffix:''}; 443 | 444 | /* Swiss-French initialisation for the jQuery UI date picker plugin. */ 445 | /* Written Martin Voelkle (martin.voelkle@e-tc.ch). */ 446 | $.datepicker.regional['fr-CH'] = { 447 | closeText:'Fermer', 448 | prevText:'<Préc', 449 | nextText:'Suiv>', 450 | currentText:'Courant', 451 | monthNames:['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 452 | 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'], 453 | monthNamesShort:['Jan', 'Fév', 'Mar', 'Avr', 'Mai', 'Jun', 454 | 'Jul', 'Aoû', 'Sep', 'Oct', 'Nov', 'Déc'], 455 | dayNames:['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'], 456 | dayNamesShort:['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'], 457 | dayNamesMin:['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa'], 458 | weekHeader:'Sm', 459 | dateFormat:'dd.mm.yy', 460 | firstDay:1, 461 | isRTL:false, 462 | showMonthAfterYear:false, 463 | yearSuffix:''}; 464 | 465 | /* French initialisation for the jQuery UI date picker plugin. */ 466 | /* Written by Keith Wood (kbwood{at}iinet.com.au), 467 | Stéphane Nahmani (sholby@sholby.net), 468 | Stéphane Raimbault */ 469 | $.datepicker.regional['fr'] = { 470 | closeText:'Fermer', 471 | prevText:'Précédent', 472 | nextText:'Suivant', 473 | currentText:'Aujourd\'hui', 474 | monthNames:['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 475 | 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'], 476 | monthNamesShort:['Janv.', 'Févr.', 'Mars', 'Avril', 'Mai', 'Juin', 477 | 'Juil.', 'Août', 'Sept.', 'Oct.', 'Nov.', 'Déc.'], 478 | dayNames:['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'], 479 | dayNamesShort:['Dim.', 'Lun.', 'Mar.', 'Mer.', 'Jeu.', 'Ven.', 'Sam.'], 480 | dayNamesMin:['D', 'L', 'M', 'M', 'J', 'V', 'S'], 481 | weekHeader:'Sem.', 482 | dateFormat:'dd/mm/yy', 483 | firstDay:1, 484 | isRTL:false, 485 | showMonthAfterYear:false, 486 | yearSuffix:''}; 487 | 488 | /* Galician localization for 'UI date picker' jQuery extension. */ 489 | /* Translated by Jorge Barreiro . */ 490 | $.datepicker.regional['gl'] = { 491 | closeText:'Pechar', 492 | prevText:'<Ant', 493 | nextText:'Seg>', 494 | currentText:'Hoxe', 495 | monthNames:['Xaneiro', 'Febreiro', 'Marzo', 'Abril', 'Maio', 'Xuño', 496 | 'Xullo', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Decembro'], 497 | monthNamesShort:['Xan', 'Feb', 'Mar', 'Abr', 'Mai', 'Xuñ', 498 | 'Xul', 'Ago', 'Set', 'Out', 'Nov', 'Dec'], 499 | dayNames:['Domingo', 'Luns', 'Martes', 'Mércores', 'Xoves', 'Venres', 'Sábado'], 500 | dayNamesShort:['Dom', 'Lun', 'Mar', 'Mér', 'Xov', 'Ven', 'Sáb'], 501 | dayNamesMin:['Do', 'Lu', 'Ma', 'Mé', 'Xo', 'Ve', 'Sá'], 502 | weekHeader:'Sm', 503 | dateFormat:'dd/mm/yy', 504 | firstDay:1, 505 | isRTL:false, 506 | showMonthAfterYear:false, 507 | yearSuffix:''}; 508 | 509 | /* Hebrew initialisation for the UI Datepicker extension. */ 510 | /* Written by Amir Hardon (ahardon at gmail dot com). */ 511 | $.datepicker.regional['he'] = { 512 | closeText:'סגור', 513 | prevText:'<הקודם', 514 | nextText:'הבא>', 515 | currentText:'היום', 516 | monthNames:['ינואר', 'פברואר', 'מרץ', 'אפריל', 'מאי', 'יוני', 517 | 'יולי', 'אוגוסט', 'ספטמבר', 'אוקטובר', 'נובמבר', 'דצמבר'], 518 | monthNamesShort:['1', '2', '3', '4', '5', '6', 519 | '7', '8', '9', '10', '11', '12'], 520 | dayNames:['ראשון', 'שני', 'שלישי', 'רביעי', 'חמישי', 'שישי', 'שבת'], 521 | dayNamesShort:['א\'', 'ב\'', 'ג\'', 'ד\'', 'ה\'', 'ו\'', 'שבת'], 522 | dayNamesMin:['א\'', 'ב\'', 'ג\'', 'ד\'', 'ה\'', 'ו\'', 'שבת'], 523 | weekHeader:'Wk', 524 | dateFormat:'dd/mm/yy', 525 | firstDay:0, 526 | isRTL:true, 527 | showMonthAfterYear:false, 528 | yearSuffix:''}; 529 | 530 | /* Croatian i18n for the jQuery UI date picker plugin. */ 531 | /* Written by Vjekoslav Nesek. */ 532 | $.datepicker.regional['hr'] = { 533 | closeText:'Zatvori', 534 | prevText:'<', 535 | nextText:'>', 536 | currentText:'Danas', 537 | monthNames:['Siječanj', 'Veljača', 'Ožujak', 'Travanj', 'Svibanj', 'Lipanj', 538 | 'Srpanj', 'Kolovoz', 'Rujan', 'Listopad', 'Studeni', 'Prosinac'], 539 | monthNamesShort:['Sij', 'Velj', 'Ožu', 'Tra', 'Svi', 'Lip', 540 | 'Srp', 'Kol', 'Ruj', 'Lis', 'Stu', 'Pro'], 541 | dayNames:['Nedjelja', 'Ponedjeljak', 'Utorak', 'Srijeda', 'Četvrtak', 'Petak', 'Subota'], 542 | dayNamesShort:['Ned', 'Pon', 'Uto', 'Sri', 'Čet', 'Pet', 'Sub'], 543 | dayNamesMin:['Ne', 'Po', 'Ut', 'Sr', 'Če', 'Pe', 'Su'], 544 | weekHeader:'Tje', 545 | dateFormat:'dd.mm.yy.', 546 | firstDay:1, 547 | isRTL:false, 548 | showMonthAfterYear:false, 549 | yearSuffix:''}; 550 | 551 | /* Hungarian initialisation for the jQuery UI date picker plugin. */ 552 | /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */ 553 | $.datepicker.regional['hu'] = { 554 | closeText:'bezárás', 555 | prevText:'« vissza', 556 | nextText:'előre »', 557 | currentText:'ma', 558 | monthNames:['Január', 'Február', 'Március', 'Április', 'Május', 'Június', 559 | 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'], 560 | monthNamesShort:['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún', 561 | 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'], 562 | dayNames:['Vasárnap', 'Hétfö', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'], 563 | dayNamesShort:['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'], 564 | dayNamesMin:['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'], 565 | weekHeader:'Hé', 566 | dateFormat:'yy-mm-dd', 567 | firstDay:1, 568 | isRTL:false, 569 | showMonthAfterYear:true, 570 | yearSuffix:''}; 571 | 572 | /* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */ 573 | /* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/ 574 | $.datepicker.regional['hy'] = { 575 | closeText:'Փակել', 576 | prevText:'<Նախ.', 577 | nextText:'Հաջ.>', 578 | currentText:'Այսօր', 579 | monthNames:['Հունվար', 'Փետրվար', 'Մարտ', 'Ապրիլ', 'Մայիս', 'Հունիս', 580 | 'Հուլիս', 'Օգոստոս', 'Սեպտեմբեր', 'Հոկտեմբեր', 'Նոյեմբեր', 'Դեկտեմբեր'], 581 | monthNamesShort:['Հունվ', 'Փետր', 'Մարտ', 'Ապր', 'Մայիս', 'Հունիս', 582 | 'Հուլ', 'Օգս', 'Սեպ', 'Հոկ', 'Նոյ', 'Դեկ'], 583 | dayNames:['կիրակի', 'եկուշաբթի', 'երեքշաբթի', 'չորեքշաբթի', 'հինգշաբթի', 'ուրբաթ', 'շաբաթ'], 584 | dayNamesShort:['կիր', 'երկ', 'երք', 'չրք', 'հնգ', 'ուրբ', 'շբթ'], 585 | dayNamesMin:['կիր', 'երկ', 'երք', 'չրք', 'հնգ', 'ուրբ', 'շբթ'], 586 | weekHeader:'ՇԲՏ', 587 | dateFormat:'dd.mm.yy', 588 | firstDay:1, 589 | isRTL:false, 590 | showMonthAfterYear:false, 591 | yearSuffix:''}; 592 | 593 | /* Indonesian initialisation for the jQuery UI date picker plugin. */ 594 | /* Written by Deden Fathurahman (dedenf@gmail.com). */ 595 | $.datepicker.regional['id'] = { 596 | closeText:'Tutup', 597 | prevText:'<mundur', 598 | nextText:'maju>', 599 | currentText:'hari ini', 600 | monthNames:['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 601 | 'Juli', 'Agustus', 'September', 'Oktober', 'Nopember', 'Desember'], 602 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 603 | 'Jul', 'Agus', 'Sep', 'Okt', 'Nop', 'Des'], 604 | dayNames:['Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jumat', 'Sabtu'], 605 | dayNamesShort:['Min', 'Sen', 'Sel', 'Rab', 'kam', 'Jum', 'Sab'], 606 | dayNamesMin:['Mg', 'Sn', 'Sl', 'Rb', 'Km', 'jm', 'Sb'], 607 | weekHeader:'Mg', 608 | dateFormat:'dd/mm/yy', 609 | firstDay:0, 610 | isRTL:false, 611 | showMonthAfterYear:false, 612 | yearSuffix:''}; 613 | 614 | /* Icelandic initialisation for the jQuery UI date picker plugin. */ 615 | /* Written by Haukur H. Thorsson (haukur@eskill.is). */ 616 | $.datepicker.regional['is'] = { 617 | closeText:'Loka', 618 | prevText:'< Fyrri', 619 | nextText:'Næsti >', 620 | currentText:'Í dag', 621 | monthNames:['Janúar', 'Febrúar', 'Mars', 'Apríl', 'Maí', 'Júní', 622 | 'Júlí', 'Ágúst', 'September', 'Október', 'Nóvember', 'Desember'], 623 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Maí', 'Jún', 624 | 'Júl', 'Ágú', 'Sep', 'Okt', 'Nóv', 'Des'], 625 | dayNames:['Sunnudagur', 'Mánudagur', 'Þriðjudagur', 'Miðvikudagur', 'Fimmtudagur', 'Föstudagur', 'Laugardagur'], 626 | dayNamesShort:['Sun', 'Mán', 'Þri', 'Mið', 'Fim', 'Fös', 'Lau'], 627 | dayNamesMin:['Su', 'Má', 'Þr', 'Mi', 'Fi', 'Fö', 'La'], 628 | weekHeader:'Vika', 629 | dateFormat:'dd/mm/yy', 630 | firstDay:0, 631 | isRTL:false, 632 | showMonthAfterYear:false, 633 | yearSuffix:''}; 634 | 635 | /* Italian initialisation for the jQuery UI date picker plugin. */ 636 | /* Written by Antonello Pasella (antonello.pasella@gmail.com). */ 637 | $.datepicker.regional['it'] = { 638 | closeText:'Chiudi', 639 | prevText:'<Prec', 640 | nextText:'Succ>', 641 | currentText:'Oggi', 642 | monthNames:['Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 643 | 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'], 644 | monthNamesShort:['Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu', 645 | 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'], 646 | dayNames:['Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'], 647 | dayNamesShort:['Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'], 648 | dayNamesMin:['Do', 'Lu', 'Ma', 'Me', 'Gi', 'Ve', 'Sa'], 649 | weekHeader:'Sm', 650 | dateFormat:'dd/mm/yy', 651 | firstDay:1, 652 | isRTL:false, 653 | showMonthAfterYear:false, 654 | yearSuffix:''}; 655 | 656 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 657 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 658 | $.datepicker.regional['ja'] = { 659 | closeText:'閉じる', 660 | prevText:'<前', 661 | nextText:'次>', 662 | currentText:'今日', 663 | monthNames:['1月', '2月', '3月', '4月', '5月', '6月', 664 | '7月', '8月', '9月', '10月', '11月', '12月'], 665 | monthNamesShort:['1月', '2月', '3月', '4月', '5月', '6月', 666 | '7月', '8月', '9月', '10月', '11月', '12月'], 667 | dayNames:['日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'], 668 | dayNamesShort:['日', '月', '火', '水', '木', '金', '土'], 669 | dayNamesMin:['日', '月', '火', '水', '木', '金', '土'], 670 | weekHeader:'週', 671 | dateFormat:'yy/mm/dd', 672 | firstDay:0, 673 | isRTL:false, 674 | showMonthAfterYear:true, 675 | yearSuffix:'年'}; 676 | 677 | /* Korean initialisation for the jQuery calendar extension. */ 678 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com). */ 679 | $.datepicker.regional['ko'] = { 680 | closeText:'닫기', 681 | prevText:'이전달', 682 | nextText:'다음달', 683 | currentText:'오늘', 684 | monthNames:['1월(JAN)', '2월(FEB)', '3월(MAR)', '4월(APR)', '5월(MAY)', '6월(JUN)', 685 | '7월(JUL)', '8월(AUG)', '9월(SEP)', '10월(OCT)', '11월(NOV)', '12월(DEC)'], 686 | monthNamesShort:['1월(JAN)', '2월(FEB)', '3월(MAR)', '4월(APR)', '5월(MAY)', '6월(JUN)', 687 | '7월(JUL)', '8월(AUG)', '9월(SEP)', '10월(OCT)', '11월(NOV)', '12월(DEC)'], 688 | dayNames:['일', '월', '화', '수', '목', '금', '토'], 689 | dayNamesShort:['일', '월', '화', '수', '목', '금', '토'], 690 | dayNamesMin:['일', '월', '화', '수', '목', '금', '토'], 691 | weekHeader:'Wk', 692 | dateFormat:'yy-mm-dd', 693 | firstDay:0, 694 | isRTL:false, 695 | showMonthAfterYear:false, 696 | yearSuffix:'년'}; 697 | 698 | /* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */ 699 | /* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */ 700 | $.datepicker.regional['kz'] = { 701 | closeText:'Жабу', 702 | prevText:'<Алдыңғы', 703 | nextText:'Келесі>', 704 | currentText:'Бүгін', 705 | monthNames:['Қаңтар', 'Ақпан', 'Наурыз', 'Сәуір', 'Мамыр', 'Маусым', 706 | 'Шілде', 'Тамыз', 'Қыркүйек', 'Қазан', 'Қараша', 'Желтоқсан'], 707 | monthNamesShort:['Қаң', 'Ақп', 'Нау', 'Сәу', 'Мам', 'Мау', 708 | 'Шіл', 'Там', 'Қыр', 'Қаз', 'Қар', 'Жел'], 709 | dayNames:['Жексенбі', 'Дүйсенбі', 'Сейсенбі', 'Сәрсенбі', 'Бейсенбі', 'Жұма', 'Сенбі'], 710 | dayNamesShort:['жкс', 'дсн', 'ссн', 'срс', 'бсн', 'жма', 'снб'], 711 | dayNamesMin:['Жк', 'Дс', 'Сс', 'Ср', 'Бс', 'Жм', 'Сн'], 712 | weekHeader:'Не', 713 | dateFormat:'dd.mm.yy', 714 | firstDay:1, 715 | isRTL:false, 716 | showMonthAfterYear:false, 717 | yearSuffix:''}; 718 | 719 | /* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 720 | /* @author Arturas Paleicikas */ 721 | $.datepicker.regional['lt'] = { 722 | closeText:'Uždaryti', 723 | prevText:'<Atgal', 724 | nextText:'Pirmyn>', 725 | currentText:'Šiandien', 726 | monthNames:['Sausis', 'Vasaris', 'Kovas', 'Balandis', 'Gegužė', 'Birželis', 727 | 'Liepa', 'Rugpjūtis', 'Rugsėjis', 'Spalis', 'Lapkritis', 'Gruodis'], 728 | monthNamesShort:['Sau', 'Vas', 'Kov', 'Bal', 'Geg', 'Bir', 729 | 'Lie', 'Rugp', 'Rugs', 'Spa', 'Lap', 'Gru'], 730 | dayNames:['sekmadienis', 'pirmadienis', 'antradienis', 'trečiadienis', 'ketvirtadienis', 'penktadienis', 'šeštadienis'], 731 | dayNamesShort:['sek', 'pir', 'ant', 'tre', 'ket', 'pen', 'šeš'], 732 | dayNamesMin:['Se', 'Pr', 'An', 'Tr', 'Ke', 'Pe', 'Še'], 733 | weekHeader:'Wk', 734 | dateFormat:'yy-mm-dd', 735 | firstDay:1, 736 | isRTL:false, 737 | showMonthAfterYear:false, 738 | yearSuffix:''}; 739 | 740 | /* Latvian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 741 | /* @author Arturas Paleicikas */ 742 | $.datepicker.regional['lv'] = { 743 | closeText:'Aizvērt', 744 | prevText:'Iepr', 745 | nextText:'Nāka', 746 | currentText:'Šodien', 747 | monthNames:['Janvāris', 'Februāris', 'Marts', 'Aprīlis', 'Maijs', 'Jūnijs', 748 | 'Jūlijs', 'Augusts', 'Septembris', 'Oktobris', 'Novembris', 'Decembris'], 749 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Mai', 'Jūn', 750 | 'Jūl', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'], 751 | dayNames:['svētdiena', 'pirmdiena', 'otrdiena', 'trešdiena', 'ceturtdiena', 'piektdiena', 'sestdiena'], 752 | dayNamesShort:['svt', 'prm', 'otr', 'tre', 'ctr', 'pkt', 'sst'], 753 | dayNamesMin:['Sv', 'Pr', 'Ot', 'Tr', 'Ct', 'Pk', 'Ss'], 754 | weekHeader:'Nav', 755 | dateFormat:'dd-mm-yy', 756 | firstDay:1, 757 | isRTL:false, 758 | showMonthAfterYear:false, 759 | yearSuffix:''}; 760 | 761 | /* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */ 762 | /* Written by Saji Nediyanchath (saji89@gmail.com). */ 763 | $.datepicker.regional['ml'] = { 764 | closeText:'ശരി', 765 | prevText:'മുന്നത്തെ', 766 | nextText:'അടുത്തത് ', 767 | currentText:'ഇന്ന്', 768 | monthNames:['ജനുവരി', 'ഫെബ്രുവരി', 'മാര്‍ച്ച്', 'ഏപ്രില്‍', 'മേയ്', 'ജൂണ്‍', 769 | 'ജൂലൈ', 'ആഗസ്റ്റ്', 'സെപ്റ്റംബര്‍', 'ഒക്ടോബര്‍', 'നവംബര്‍', 'ഡിസംബര്‍'], 770 | monthNamesShort:['ജനു', 'ഫെബ്', 'മാര്‍', 'ഏപ്രി', 'മേയ്', 'ജൂണ്‍', 771 | 'ജൂലാ', 'ആഗ', 'സെപ്', 'ഒക്ടോ', 'നവം', 'ഡിസ'], 772 | dayNames:['ഞായര്‍', 'തിങ്കള്‍', 'ചൊവ്വ', 'ബുധന്‍', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], 773 | dayNamesShort:['ഞായ', 'തിങ്ക', 'ചൊവ്വ', 'ബുധ', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], 774 | dayNamesMin:['ഞാ', 'തി', 'ചൊ', 'ബു', 'വ്യാ', 'വെ', 'ശ'], 775 | weekHeader:'ആ', 776 | dateFormat:'dd/mm/yy', 777 | firstDay:1, 778 | isRTL:false, 779 | showMonthAfterYear:false, 780 | yearSuffix:''}; 781 | 782 | /* Malaysian initialisation for the jQuery UI date picker plugin. */ 783 | /* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */ 784 | $.datepicker.regional['ms'] = { 785 | closeText:'Tutup', 786 | prevText:'<Sebelum', 787 | nextText:'Selepas>', 788 | currentText:'hari ini', 789 | monthNames:['Januari', 'Februari', 'Mac', 'April', 'Mei', 'Jun', 790 | 'Julai', 'Ogos', 'September', 'Oktober', 'November', 'Disember'], 791 | monthNamesShort:['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 792 | 'Jul', 'Ogo', 'Sep', 'Okt', 'Nov', 'Dis'], 793 | dayNames:['Ahad', 'Isnin', 'Selasa', 'Rabu', 'Khamis', 'Jumaat', 'Sabtu'], 794 | dayNamesShort:['Aha', 'Isn', 'Sel', 'Rab', 'kha', 'Jum', 'Sab'], 795 | dayNamesMin:['Ah', 'Is', 'Se', 'Ra', 'Kh', 'Ju', 'Sa'], 796 | weekHeader:'Mg', 797 | dateFormat:'dd/mm/yy', 798 | firstDay:0, 799 | isRTL:false, 800 | showMonthAfterYear:false, 801 | yearSuffix:''}; 802 | 803 | /* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */ 804 | /* Written by Mathias Bynens */ 805 | $.datepicker.regional.nl = { 806 | closeText:'Sluiten', 807 | prevText:'←', 808 | nextText:'→', 809 | currentText:'Vandaag', 810 | monthNames:['januari', 'februari', 'maart', 'april', 'mei', 'juni', 811 | 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 812 | monthNamesShort:['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 813 | 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 814 | dayNames:['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 815 | dayNamesShort:['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], 816 | dayNamesMin:['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 817 | weekHeader:'Wk', 818 | dateFormat:'dd-mm-yy', 819 | firstDay:1, 820 | isRTL:false, 821 | showMonthAfterYear:false, 822 | yearSuffix:''}; 823 | 824 | /* Norwegian initialisation for the jQuery UI date picker plugin. */ 825 | /* Written by Naimdjon Takhirov (naimdjon@gmail.com). */ 826 | $.datepicker.regional['no'] = { 827 | closeText:'Lukk', 828 | prevText:'«Forrige', 829 | nextText:'Neste»', 830 | currentText:'I dag', 831 | monthNames:['januar', 'februar', 'mars', 'april', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember'], 832 | monthNamesShort:['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'], 833 | dayNamesShort:['søn', 'man', 'tir', 'ons', 'tor', 'fre', 'lør'], 834 | dayNames:['søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag'], 835 | dayNamesMin:['sø', 'ma', 'ti', 'on', 'to', 'fr', 'lø'], 836 | weekHeader:'Uke', 837 | dateFormat:'dd.mm.yy', 838 | firstDay:1, 839 | isRTL:false, 840 | showMonthAfterYear:false, 841 | yearSuffix:'' 842 | }; 843 | /* Polish initialisation for the jQuery UI date picker plugin. */ 844 | /* Written by Jacek Wysocki (jacek.wysocki@gmail.com). */ 845 | $.datepicker.regional['pl'] = { 846 | closeText:'Zamknij', 847 | prevText:'<Poprzedni', 848 | nextText:'Następny>', 849 | currentText:'Dziś', 850 | monthNames:['Styczeń', 'Luty', 'Marzec', 'Kwiecień', 'Maj', 'Czerwiec', 851 | 'Lipiec', 'Sierpień', 'Wrzesień', 'Październik', 'Listopad', 'Grudzień'], 852 | monthNamesShort:['Sty', 'Lu', 'Mar', 'Kw', 'Maj', 'Cze', 853 | 'Lip', 'Sie', 'Wrz', 'Pa', 'Lis', 'Gru'], 854 | dayNames:['Niedziela', 'Poniedziałek', 'Wtorek', 'Środa', 'Czwartek', 'Piątek', 'Sobota'], 855 | dayNamesShort:['Nie', 'Pn', 'Wt', 'Śr', 'Czw', 'Pt', 'So'], 856 | dayNamesMin:['N', 'Pn', 'Wt', 'Śr', 'Cz', 'Pt', 'So'], 857 | weekHeader:'Tydz', 858 | dateFormat:'dd.mm.yy', 859 | firstDay:1, 860 | isRTL:false, 861 | showMonthAfterYear:false, 862 | yearSuffix:''}; 863 | /* Brazilian initialisation for the jQuery UI date picker plugin. */ 864 | /* Written by Leonildo Costa Silva (leocsilva@gmail.com). */ 865 | $.datepicker.regional['pt-BR'] = { 866 | closeText:'Fechar', 867 | prevText:'<Anterior', 868 | nextText:'Próximo>', 869 | currentText:'Hoje', 870 | monthNames:['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 871 | 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'], 872 | monthNamesShort:['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 873 | 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'], 874 | dayNames:['Domingo', 'Segunda-feira', 'Terça-feira', 'Quarta-feira', 'Quinta-feira', 'Sexta-feira', 'Sábado'], 875 | dayNamesShort:['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb'], 876 | dayNamesMin:['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb'], 877 | weekHeader:'Sm', 878 | dateFormat:'dd/mm/yy', 879 | firstDay:0, 880 | isRTL:false, 881 | showMonthAfterYear:false, 882 | yearSuffix:''}; 883 | 884 | /* Portuguese initialisation for the jQuery UI date picker plugin. */ 885 | $.datepicker.regional['pt'] = { 886 | closeText:'Fechar', 887 | prevText:'<Anterior', 888 | nextText:'Seguinte', 889 | currentText:'Hoje', 890 | monthNames:['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 891 | 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'], 892 | monthNamesShort:['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 893 | 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'], 894 | dayNames:['Domingo', 'Segunda-feira', 'Terça-feira', 'Quarta-feira', 'Quinta-feira', 'Sexta-feira', 'Sábado'], 895 | dayNamesShort:['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb'], 896 | dayNamesMin:['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb'], 897 | weekHeader:'Sem', 898 | dateFormat:'dd/mm/yy', 899 | firstDay:0, 900 | isRTL:false, 901 | showMonthAfterYear:false, 902 | yearSuffix:''}; 903 | 904 | /* Romansh initialisation for the jQuery UI date picker plugin. */ 905 | /* Written by Yvonne Gienal (yvonne.gienal@educa.ch). */ 906 | $.datepicker.regional['rm'] = { 907 | closeText:'Serrar', 908 | prevText:'<Suandant', 909 | nextText:'Precedent>', 910 | currentText:'Actual', 911 | monthNames:['Schaner', 'Favrer', 'Mars', 'Avrigl', 'Matg', 'Zercladur', 'Fanadur', 'Avust', 'Settember', 'October', 'November', 'December'], 912 | monthNamesShort:['Scha', 'Fev', 'Mar', 'Avr', 'Matg', 'Zer', 'Fan', 'Avu', 'Sett', 'Oct', 'Nov', 'Dec'], 913 | dayNames:['Dumengia', 'Glindesdi', 'Mardi', 'Mesemna', 'Gievgia', 'Venderdi', 'Sonda'], 914 | dayNamesShort:['Dum', 'Gli', 'Mar', 'Mes', 'Gie', 'Ven', 'Som'], 915 | dayNamesMin:['Du', 'Gl', 'Ma', 'Me', 'Gi', 'Ve', 'So'], 916 | weekHeader:'emna', 917 | dateFormat:'dd/mm/yy', 918 | firstDay:1, 919 | isRTL:false, 920 | showMonthAfterYear:false, 921 | yearSuffix:''}; 922 | 923 | /* Romanian initialisation for the jQuery UI date picker plugin. 924 | * 925 | * Written by Edmond L. (ll_edmond@walla.com) 926 | * and Ionut G. Stan (ionut.g.stan@gmail.com) 927 | */ 928 | $.datepicker.regional['ro'] = { 929 | closeText:'Închide', 930 | prevText:'« Luna precedentă', 931 | nextText:'Luna următoare »', 932 | currentText:'Azi', 933 | monthNames:['Ianuarie', 'Februarie', 'Martie', 'Aprilie', 'Mai', 'Iunie', 934 | 'Iulie', 'August', 'Septembrie', 'Octombrie', 'Noiembrie', 'Decembrie'], 935 | monthNamesShort:['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', 936 | 'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 937 | dayNames:['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'], 938 | dayNamesShort:['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'], 939 | dayNamesMin:['Du', 'Lu', 'Ma', 'Mi', 'Jo', 'Vi', 'Sâ'], 940 | weekHeader:'Săpt', 941 | dateFormat:'dd.mm.yy', 942 | firstDay:1, 943 | isRTL:false, 944 | showMonthAfterYear:false, 945 | yearSuffix:''}; 946 | 947 | /* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 948 | /* Written by Andrew Stromnov (stromnov@gmail.com). */ 949 | $.datepicker.regional['ru'] = { 950 | closeText:'Закрыть', 951 | prevText:'<Пред', 952 | nextText:'След>', 953 | currentText:'Сегодня', 954 | monthNames:['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 955 | 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'], 956 | monthNamesShort:['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 957 | 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'], 958 | dayNames:['воскресенье', 'понедельник', 'вторник', 'среда', 'четверг', 'пятница', 'суббота'], 959 | dayNamesShort:['вск', 'пнд', 'втр', 'срд', 'чтв', 'птн', 'сбт'], 960 | dayNamesMin:['Вс', 'Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб'], 961 | weekHeader:'Нед', 962 | dateFormat:'dd.mm.yy', 963 | firstDay:1, 964 | isRTL:false, 965 | showMonthAfterYear:false, 966 | yearSuffix:''}; 967 | 968 | /* Slovak initialisation for the jQuery UI date picker plugin. */ 969 | /* Written by Vojtech Rinik (vojto@hmm.sk). */ 970 | $.datepicker.regional['sk'] = { 971 | closeText:'Zavrieť', 972 | prevText:'<Predchádzajúci', 973 | nextText:'Nasledujúci>', 974 | currentText:'Dnes', 975 | monthNames:['Január', 'Február', 'Marec', 'Apríl', 'Máj', 'Jún', 976 | 'Júl', 'August', 'September', 'Október', 'November', 'December'], 977 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Máj', 'Jún', 978 | 'Júl', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'], 979 | dayNames:['Nedeľa', 'Pondelok', 'Utorok', 'Streda', 'Štvrtok', 'Piatok', 'Sobota'], 980 | dayNamesShort:['Ned', 'Pon', 'Uto', 'Str', 'Štv', 'Pia', 'Sob'], 981 | dayNamesMin:['Ne', 'Po', 'Ut', 'St', 'Št', 'Pia', 'So'], 982 | weekHeader:'Ty', 983 | dateFormat:'dd.mm.yy', 984 | firstDay:1, 985 | isRTL:false, 986 | showMonthAfterYear:false, 987 | yearSuffix:''}; 988 | 989 | /* Slovenian initialisation for the jQuery UI date picker plugin. */ 990 | /* Written by Jaka Jancar (jaka@kubje.org). */ 991 | /* c = č, s = š z = ž C = Č S = Š Z = Ž */ 992 | $.datepicker.regional['sl'] = { 993 | closeText:'Zapri', 994 | prevText:'<Prejšnji', 995 | nextText:'Naslednji>', 996 | currentText:'Trenutni', 997 | monthNames:['Januar', 'Februar', 'Marec', 'April', 'Maj', 'Junij', 998 | 'Julij', 'Avgust', 'September', 'Oktober', 'November', 'December'], 999 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 1000 | 'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'], 1001 | dayNames:['Nedelja', 'Ponedeljek', 'Torek', 'Sreda', 'Četrtek', 'Petek', 'Sobota'], 1002 | dayNamesShort:['Ned', 'Pon', 'Tor', 'Sre', 'Čet', 'Pet', 'Sob'], 1003 | dayNamesMin:['Ne', 'Po', 'To', 'Sr', 'Če', 'Pe', 'So'], 1004 | weekHeader:'Teden', 1005 | dateFormat:'dd.mm.yy', 1006 | firstDay:1, 1007 | isRTL:false, 1008 | showMonthAfterYear:false, 1009 | yearSuffix:''}; 1010 | 1011 | /* Albanian initialisation for the jQuery UI date picker plugin. */ 1012 | /* Written by Flakron Bytyqi (flakron@gmail.com). */ 1013 | $.datepicker.regional['sq'] = { 1014 | closeText:'mbylle', 1015 | prevText:'<mbrapa', 1016 | nextText:'Përpara>', 1017 | currentText:'sot', 1018 | monthNames:['Janar', 'Shkurt', 'Mars', 'Prill', 'Maj', 'Qershor', 1019 | 'Korrik', 'Gusht', 'Shtator', 'Tetor', 'Nëntor', 'Dhjetor'], 1020 | monthNamesShort:['Jan', 'Shk', 'Mar', 'Pri', 'Maj', 'Qer', 1021 | 'Kor', 'Gus', 'Sht', 'Tet', 'Nën', 'Dhj'], 1022 | dayNames:['E Diel', 'E Hënë', 'E Martë', 'E Mërkurë', 'E Enjte', 'E Premte', 'E Shtune'], 1023 | dayNamesShort:['Di', 'Hë', 'Ma', 'Më', 'En', 'Pr', 'Sh'], 1024 | dayNamesMin:['Di', 'Hë', 'Ma', 'Më', 'En', 'Pr', 'Sh'], 1025 | weekHeader:'Ja', 1026 | dateFormat:'dd.mm.yy', 1027 | firstDay:1, 1028 | isRTL:false, 1029 | showMonthAfterYear:false, 1030 | yearSuffix:''}; 1031 | 1032 | /* Serbian i18n for the jQuery UI date picker plugin. */ 1033 | /* Written by Dejan Dimić. */ 1034 | $.datepicker.regional['sr-SR'] = { 1035 | closeText:'Zatvori', 1036 | prevText:'<', 1037 | nextText:'>', 1038 | currentText:'Danas', 1039 | monthNames:['Januar', 'Februar', 'Mart', 'April', 'Maj', 'Jun', 1040 | 'Jul', 'Avgust', 'Septembar', 'Oktobar', 'Novembar', 'Decembar'], 1041 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 1042 | 'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'], 1043 | dayNames:['Nedelja', 'Ponedeljak', 'Utorak', 'Sreda', 'Četvrtak', 'Petak', 'Subota'], 1044 | dayNamesShort:['Ned', 'Pon', 'Uto', 'Sre', 'Čet', 'Pet', 'Sub'], 1045 | dayNamesMin:['Ne', 'Po', 'Ut', 'Sr', 'Če', 'Pe', 'Su'], 1046 | weekHeader:'Sed', 1047 | dateFormat:'dd/mm/yy', 1048 | firstDay:1, 1049 | isRTL:false, 1050 | showMonthAfterYear:false, 1051 | yearSuffix:''}; 1052 | 1053 | /* Serbian i18n for the jQuery UI date picker plugin. */ 1054 | /* Written by Dejan Dimić. */ 1055 | $.datepicker.regional['sr'] = { 1056 | closeText:'Затвори', 1057 | prevText:'<', 1058 | nextText:'>', 1059 | currentText:'Данас', 1060 | monthNames:['Јануар', 'Фебруар', 'Март', 'Април', 'Мај', 'Јун', 1061 | 'Јул', 'Август', 'Септембар', 'Октобар', 'Новембар', 'Децембар'], 1062 | monthNamesShort:['Јан', 'Феб', 'Мар', 'Апр', 'Мај', 'Јун', 1063 | 'Јул', 'Авг', 'Сеп', 'Окт', 'Нов', 'Дец'], 1064 | dayNames:['Недеља', 'Понедељак', 'Уторак', 'Среда', 'Четвртак', 'Петак', 'Субота'], 1065 | dayNamesShort:['Нед', 'Пон', 'Уто', 'Сре', 'Чет', 'Пет', 'Суб'], 1066 | dayNamesMin:['Не', 'По', 'Ут', 'Ср', 'Че', 'Пе', 'Су'], 1067 | weekHeader:'Сед', 1068 | dateFormat:'dd/mm/yy', 1069 | firstDay:1, 1070 | isRTL:false, 1071 | showMonthAfterYear:false, 1072 | yearSuffix:''}; 1073 | 1074 | /* Swedish initialisation for the jQuery UI date picker plugin. */ 1075 | /* Written by Anders Ekdahl ( anders@nomadiz.se). */ 1076 | $.datepicker.regional['sv'] = { 1077 | closeText:'Stäng', 1078 | prevText:'«Förra', 1079 | nextText:'Nästa»', 1080 | currentText:'Idag', 1081 | monthNames:['Januari', 'Februari', 'Mars', 'April', 'Maj', 'Juni', 1082 | 'Juli', 'Augusti', 'September', 'Oktober', 'November', 'December'], 1083 | monthNamesShort:['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 1084 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'], 1085 | dayNamesShort:['Sön', 'Mån', 'Tis', 'Ons', 'Tor', 'Fre', 'Lör'], 1086 | dayNames:['Söndag', 'Måndag', 'Tisdag', 'Onsdag', 'Torsdag', 'Fredag', 'Lördag'], 1087 | dayNamesMin:['Sö', 'Må', 'Ti', 'On', 'To', 'Fr', 'Lö'], 1088 | weekHeader:'Ve', 1089 | dateFormat:'yy-mm-dd', 1090 | firstDay:1, 1091 | isRTL:false, 1092 | showMonthAfterYear:false, 1093 | yearSuffix:''}; 1094 | 1095 | /* Tamil (UTF-8) initialisation for the jQuery UI date picker plugin. */ 1096 | /* Written by S A Sureshkumar (saskumar@live.com). */ 1097 | $.datepicker.regional['ta'] = { 1098 | closeText:'மூடு', 1099 | prevText:'முன்னையது', 1100 | nextText:'அடுத்தது', 1101 | currentText:'இன்று', 1102 | monthNames:['தை', 'மாசி', 'பங்குனி', 'சித்திரை', 'வைகாசி', 'ஆனி', 1103 | 'ஆடி', 'ஆவணி', 'புரட்டாசி', 'ஐப்பசி', 'கார்த்திகை', 'மார்கழி'], 1104 | monthNamesShort:['தை', 'மாசி', 'பங்', 'சித்', 'வைகா', 'ஆனி', 1105 | 'ஆடி', 'ஆவ', 'புர', 'ஐப்', 'கார்', 'மார்'], 1106 | dayNames:['ஞாயிற்றுக்கிழமை', 'திங்கட்கிழமை', 'செவ்வாய்க்கிழமை', 'புதன்கிழமை', 'வியாழக்கிழமை', 'வெள்ளிக்கிழமை', 'சனிக்கிழமை'], 1107 | dayNamesShort:['ஞாயிறு', 'திங்கள்', 'செவ்வாய்', 'புதன்', 'வியாழன்', 'வெள்ளி', 'சனி'], 1108 | dayNamesMin:['ஞா', 'தி', 'செ', 'பு', 'வி', 'வெ', 'ச'], 1109 | weekHeader:'Не', 1110 | dateFormat:'dd/mm/yy', 1111 | firstDay:1, 1112 | isRTL:false, 1113 | showMonthAfterYear:false, 1114 | yearSuffix:''}; 1115 | 1116 | /* Thai initialisation for the jQuery UI date picker plugin. */ 1117 | /* Written by pipo (pipo@sixhead.com). */ 1118 | $.datepicker.regional['th'] = { 1119 | closeText:'ปิด', 1120 | prevText:'« ย้อน', 1121 | nextText:'ถัดไป »', 1122 | currentText:'วันนี้', 1123 | monthNames:['มกราคม', 'กุมภาพันธ์', 'มีนาคม', 'เมษายน', 'พฤษภาคม', 'มิถุนายน', 1124 | 'กรกฎาคม', 'สิงหาคม', 'กันยายน', 'ตุลาคม', 'พฤศจิกายน', 'ธันวาคม'], 1125 | monthNamesShort:['ม.ค.', 'ก.พ.', 'มี.ค.', 'เม.ย.', 'พ.ค.', 'มิ.ย.', 1126 | 'ก.ค.', 'ส.ค.', 'ก.ย.', 'ต.ค.', 'พ.ย.', 'ธ.ค.'], 1127 | dayNames:['อาทิตย์', 'จันทร์', 'อังคาร', 'พุธ', 'พฤหัสบดี', 'ศุกร์', 'เสาร์'], 1128 | dayNamesShort:['อา.', 'จ.', 'อ.', 'พ.', 'พฤ.', 'ศ.', 'ส.'], 1129 | dayNamesMin:['อา.', 'จ.', 'อ.', 'พ.', 'พฤ.', 'ศ.', 'ส.'], 1130 | weekHeader:'Wk', 1131 | dateFormat:'dd/mm/yy', 1132 | firstDay:0, 1133 | isRTL:false, 1134 | showMonthAfterYear:false, 1135 | yearSuffix:''}; 1136 | 1137 | /* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */ 1138 | /* Written by Abdurahmon Saidov (saidovab@gmail.com). */ 1139 | $.datepicker.regional['tj'] = { 1140 | closeText:'Идома', 1141 | prevText:'<Қафо', 1142 | nextText:'Пеш>', 1143 | currentText:'Имрӯз', 1144 | monthNames:['Январ', 'Феврал', 'Март', 'Апрел', 'Май', 'Июн', 1145 | 'Июл', 'Август', 'Сентябр', 'Октябр', 'Ноябр', 'Декабр'], 1146 | monthNamesShort:['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 1147 | 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'], 1148 | dayNames:['якшанбе', 'душанбе', 'сешанбе', 'чоршанбе', 'панҷшанбе', 'ҷумъа', 'шанбе'], 1149 | dayNamesShort:['якш', 'душ', 'сеш', 'чор', 'пан', 'ҷум', 'шан'], 1150 | dayNamesMin:['Як', 'Дш', 'Сш', 'Чш', 'Пш', 'Ҷм', 'Шн'], 1151 | weekHeader:'Хф', 1152 | dateFormat:'dd.mm.yy', 1153 | firstDay:1, 1154 | isRTL:false, 1155 | showMonthAfterYear:false, 1156 | yearSuffix:''}; 1157 | 1158 | /* Turkish initialisation for the jQuery UI date picker plugin. */ 1159 | /* Written by Izzet Emre Erkan (kara@karalamalar.net). */ 1160 | $.datepicker.regional['tr'] = { 1161 | closeText:'kapat', 1162 | prevText:'<geri', 1163 | nextText:'ileri>', 1164 | currentText:'bugün', 1165 | monthNames:['Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 1166 | 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık'], 1167 | monthNamesShort:['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 1168 | 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'], 1169 | dayNames:['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'], 1170 | dayNamesShort:['Pz', 'Pt', 'Sa', 'Ça', 'Pe', 'Cu', 'Ct'], 1171 | dayNamesMin:['Pz', 'Pt', 'Sa', 'Ça', 'Pe', 'Cu', 'Ct'], 1172 | weekHeader:'Hf', 1173 | dateFormat:'dd.mm.yy', 1174 | firstDay:1, 1175 | isRTL:false, 1176 | showMonthAfterYear:false, 1177 | yearSuffix:''}; 1178 | 1179 | /* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 1180 | /* Written by Maxim Drogobitskiy (maxdao@gmail.com). */ 1181 | $.datepicker.regional['uk'] = { 1182 | closeText:'Закрити', 1183 | prevText:'<', 1184 | nextText:'>', 1185 | currentText:'Сьогодні', 1186 | monthNames:['Січень', 'Лютий', 'Березень', 'Квітень', 'Травень', 'Червень', 1187 | 'Липень', 'Серпень', 'Вересень', 'Жовтень', 'Листопад', 'Грудень'], 1188 | monthNamesShort:['Січ', 'Лют', 'Бер', 'Кві', 'Тра', 'Чер', 1189 | 'Лип', 'Сер', 'Вер', 'Жов', 'Лис', 'Гру'], 1190 | dayNames:['неділя', 'понеділок', 'вівторок', 'середа', 'четвер', 'п’ятниця', 'субота'], 1191 | dayNamesShort:['нед', 'пнд', 'вів', 'срд', 'чтв', 'птн', 'сбт'], 1192 | dayNamesMin:['Нд', 'Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб'], 1193 | weekHeader:'Не', 1194 | dateFormat:'dd/mm/yy', 1195 | firstDay:1, 1196 | isRTL:false, 1197 | showMonthAfterYear:false, 1198 | yearSuffix:''}; 1199 | 1200 | /* Vietnamese initialisation for the jQuery UI date picker plugin. */ 1201 | /* Translated by Le Thanh Huy (lthanhhuy@cit.ctu.edu.vn). */ 1202 | $.datepicker.regional['vi'] = { 1203 | closeText:'Đóng', 1204 | prevText:'<Trước', 1205 | nextText:'Tiếp>', 1206 | currentText:'Hôm nay', 1207 | monthNames:['Tháng Một', 'Tháng Hai', 'Tháng Ba', 'Tháng Tư', 'Tháng Năm', 'Tháng Sáu', 1208 | 'Tháng Bảy', 'Tháng Tám', 'Tháng Chín', 'Tháng Mười', 'Tháng Mười Một', 'Tháng Mười Hai'], 1209 | monthNamesShort:['Tháng 1', 'Tháng 2', 'Tháng 3', 'Tháng 4', 'Tháng 5', 'Tháng 6', 1210 | 'Tháng 7', 'Tháng 8', 'Tháng 9', 'Tháng 10', 'Tháng 11', 'Tháng 12'], 1211 | dayNames:['Chủ Nhật', 'Thứ Hai', 'Thứ Ba', 'Thứ Tư', 'Thứ Năm', 'Thứ Sáu', 'Thứ Bảy'], 1212 | dayNamesShort:['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], 1213 | dayNamesMin:['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], 1214 | weekHeader:'Tu', 1215 | dateFormat:'dd/mm/yy', 1216 | firstDay:0, 1217 | isRTL:false, 1218 | showMonthAfterYear:false, 1219 | yearSuffix:''}; 1220 | 1221 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 1222 | /* Written by Cloudream (cloudream@gmail.com). */ 1223 | $.datepicker.regional['zh-CN'] = { 1224 | closeText:'关闭', 1225 | prevText:'<上月', 1226 | nextText:'下月>', 1227 | currentText:'今天', 1228 | monthNames:['一月', '二月', '三月', '四月', '五月', '六月', 1229 | '七月', '八月', '九月', '十月', '十一月', '十二月'], 1230 | monthNamesShort:['一', '二', '三', '四', '五', '六', 1231 | '七', '八', '九', '十', '十一', '十二'], 1232 | dayNames:['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 1233 | dayNamesShort:['周日', '周一', '周二', '周三', '周四', '周五', '周六'], 1234 | dayNamesMin:['日', '一', '二', '三', '四', '五', '六'], 1235 | weekHeader:'周', 1236 | dateFormat:'yy-mm-dd', 1237 | firstDay:1, 1238 | isRTL:false, 1239 | showMonthAfterYear:true, 1240 | yearSuffix:'年'}; 1241 | 1242 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 1243 | /* Written by SCCY (samuelcychan@gmail.com). */ 1244 | $.datepicker.regional['zh-HK'] = { 1245 | closeText:'關閉', 1246 | prevText:'<上月', 1247 | nextText:'下月>', 1248 | currentText:'今天', 1249 | monthNames:['一月', '二月', '三月', '四月', '五月', '六月', 1250 | '七月', '八月', '九月', '十月', '十一月', '十二月'], 1251 | monthNamesShort:['一', '二', '三', '四', '五', '六', 1252 | '七', '八', '九', '十', '十一', '十二'], 1253 | dayNames:['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 1254 | dayNamesShort:['周日', '周一', '周二', '周三', '周四', '周五', '周六'], 1255 | dayNamesMin:['日', '一', '二', '三', '四', '五', '六'], 1256 | weekHeader:'周', 1257 | dateFormat:'dd-mm-yy', 1258 | firstDay:0, 1259 | isRTL:false, 1260 | showMonthAfterYear:true, 1261 | yearSuffix:'年'}; 1262 | 1263 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 1264 | /* Written by Ressol (ressol@gmail.com). */ 1265 | $.datepicker.regional['zh-TW'] = { 1266 | closeText:'關閉', 1267 | prevText:'<上月', 1268 | nextText:'下月>', 1269 | currentText:'今天', 1270 | monthNames:['一月', '二月', '三月', '四月', '五月', '六月', 1271 | '七月', '八月', '九月', '十月', '十一月', '十二月'], 1272 | monthNamesShort:['一', '二', '三', '四', '五', '六', 1273 | '七', '八', '九', '十', '十一', '十二'], 1274 | dayNames:['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'], 1275 | dayNamesShort:['周日', '周一', '周二', '周三', '周四', '周五', '周六'], 1276 | dayNamesMin:['日', '一', '二', '三', '四', '五', '六'], 1277 | weekHeader:'周', 1278 | dateFormat:'yy/mm/dd', 1279 | firstDay:1, 1280 | isRTL:false, 1281 | showMonthAfterYear:true, 1282 | yearSuffix:'年'}; 1283 | 1284 | $.datepicker.setDefaults($.datepicker.regional['en-GB']); 1285 | }); 1286 | -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Accordion 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Autocomplete 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | 15 | /* 16 | * jQuery UI Menu 1.8.16 17 | * 18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 19 | * Dual licensed under the MIT or GPL Version 2 licenses. 20 | * http://jquery.org/license 21 | * 22 | * http://docs.jquery.com/UI/Menu#theming 23 | */ 24 | .ui-menu { 25 | list-style:none; 26 | padding: 2px; 27 | margin: 0; 28 | display:block; 29 | float: left; 30 | } 31 | .ui-menu .ui-menu { 32 | margin-top: -3px; 33 | } 34 | .ui-menu .ui-menu-item { 35 | margin:0; 36 | padding: 0; 37 | zoom: 1; 38 | float: left; 39 | clear: left; 40 | width: 100%; 41 | } 42 | .ui-menu .ui-menu-item a { 43 | text-decoration:none; 44 | display:block; 45 | padding:.2em .4em; 46 | line-height:1.5; 47 | zoom:1; 48 | } 49 | .ui-menu .ui-menu-item a.ui-state-hover, 50 | .ui-menu .ui-menu-item a.ui-state-active { 51 | font-weight: normal; 52 | margin: -1px; 53 | } 54 | -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Button 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Button#theming 9 | */ 10 | .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */ 11 | .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ 12 | button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ 13 | .ui-button-icons-only { width: 3.4em; } 14 | button.ui-button-icons-only { width: 3.7em; } 15 | 16 | /*button text element */ 17 | .ui-button .ui-button-text { display: block; line-height: 1.4; } 18 | .ui-button-text-only .ui-button-text { padding: .4em 1em; } 19 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } 20 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } 21 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } 22 | .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } 23 | /* no icon support for input elements, provide padding by default */ 24 | input.ui-button { padding: .4em 1em; } 25 | 26 | /*button icon element(s) */ 27 | .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; } 28 | .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } 29 | .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; } 30 | .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; } 31 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } 32 | 33 | /*button sets*/ 34 | .ui-buttonset { margin-right: 7px; } 35 | .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } 36 | 37 | /* workarounds */ 38 | button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ 39 | -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } 17 | .ui-helper-clearfix { display: inline-block; } 18 | /* required comment for clearfix to work in Opera \*/ 19 | * html .ui-helper-clearfix { height:1%; } 20 | .ui-helper-clearfix { display:block; } 21 | /* end clearfix */ 22 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 23 | 24 | 25 | /* Interaction Cues 26 | ----------------------------------*/ 27 | .ui-state-disabled { cursor: default !important; } 28 | 29 | 30 | /* Icons 31 | ----------------------------------*/ 32 | 33 | /* states and images */ 34 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 35 | 36 | 37 | /* Misc visuals 38 | ----------------------------------*/ 39 | 40 | /* Overlays */ 41 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 42 | -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Datepicker 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Datepicker#theming 9 | */ 10 | .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } 11 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } 12 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } 13 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } 14 | .ui-datepicker .ui-datepicker-prev { left:2px; } 15 | .ui-datepicker .ui-datepicker-next { right:2px; } 16 | .ui-datepicker .ui-datepicker-prev-hover { left:1px; } 17 | .ui-datepicker .ui-datepicker-next-hover { right:1px; } 18 | .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; } 19 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } 20 | .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } 21 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;} 22 | .ui-datepicker select.ui-datepicker-month, 23 | .ui-datepicker select.ui-datepicker-year { width: 49%;} 24 | .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } 25 | .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } 26 | .ui-datepicker td { border: 0; padding: 1px; } 27 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } 28 | .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; } 29 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } 30 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } 31 | 32 | /* with multiple calendars */ 33 | .ui-datepicker.ui-datepicker-multi { width:auto; } 34 | .ui-datepicker-multi .ui-datepicker-group { float:left; } 35 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } 36 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } 37 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } 38 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } 39 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } 40 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } 41 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } 42 | .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; } 43 | 44 | /* RTL support */ 45 | .ui-datepicker-rtl { direction: rtl; } 46 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } 47 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } 48 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } 49 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } 50 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } 51 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } 52 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } 53 | .ui-datepicker-rtl .ui-datepicker-group { float:right; } 54 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } 55 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } 56 | 57 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ 58 | .ui-datepicker-cover { 59 | display: none; /*sorry for IE5*/ 60 | display/**/: block; /*sorry for IE5*/ 61 | position: absolute; /*must have*/ 62 | z-index: -1; /*must have*/ 63 | filter: mask(); /*must have*/ 64 | top: -4px; /*must have*/ 65 | left: -4px; /*must have*/ 66 | width: 200px; /*must have*/ 67 | height: 200px; /*must have*/ 68 | } -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Dialog 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .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; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Resizable 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Slider 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Tabs 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Tabs#theming 9 | */ 10 | .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") */ 11 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 12 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } 13 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 14 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 15 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } 16 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 17 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 18 | .ui-tabs .ui-tabs-hide { display: none !important; } 19 | -------------------------------------------------------------------------------- /Resources/public/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | * 10 | * To view and modify this theme, visit http://jqueryui.com/themeroller/ 11 | */ 12 | 13 | 14 | /* Component containers 15 | ----------------------------------*/ 16 | .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } 17 | .ui-widget .ui-widget { font-size: 1em; } 18 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } 19 | .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}*/; } 20 | .ui-widget-content a { color: #222222/*{fcContent}*/; } 21 | .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; } 22 | .ui-widget-header a { color: #222222/*{fcHeader}*/; } 23 | 24 | /* Interaction states 25 | ----------------------------------*/ 26 | .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}*/; } 27 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; } 28 | .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}*/; } 29 | .ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; } 30 | .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}*/; } 31 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; } 32 | .ui-widget :active { outline: none; } 33 | 34 | /* Interaction Cues 35 | ----------------------------------*/ 36 | .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}*/; } 37 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } 38 | .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}*/; } 39 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; } 40 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } 41 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } 42 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } 43 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } 44 | 45 | /* Icons 46 | ----------------------------------*/ 47 | 48 | /* states and images */ 49 | .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } 50 | .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } 51 | .ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; } 52 | .ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; } 53 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; } 54 | .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; } 55 | .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; } 56 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; } 57 | 58 | /* positioning */ 59 | .ui-icon-carat-1-n { background-position: 0 0; } 60 | .ui-icon-carat-1-ne { background-position: -16px 0; } 61 | .ui-icon-carat-1-e { background-position: -32px 0; } 62 | .ui-icon-carat-1-se { background-position: -48px 0; } 63 | .ui-icon-carat-1-s { background-position: -64px 0; } 64 | .ui-icon-carat-1-sw { background-position: -80px 0; } 65 | .ui-icon-carat-1-w { background-position: -96px 0; } 66 | .ui-icon-carat-1-nw { background-position: -112px 0; } 67 | .ui-icon-carat-2-n-s { background-position: -128px 0; } 68 | .ui-icon-carat-2-e-w { background-position: -144px 0; } 69 | .ui-icon-triangle-1-n { background-position: 0 -16px; } 70 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } 71 | .ui-icon-triangle-1-e { background-position: -32px -16px; } 72 | .ui-icon-triangle-1-se { background-position: -48px -16px; } 73 | .ui-icon-triangle-1-s { background-position: -64px -16px; } 74 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } 75 | .ui-icon-triangle-1-w { background-position: -96px -16px; } 76 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } 77 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } 78 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } 79 | .ui-icon-arrow-1-n { background-position: 0 -32px; } 80 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } 81 | .ui-icon-arrow-1-e { background-position: -32px -32px; } 82 | .ui-icon-arrow-1-se { background-position: -48px -32px; } 83 | .ui-icon-arrow-1-s { background-position: -64px -32px; } 84 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } 85 | .ui-icon-arrow-1-w { background-position: -96px -32px; } 86 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } 87 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } 88 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } 89 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } 90 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } 91 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } 92 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } 93 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } 94 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } 95 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } 96 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } 97 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } 98 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } 99 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } 100 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } 101 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } 102 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } 103 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } 104 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } 105 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } 106 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } 107 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } 108 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } 109 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } 110 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } 111 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } 112 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } 113 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } 114 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } 115 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } 116 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } 117 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } 118 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } 119 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } 120 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } 121 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } 122 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } 123 | .ui-icon-arrow-4 { background-position: 0 -80px; } 124 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } 125 | .ui-icon-extlink { background-position: -32px -80px; } 126 | .ui-icon-newwin { background-position: -48px -80px; } 127 | .ui-icon-refresh { background-position: -64px -80px; } 128 | .ui-icon-shuffle { background-position: -80px -80px; } 129 | .ui-icon-transfer-e-w { background-position: -96px -80px; } 130 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } 131 | .ui-icon-folder-collapsed { background-position: 0 -96px; } 132 | .ui-icon-folder-open { background-position: -16px -96px; } 133 | .ui-icon-document { background-position: -32px -96px; } 134 | .ui-icon-document-b { background-position: -48px -96px; } 135 | .ui-icon-note { background-position: -64px -96px; } 136 | .ui-icon-mail-closed { background-position: -80px -96px; } 137 | .ui-icon-mail-open { background-position: -96px -96px; } 138 | .ui-icon-suitcase { background-position: -112px -96px; } 139 | .ui-icon-comment { background-position: -128px -96px; } 140 | .ui-icon-person { background-position: -144px -96px; } 141 | .ui-icon-print { background-position: -160px -96px; } 142 | .ui-icon-trash { background-position: -176px -96px; } 143 | .ui-icon-locked { background-position: -192px -96px; } 144 | .ui-icon-unlocked { background-position: -208px -96px; } 145 | .ui-icon-bookmark { background-position: -224px -96px; } 146 | .ui-icon-tag { background-position: -240px -96px; } 147 | .ui-icon-home { background-position: 0 -112px; } 148 | .ui-icon-flag { background-position: -16px -112px; } 149 | .ui-icon-calendar { background-position: -32px -112px; } 150 | .ui-icon-cart { background-position: -48px -112px; } 151 | .ui-icon-pencil { background-position: -64px -112px; } 152 | .ui-icon-clock { background-position: -80px -112px; } 153 | .ui-icon-disk { background-position: -96px -112px; } 154 | .ui-icon-calculator { background-position: -112px -112px; } 155 | .ui-icon-zoomin { background-position: -128px -112px; } 156 | .ui-icon-zoomout { background-position: -144px -112px; } 157 | .ui-icon-search { background-position: -160px -112px; } 158 | .ui-icon-wrench { background-position: -176px -112px; } 159 | .ui-icon-gear { background-position: -192px -112px; } 160 | .ui-icon-heart { background-position: -208px -112px; } 161 | .ui-icon-star { background-position: -224px -112px; } 162 | .ui-icon-link { background-position: -240px -112px; } 163 | .ui-icon-cancel { background-position: 0 -128px; } 164 | .ui-icon-plus { background-position: -16px -128px; } 165 | .ui-icon-plusthick { background-position: -32px -128px; } 166 | .ui-icon-minus { background-position: -48px -128px; } 167 | .ui-icon-minusthick { background-position: -64px -128px; } 168 | .ui-icon-close { background-position: -80px -128px; } 169 | .ui-icon-closethick { background-position: -96px -128px; } 170 | .ui-icon-key { background-position: -112px -128px; } 171 | .ui-icon-lightbulb { background-position: -128px -128px; } 172 | .ui-icon-scissors { background-position: -144px -128px; } 173 | .ui-icon-clipboard { background-position: -160px -128px; } 174 | .ui-icon-copy { background-position: -176px -128px; } 175 | .ui-icon-contact { background-position: -192px -128px; } 176 | .ui-icon-image { background-position: -208px -128px; } 177 | .ui-icon-video { background-position: -224px -128px; } 178 | .ui-icon-script { background-position: -240px -128px; } 179 | .ui-icon-alert { background-position: 0 -144px; } 180 | .ui-icon-info { background-position: -16px -144px; } 181 | .ui-icon-notice { background-position: -32px -144px; } 182 | .ui-icon-help { background-position: -48px -144px; } 183 | .ui-icon-check { background-position: -64px -144px; } 184 | .ui-icon-bullet { background-position: -80px -144px; } 185 | .ui-icon-radio-off { background-position: -96px -144px; } 186 | .ui-icon-radio-on { background-position: -112px -144px; } 187 | .ui-icon-pin-w { background-position: -128px -144px; } 188 | .ui-icon-pin-s { background-position: -144px -144px; } 189 | .ui-icon-play { background-position: 0 -160px; } 190 | .ui-icon-pause { background-position: -16px -160px; } 191 | .ui-icon-seek-next { background-position: -32px -160px; } 192 | .ui-icon-seek-prev { background-position: -48px -160px; } 193 | .ui-icon-seek-end { background-position: -64px -160px; } 194 | .ui-icon-seek-start { background-position: -80px -160px; } 195 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ 196 | .ui-icon-seek-first { background-position: -80px -160px; } 197 | .ui-icon-stop { background-position: -96px -160px; } 198 | .ui-icon-eject { background-position: -112px -160px; } 199 | .ui-icon-volume-off { background-position: -128px -160px; } 200 | .ui-icon-volume-on { background-position: -144px -160px; } 201 | .ui-icon-power { background-position: 0 -176px; } 202 | .ui-icon-signal-diag { background-position: -16px -176px; } 203 | .ui-icon-signal { background-position: -32px -176px; } 204 | .ui-icon-battery-0 { background-position: -48px -176px; } 205 | .ui-icon-battery-1 { background-position: -64px -176px; } 206 | .ui-icon-battery-2 { background-position: -80px -176px; } 207 | .ui-icon-battery-3 { background-position: -96px -176px; } 208 | .ui-icon-circle-plus { background-position: 0 -192px; } 209 | .ui-icon-circle-minus { background-position: -16px -192px; } 210 | .ui-icon-circle-close { background-position: -32px -192px; } 211 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } 212 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } 213 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } 214 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } 215 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } 216 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } 217 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } 218 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } 219 | .ui-icon-circle-zoomin { background-position: -176px -192px; } 220 | .ui-icon-circle-zoomout { background-position: -192px -192px; } 221 | .ui-icon-circle-check { background-position: -208px -192px; } 222 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } 223 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } 224 | .ui-icon-circlesmall-close { background-position: -32px -208px; } 225 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } 226 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } 227 | .ui-icon-squaresmall-close { background-position: -80px -208px; } 228 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } 229 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } 230 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } 231 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } 232 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } 233 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } 234 | 235 | 236 | /* Misc visuals 237 | ----------------------------------*/ 238 | 239 | /* Corner radius */ 240 | .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}*/; } 241 | .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}*/; } 242 | .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}*/; } 243 | .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}*/; } 244 | 245 | /* Overlays */ 246 | .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}*/; } 247 | .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}*/; } -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-icons_0073ea_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-icons_0073ea_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-icons_ff0084_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-icons_ff0084_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonatajQueryBundle/8db2fbc85e57f193d22ed67f0223c8a717eeaad5/Resources/public/themes/flick/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery-ui-1.8.16.custom.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } 17 | .ui-helper-clearfix { display: inline-block; } 18 | /* required comment for clearfix to work in Opera \*/ 19 | * html .ui-helper-clearfix { height:1%; } 20 | .ui-helper-clearfix { display:block; } 21 | /* end clearfix */ 22 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 23 | 24 | 25 | /* Interaction Cues 26 | ----------------------------------*/ 27 | .ui-state-disabled { cursor: default !important; } 28 | 29 | 30 | /* Icons 31 | ----------------------------------*/ 32 | 33 | /* states and images */ 34 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 35 | 36 | 37 | /* Misc visuals 38 | ----------------------------------*/ 39 | 40 | /* Overlays */ 41 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 42 | 43 | 44 | /* 45 | * jQuery UI CSS Framework 1.8.16 46 | * 47 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 48 | * Dual licensed under the MIT or GPL Version 2 licenses. 49 | * http://jquery.org/license 50 | * 51 | * http://docs.jquery.com/UI/Theming/API 52 | * 53 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=2px&bgColorHeader=dddddd&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=50&borderColorHeader=dddddd&fcHeader=444444&iconColorHeader=0073ea&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=dddddd&fcContent=444444&iconColorContent=ff0084&bgColorDefault=f6f6f6&bgTextureDefault=03_highlight_soft.png&bgImgOpacityDefault=100&borderColorDefault=dddddd&fcDefault=0073ea&iconColorDefault=666666&bgColorHover=0073ea&bgTextureHover=03_highlight_soft.png&bgImgOpacityHover=25&borderColorHover=0073ea&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=dddddd&fcActive=ff0084&iconColorActive=454545&bgColorHighlight=ffffff&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=55&borderColorHighlight=cccccc&fcHighlight=444444&iconColorHighlight=0073ea&bgColorError=ffffff&bgTextureError=01_flat.png&bgImgOpacityError=55&borderColorError=ff0084&fcError=222222&iconColorError=ff0084&bgColorOverlay=eeeeee&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px 54 | */ 55 | 56 | 57 | /* Component containers 58 | ----------------------------------*/ 59 | .ui-widget { font-family: Helvetica, Arial, sans-serif; font-size: 1.1em; } 60 | .ui-widget .ui-widget { font-size: 1em; } 61 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Helvetica, Arial, sans-serif; font-size: 1em; } 62 | .ui-widget-content { border: 1px solid #dddddd; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #444444; } 63 | .ui-widget-content a { color: #444444; } 64 | .ui-widget-header { border: 1px solid #dddddd; background: #dddddd url(images/ui-bg_highlight-soft_50_dddddd_1x100.png) 50% 50% repeat-x; color: #444444; font-weight: bold; } 65 | .ui-widget-header a { color: #444444; } 66 | 67 | /* Interaction states 68 | ----------------------------------*/ 69 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #dddddd; background: #f6f6f6 url(images/ui-bg_highlight-soft_100_f6f6f6_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #0073ea; } 70 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #0073ea; text-decoration: none; } 71 | .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 #0073ea; background: #0073ea url(images/ui-bg_highlight-soft_25_0073ea_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #ffffff; } 72 | .ui-state-hover a, .ui-state-hover a:hover { color: #ffffff; text-decoration: none; } 73 | .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #dddddd; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #ff0084; } 74 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #ff0084; text-decoration: none; } 75 | .ui-widget :active { outline: none; } 76 | 77 | /* Interaction Cues 78 | ----------------------------------*/ 79 | .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #cccccc; background: #ffffff url(images/ui-bg_flat_55_ffffff_40x100.png) 50% 50% repeat-x; color: #444444; } 80 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #444444; } 81 | .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #ff0084; background: #ffffff url(images/ui-bg_flat_55_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } 82 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #222222; } 83 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #222222; } 84 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } 85 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } 86 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } 87 | 88 | /* Icons 89 | ----------------------------------*/ 90 | 91 | /* states and images */ 92 | .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_ff0084_256x240.png); } 93 | .ui-widget-content .ui-icon {background-image: url(images/ui-icons_ff0084_256x240.png); } 94 | .ui-widget-header .ui-icon {background-image: url(images/ui-icons_0073ea_256x240.png); } 95 | .ui-state-default .ui-icon { background-image: url(images/ui-icons_666666_256x240.png); } 96 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); } 97 | .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); } 98 | .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_0073ea_256x240.png); } 99 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ff0084_256x240.png); } 100 | 101 | /* positioning */ 102 | .ui-icon-carat-1-n { background-position: 0 0; } 103 | .ui-icon-carat-1-ne { background-position: -16px 0; } 104 | .ui-icon-carat-1-e { background-position: -32px 0; } 105 | .ui-icon-carat-1-se { background-position: -48px 0; } 106 | .ui-icon-carat-1-s { background-position: -64px 0; } 107 | .ui-icon-carat-1-sw { background-position: -80px 0; } 108 | .ui-icon-carat-1-w { background-position: -96px 0; } 109 | .ui-icon-carat-1-nw { background-position: -112px 0; } 110 | .ui-icon-carat-2-n-s { background-position: -128px 0; } 111 | .ui-icon-carat-2-e-w { background-position: -144px 0; } 112 | .ui-icon-triangle-1-n { background-position: 0 -16px; } 113 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } 114 | .ui-icon-triangle-1-e { background-position: -32px -16px; } 115 | .ui-icon-triangle-1-se { background-position: -48px -16px; } 116 | .ui-icon-triangle-1-s { background-position: -64px -16px; } 117 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } 118 | .ui-icon-triangle-1-w { background-position: -96px -16px; } 119 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } 120 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } 121 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } 122 | .ui-icon-arrow-1-n { background-position: 0 -32px; } 123 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } 124 | .ui-icon-arrow-1-e { background-position: -32px -32px; } 125 | .ui-icon-arrow-1-se { background-position: -48px -32px; } 126 | .ui-icon-arrow-1-s { background-position: -64px -32px; } 127 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } 128 | .ui-icon-arrow-1-w { background-position: -96px -32px; } 129 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } 130 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } 131 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } 132 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } 133 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } 134 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } 135 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } 136 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } 137 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } 138 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } 139 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } 140 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } 141 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } 142 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } 143 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } 144 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } 145 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } 146 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } 147 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } 148 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } 149 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } 150 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } 151 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } 152 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } 153 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } 154 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } 155 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } 156 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } 157 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } 158 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } 159 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } 160 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } 161 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } 162 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } 163 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } 164 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } 165 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } 166 | .ui-icon-arrow-4 { background-position: 0 -80px; } 167 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } 168 | .ui-icon-extlink { background-position: -32px -80px; } 169 | .ui-icon-newwin { background-position: -48px -80px; } 170 | .ui-icon-refresh { background-position: -64px -80px; } 171 | .ui-icon-shuffle { background-position: -80px -80px; } 172 | .ui-icon-transfer-e-w { background-position: -96px -80px; } 173 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } 174 | .ui-icon-folder-collapsed { background-position: 0 -96px; } 175 | .ui-icon-folder-open { background-position: -16px -96px; } 176 | .ui-icon-document { background-position: -32px -96px; } 177 | .ui-icon-document-b { background-position: -48px -96px; } 178 | .ui-icon-note { background-position: -64px -96px; } 179 | .ui-icon-mail-closed { background-position: -80px -96px; } 180 | .ui-icon-mail-open { background-position: -96px -96px; } 181 | .ui-icon-suitcase { background-position: -112px -96px; } 182 | .ui-icon-comment { background-position: -128px -96px; } 183 | .ui-icon-person { background-position: -144px -96px; } 184 | .ui-icon-print { background-position: -160px -96px; } 185 | .ui-icon-trash { background-position: -176px -96px; } 186 | .ui-icon-locked { background-position: -192px -96px; } 187 | .ui-icon-unlocked { background-position: -208px -96px; } 188 | .ui-icon-bookmark { background-position: -224px -96px; } 189 | .ui-icon-tag { background-position: -240px -96px; } 190 | .ui-icon-home { background-position: 0 -112px; } 191 | .ui-icon-flag { background-position: -16px -112px; } 192 | .ui-icon-calendar { background-position: -32px -112px; } 193 | .ui-icon-cart { background-position: -48px -112px; } 194 | .ui-icon-pencil { background-position: -64px -112px; } 195 | .ui-icon-clock { background-position: -80px -112px; } 196 | .ui-icon-disk { background-position: -96px -112px; } 197 | .ui-icon-calculator { background-position: -112px -112px; } 198 | .ui-icon-zoomin { background-position: -128px -112px; } 199 | .ui-icon-zoomout { background-position: -144px -112px; } 200 | .ui-icon-search { background-position: -160px -112px; } 201 | .ui-icon-wrench { background-position: -176px -112px; } 202 | .ui-icon-gear { background-position: -192px -112px; } 203 | .ui-icon-heart { background-position: -208px -112px; } 204 | .ui-icon-star { background-position: -224px -112px; } 205 | .ui-icon-link { background-position: -240px -112px; } 206 | .ui-icon-cancel { background-position: 0 -128px; } 207 | .ui-icon-plus { background-position: -16px -128px; } 208 | .ui-icon-plusthick { background-position: -32px -128px; } 209 | .ui-icon-minus { background-position: -48px -128px; } 210 | .ui-icon-minusthick { background-position: -64px -128px; } 211 | .ui-icon-close { background-position: -80px -128px; } 212 | .ui-icon-closethick { background-position: -96px -128px; } 213 | .ui-icon-key { background-position: -112px -128px; } 214 | .ui-icon-lightbulb { background-position: -128px -128px; } 215 | .ui-icon-scissors { background-position: -144px -128px; } 216 | .ui-icon-clipboard { background-position: -160px -128px; } 217 | .ui-icon-copy { background-position: -176px -128px; } 218 | .ui-icon-contact { background-position: -192px -128px; } 219 | .ui-icon-image { background-position: -208px -128px; } 220 | .ui-icon-video { background-position: -224px -128px; } 221 | .ui-icon-script { background-position: -240px -128px; } 222 | .ui-icon-alert { background-position: 0 -144px; } 223 | .ui-icon-info { background-position: -16px -144px; } 224 | .ui-icon-notice { background-position: -32px -144px; } 225 | .ui-icon-help { background-position: -48px -144px; } 226 | .ui-icon-check { background-position: -64px -144px; } 227 | .ui-icon-bullet { background-position: -80px -144px; } 228 | .ui-icon-radio-off { background-position: -96px -144px; } 229 | .ui-icon-radio-on { background-position: -112px -144px; } 230 | .ui-icon-pin-w { background-position: -128px -144px; } 231 | .ui-icon-pin-s { background-position: -144px -144px; } 232 | .ui-icon-play { background-position: 0 -160px; } 233 | .ui-icon-pause { background-position: -16px -160px; } 234 | .ui-icon-seek-next { background-position: -32px -160px; } 235 | .ui-icon-seek-prev { background-position: -48px -160px; } 236 | .ui-icon-seek-end { background-position: -64px -160px; } 237 | .ui-icon-seek-start { background-position: -80px -160px; } 238 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ 239 | .ui-icon-seek-first { background-position: -80px -160px; } 240 | .ui-icon-stop { background-position: -96px -160px; } 241 | .ui-icon-eject { background-position: -112px -160px; } 242 | .ui-icon-volume-off { background-position: -128px -160px; } 243 | .ui-icon-volume-on { background-position: -144px -160px; } 244 | .ui-icon-power { background-position: 0 -176px; } 245 | .ui-icon-signal-diag { background-position: -16px -176px; } 246 | .ui-icon-signal { background-position: -32px -176px; } 247 | .ui-icon-battery-0 { background-position: -48px -176px; } 248 | .ui-icon-battery-1 { background-position: -64px -176px; } 249 | .ui-icon-battery-2 { background-position: -80px -176px; } 250 | .ui-icon-battery-3 { background-position: -96px -176px; } 251 | .ui-icon-circle-plus { background-position: 0 -192px; } 252 | .ui-icon-circle-minus { background-position: -16px -192px; } 253 | .ui-icon-circle-close { background-position: -32px -192px; } 254 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } 255 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } 256 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } 257 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } 258 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } 259 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } 260 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } 261 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } 262 | .ui-icon-circle-zoomin { background-position: -176px -192px; } 263 | .ui-icon-circle-zoomout { background-position: -192px -192px; } 264 | .ui-icon-circle-check { background-position: -208px -192px; } 265 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } 266 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } 267 | .ui-icon-circlesmall-close { background-position: -32px -208px; } 268 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } 269 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } 270 | .ui-icon-squaresmall-close { background-position: -80px -208px; } 271 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } 272 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } 273 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } 274 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } 275 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } 276 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } 277 | 278 | 279 | /* Misc visuals 280 | ----------------------------------*/ 281 | 282 | /* Corner radius */ 283 | .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 2px; -webkit-border-top-left-radius: 2px; -khtml-border-top-left-radius: 2px; border-top-left-radius: 2px; } 284 | .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; -khtml-border-top-right-radius: 2px; border-top-right-radius: 2px; } 285 | .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; -khtml-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; } 286 | .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; -khtml-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; } 287 | 288 | /* Overlays */ 289 | .ui-widget-overlay { background: #eeeeee url(images/ui-bg_flat_0_eeeeee_40x100.png) 50% 50% repeat-x; opacity: .80;filter:Alpha(Opacity=80); } 290 | .ui-widget-shadow { margin: -4px 0 0 -4px; padding: 4px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .60;filter:Alpha(Opacity=60); -moz-border-radius: 0px; -khtml-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; }/* 291 | * jQuery UI Resizable 1.8.16 292 | * 293 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 294 | * Dual licensed under the MIT or GPL Version 2 licenses. 295 | * http://jquery.org/license 296 | * 297 | * http://docs.jquery.com/UI/Resizable#theming 298 | */ 299 | .ui-resizable { position: relative;} 300 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; } 301 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 302 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 303 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 304 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 305 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 306 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 307 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 308 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 309 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* 310 | * jQuery UI Selectable 1.8.16 311 | * 312 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 313 | * Dual licensed under the MIT or GPL Version 2 licenses. 314 | * http://jquery.org/license 315 | * 316 | * http://docs.jquery.com/UI/Selectable#theming 317 | */ 318 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 319 | /* 320 | * jQuery UI Accordion 1.8.16 321 | * 322 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 323 | * Dual licensed under the MIT or GPL Version 2 licenses. 324 | * http://jquery.org/license 325 | * 326 | * http://docs.jquery.com/UI/Accordion#theming 327 | */ 328 | /* IE/Win - Fix animation bug - #4615 */ 329 | .ui-accordion { width: 100%; } 330 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 331 | .ui-accordion .ui-accordion-li-fix { display: inline; } 332 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 333 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 334 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 335 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 336 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 337 | .ui-accordion .ui-accordion-content-active { display: block; } 338 | /* 339 | * jQuery UI Autocomplete 1.8.16 340 | * 341 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 342 | * Dual licensed under the MIT or GPL Version 2 licenses. 343 | * http://jquery.org/license 344 | * 345 | * http://docs.jquery.com/UI/Autocomplete#theming 346 | */ 347 | .ui-autocomplete { position: absolute; cursor: default; } 348 | 349 | /* workarounds */ 350 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 351 | 352 | /* 353 | * jQuery UI Menu 1.8.16 354 | * 355 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 356 | * Dual licensed under the MIT or GPL Version 2 licenses. 357 | * http://jquery.org/license 358 | * 359 | * http://docs.jquery.com/UI/Menu#theming 360 | */ 361 | .ui-menu { 362 | list-style:none; 363 | padding: 2px; 364 | margin: 0; 365 | display:block; 366 | float: left; 367 | } 368 | .ui-menu .ui-menu { 369 | margin-top: -3px; 370 | } 371 | .ui-menu .ui-menu-item { 372 | margin:0; 373 | padding: 0; 374 | zoom: 1; 375 | float: left; 376 | clear: left; 377 | width: 100%; 378 | } 379 | .ui-menu .ui-menu-item a { 380 | text-decoration:none; 381 | display:block; 382 | padding:.2em .4em; 383 | line-height:1.5; 384 | zoom:1; 385 | } 386 | .ui-menu .ui-menu-item a.ui-state-hover, 387 | .ui-menu .ui-menu-item a.ui-state-active { 388 | font-weight: normal; 389 | margin: -1px; 390 | } 391 | /* 392 | * jQuery UI Button 1.8.16 393 | * 394 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 395 | * Dual licensed under the MIT or GPL Version 2 licenses. 396 | * http://jquery.org/license 397 | * 398 | * http://docs.jquery.com/UI/Button#theming 399 | */ 400 | .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */ 401 | .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ 402 | button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ 403 | .ui-button-icons-only { width: 3.4em; } 404 | button.ui-button-icons-only { width: 3.7em; } 405 | 406 | /*button text element */ 407 | .ui-button .ui-button-text { display: block; line-height: 1.4; } 408 | .ui-button-text-only .ui-button-text { padding: .4em 1em; } 409 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } 410 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } 411 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } 412 | .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } 413 | /* no icon support for input elements, provide padding by default */ 414 | input.ui-button { padding: .4em 1em; } 415 | 416 | /*button icon element(s) */ 417 | .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; } 418 | .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } 419 | .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; } 420 | .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; } 421 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } 422 | 423 | /*button sets*/ 424 | .ui-buttonset { margin-right: 7px; } 425 | .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } 426 | 427 | /* workarounds */ 428 | button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ 429 | /* 430 | * jQuery UI Dialog 1.8.16 431 | * 432 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 433 | * Dual licensed under the MIT or GPL Version 2 licenses. 434 | * http://jquery.org/license 435 | * 436 | * http://docs.jquery.com/UI/Dialog#theming 437 | */ 438 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 439 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 440 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 441 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 442 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 443 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 444 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 445 | .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; } 446 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 447 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 448 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 449 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 450 | /* 451 | * jQuery UI Slider 1.8.16 452 | * 453 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 454 | * Dual licensed under the MIT or GPL Version 2 licenses. 455 | * http://jquery.org/license 456 | * 457 | * http://docs.jquery.com/UI/Slider#theming 458 | */ 459 | .ui-slider { position: relative; text-align: left; } 460 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 461 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 462 | 463 | .ui-slider-horizontal { height: .8em; } 464 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 465 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 466 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 467 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 468 | 469 | .ui-slider-vertical { width: .8em; height: 100px; } 470 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 471 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 472 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 473 | .ui-slider-vertical .ui-slider-range-max { top: 0; }/* 474 | * jQuery UI Tabs 1.8.16 475 | * 476 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 477 | * Dual licensed under the MIT or GPL Version 2 licenses. 478 | * http://jquery.org/license 479 | * 480 | * http://docs.jquery.com/UI/Tabs#theming 481 | */ 482 | .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") */ 483 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 484 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } 485 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 486 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 487 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } 488 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 489 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 490 | .ui-tabs .ui-tabs-hide { display: none !important; } 491 | /* 492 | * jQuery UI Datepicker 1.8.16 493 | * 494 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 495 | * Dual licensed under the MIT or GPL Version 2 licenses. 496 | * http://jquery.org/license 497 | * 498 | * http://docs.jquery.com/UI/Datepicker#theming 499 | */ 500 | .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } 501 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } 502 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } 503 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } 504 | .ui-datepicker .ui-datepicker-prev { left:2px; } 505 | .ui-datepicker .ui-datepicker-next { right:2px; } 506 | .ui-datepicker .ui-datepicker-prev-hover { left:1px; } 507 | .ui-datepicker .ui-datepicker-next-hover { right:1px; } 508 | .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; } 509 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } 510 | .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } 511 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;} 512 | .ui-datepicker select.ui-datepicker-month, 513 | .ui-datepicker select.ui-datepicker-year { width: 49%;} 514 | .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } 515 | .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } 516 | .ui-datepicker td { border: 0; padding: 1px; } 517 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } 518 | .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; } 519 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } 520 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } 521 | 522 | /* with multiple calendars */ 523 | .ui-datepicker.ui-datepicker-multi { width:auto; } 524 | .ui-datepicker-multi .ui-datepicker-group { float:left; } 525 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } 526 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } 527 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } 528 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } 529 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } 530 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } 531 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } 532 | .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; } 533 | 534 | /* RTL support */ 535 | .ui-datepicker-rtl { direction: rtl; } 536 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } 537 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } 538 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } 539 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } 540 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } 541 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } 542 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } 543 | .ui-datepicker-rtl .ui-datepicker-group { float:right; } 544 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } 545 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } 546 | 547 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ 548 | .ui-datepicker-cover { 549 | display: none; /*sorry for IE5*/ 550 | display/**/: block; /*sorry for IE5*/ 551 | position: absolute; /*must have*/ 552 | z-index: -1; /*must have*/ 553 | filter: mask(); /*must have*/ 554 | top: -4px; /*must have*/ 555 | left: -4px; /*must have*/ 556 | width: 200px; /*must have*/ 557 | height: 200px; /*must have*/ 558 | }/* 559 | * jQuery UI Progressbar 1.8.16 560 | * 561 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 562 | * Dual licensed under the MIT or GPL Version 2 licenses. 563 | * http://jquery.org/license 564 | * 565 | * http://docs.jquery.com/UI/Progressbar#theming 566 | */ 567 | .ui-progressbar { height:2em; text-align: left; } 568 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Accordion 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Autocomplete 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | 15 | /* 16 | * jQuery UI Menu 1.8.16 17 | * 18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 19 | * Dual licensed under the MIT or GPL Version 2 licenses. 20 | * http://jquery.org/license 21 | * 22 | * http://docs.jquery.com/UI/Menu#theming 23 | */ 24 | .ui-menu { 25 | list-style:none; 26 | padding: 2px; 27 | margin: 0; 28 | display:block; 29 | float: left; 30 | } 31 | .ui-menu .ui-menu { 32 | margin-top: -3px; 33 | } 34 | .ui-menu .ui-menu-item { 35 | margin:0; 36 | padding: 0; 37 | zoom: 1; 38 | float: left; 39 | clear: left; 40 | width: 100%; 41 | } 42 | .ui-menu .ui-menu-item a { 43 | text-decoration:none; 44 | display:block; 45 | padding:.2em .4em; 46 | line-height:1.5; 47 | zoom:1; 48 | } 49 | .ui-menu .ui-menu-item a.ui-state-hover, 50 | .ui-menu .ui-menu-item a.ui-state-active { 51 | font-weight: normal; 52 | margin: -1px; 53 | } 54 | -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.button.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Button 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Button#theming 9 | */ 10 | .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */ 11 | .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ 12 | button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ 13 | .ui-button-icons-only { width: 3.4em; } 14 | button.ui-button-icons-only { width: 3.7em; } 15 | 16 | /*button text element */ 17 | .ui-button .ui-button-text { display: block; line-height: 1.4; } 18 | .ui-button-text-only .ui-button-text { padding: .4em 1em; } 19 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } 20 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } 21 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } 22 | .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } 23 | /* no icon support for input elements, provide padding by default */ 24 | input.ui-button { padding: .4em 1em; } 25 | 26 | /*button icon element(s) */ 27 | .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; } 28 | .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } 29 | .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; } 30 | .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; } 31 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } 32 | 33 | /*button sets*/ 34 | .ui-buttonset { margin-right: 7px; } 35 | .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } 36 | 37 | /* workarounds */ 38 | button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ 39 | -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } 17 | .ui-helper-clearfix { display: inline-block; } 18 | /* required comment for clearfix to work in Opera \*/ 19 | * html .ui-helper-clearfix { height:1%; } 20 | .ui-helper-clearfix { display:block; } 21 | /* end clearfix */ 22 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 23 | 24 | 25 | /* Interaction Cues 26 | ----------------------------------*/ 27 | .ui-state-disabled { cursor: default !important; } 28 | 29 | 30 | /* Icons 31 | ----------------------------------*/ 32 | 33 | /* states and images */ 34 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 35 | 36 | 37 | /* Misc visuals 38 | ----------------------------------*/ 39 | 40 | /* Overlays */ 41 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 42 | -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Datepicker 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Datepicker#theming 9 | */ 10 | .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } 11 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } 12 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } 13 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } 14 | .ui-datepicker .ui-datepicker-prev { left:2px; } 15 | .ui-datepicker .ui-datepicker-next { right:2px; } 16 | .ui-datepicker .ui-datepicker-prev-hover { left:1px; } 17 | .ui-datepicker .ui-datepicker-next-hover { right:1px; } 18 | .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; } 19 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } 20 | .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } 21 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;} 22 | .ui-datepicker select.ui-datepicker-month, 23 | .ui-datepicker select.ui-datepicker-year { width: 49%;} 24 | .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } 25 | .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } 26 | .ui-datepicker td { border: 0; padding: 1px; } 27 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } 28 | .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; } 29 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } 30 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } 31 | 32 | /* with multiple calendars */ 33 | .ui-datepicker.ui-datepicker-multi { width:auto; } 34 | .ui-datepicker-multi .ui-datepicker-group { float:left; } 35 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } 36 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } 37 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } 38 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } 39 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } 40 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } 41 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } 42 | .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; } 43 | 44 | /* RTL support */ 45 | .ui-datepicker-rtl { direction: rtl; } 46 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } 47 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } 48 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } 49 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } 50 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } 51 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } 52 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } 53 | .ui-datepicker-rtl .ui-datepicker-group { float:right; } 54 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } 55 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } 56 | 57 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ 58 | .ui-datepicker-cover { 59 | display: none; /*sorry for IE5*/ 60 | display/**/: block; /*sorry for IE5*/ 61 | position: absolute; /*must have*/ 62 | z-index: -1; /*must have*/ 63 | filter: mask(); /*must have*/ 64 | top: -4px; /*must have*/ 65 | left: -4px; /*must have*/ 66 | width: 200px; /*must have*/ 67 | height: 200px; /*must have*/ 68 | } -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Dialog 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .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; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Resizable 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Slider 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.tabs.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Tabs 1.8.16 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Tabs#theming 9 | */ 10 | .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") */ 11 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 12 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } 13 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 14 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 15 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } 16 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 17 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 18 | .ui-tabs .ui-tabs-hide { display: none !important; } 19 | -------------------------------------------------------------------------------- /Resources/public/themes/flick/jquery.ui.theme.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* 4 | * jQuery UI CSS Framework 1.8.16 5 | * 6 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 7 | * Dual licensed under the MIT or GPL Version 2 licenses. 8 | * http://jquery.org/license 9 | * 10 | * http://docs.jquery.com/UI/Theming/API 11 | * 12 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Helvetica,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=2px&bgColorHeader=dddddd&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=50&borderColorHeader=dddddd&fcHeader=444444&iconColorHeader=0073ea&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=dddddd&fcContent=444444&iconColorContent=ff0084&bgColorDefault=f6f6f6&bgTextureDefault=03_highlight_soft.png&bgImgOpacityDefault=100&borderColorDefault=dddddd&fcDefault=0073ea&iconColorDefault=666666&bgColorHover=0073ea&bgTextureHover=03_highlight_soft.png&bgImgOpacityHover=25&borderColorHover=0073ea&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=dddddd&fcActive=ff0084&iconColorActive=454545&bgColorHighlight=ffffff&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=55&borderColorHighlight=cccccc&fcHighlight=444444&iconColorHighlight=0073ea&bgColorError=ffffff&bgTextureError=01_flat.png&bgImgOpacityError=55&borderColorError=ff0084&fcError=222222&iconColorError=ff0084&bgColorOverlay=eeeeee&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px 13 | */ 14 | 15 | 16 | /* Component containers 17 | ----------------------------------*/ 18 | .ui-widget { font-family: Helvetica, Arial, sans-serif; font-size: 1.1em; } 19 | .ui-widget .ui-widget { font-size: 1em; } 20 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Helvetica, Arial, sans-serif; font-size: 1em; } 21 | .ui-widget-content { border: 1px solid #dddddd; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #444444; } 22 | .ui-widget-content a { color: #444444; } 23 | .ui-widget-header { border: 1px solid #dddddd; background: #dddddd url(images/ui-bg_highlight-soft_50_dddddd_1x100.png) 50% 50% repeat-x; color: #444444; font-weight: bold; } 24 | .ui-widget-header a { color: #444444; } 25 | 26 | /* Interaction states 27 | ----------------------------------*/ 28 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #dddddd; background: #f6f6f6 url(images/ui-bg_highlight-soft_100_f6f6f6_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #0073ea; } 29 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #0073ea; text-decoration: none; } 30 | .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 #0073ea; background: #0073ea url(images/ui-bg_highlight-soft_25_0073ea_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #ffffff; } 31 | .ui-state-hover a, .ui-state-hover a:hover { color: #ffffff; text-decoration: none; } 32 | .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #dddddd; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #ff0084; } 33 | .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #ff0084; text-decoration: none; } 34 | .ui-widget :active { outline: none; } 35 | 36 | /* Interaction Cues 37 | ----------------------------------*/ 38 | .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #cccccc; background: #ffffff url(images/ui-bg_flat_55_ffffff_40x100.png) 50% 50% repeat-x; color: #444444; } 39 | .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #444444; } 40 | .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #ff0084; background: #ffffff url(images/ui-bg_flat_55_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } 41 | .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #222222; } 42 | .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #222222; } 43 | .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } 44 | .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } 45 | .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } 46 | 47 | /* Icons 48 | ----------------------------------*/ 49 | 50 | /* states and images */ 51 | .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_ff0084_256x240.png); } 52 | .ui-widget-content .ui-icon {background-image: url(images/ui-icons_ff0084_256x240.png); } 53 | .ui-widget-header .ui-icon {background-image: url(images/ui-icons_0073ea_256x240.png); } 54 | .ui-state-default .ui-icon { background-image: url(images/ui-icons_666666_256x240.png); } 55 | .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); } 56 | .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); } 57 | .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_0073ea_256x240.png); } 58 | .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ff0084_256x240.png); } 59 | 60 | /* positioning */ 61 | .ui-icon-carat-1-n { background-position: 0 0; } 62 | .ui-icon-carat-1-ne { background-position: -16px 0; } 63 | .ui-icon-carat-1-e { background-position: -32px 0; } 64 | .ui-icon-carat-1-se { background-position: -48px 0; } 65 | .ui-icon-carat-1-s { background-position: -64px 0; } 66 | .ui-icon-carat-1-sw { background-position: -80px 0; } 67 | .ui-icon-carat-1-w { background-position: -96px 0; } 68 | .ui-icon-carat-1-nw { background-position: -112px 0; } 69 | .ui-icon-carat-2-n-s { background-position: -128px 0; } 70 | .ui-icon-carat-2-e-w { background-position: -144px 0; } 71 | .ui-icon-triangle-1-n { background-position: 0 -16px; } 72 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } 73 | .ui-icon-triangle-1-e { background-position: -32px -16px; } 74 | .ui-icon-triangle-1-se { background-position: -48px -16px; } 75 | .ui-icon-triangle-1-s { background-position: -64px -16px; } 76 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } 77 | .ui-icon-triangle-1-w { background-position: -96px -16px; } 78 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } 79 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } 80 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } 81 | .ui-icon-arrow-1-n { background-position: 0 -32px; } 82 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } 83 | .ui-icon-arrow-1-e { background-position: -32px -32px; } 84 | .ui-icon-arrow-1-se { background-position: -48px -32px; } 85 | .ui-icon-arrow-1-s { background-position: -64px -32px; } 86 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } 87 | .ui-icon-arrow-1-w { background-position: -96px -32px; } 88 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } 89 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } 90 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } 91 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } 92 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } 93 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } 94 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } 95 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } 96 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } 97 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } 98 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } 99 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } 100 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } 101 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } 102 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } 103 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } 104 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } 105 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } 106 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } 107 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } 108 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } 109 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } 110 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } 111 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } 112 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } 113 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } 114 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } 115 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } 116 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } 117 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } 118 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } 119 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } 120 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } 121 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } 122 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } 123 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } 124 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } 125 | .ui-icon-arrow-4 { background-position: 0 -80px; } 126 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } 127 | .ui-icon-extlink { background-position: -32px -80px; } 128 | .ui-icon-newwin { background-position: -48px -80px; } 129 | .ui-icon-refresh { background-position: -64px -80px; } 130 | .ui-icon-shuffle { background-position: -80px -80px; } 131 | .ui-icon-transfer-e-w { background-position: -96px -80px; } 132 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } 133 | .ui-icon-folder-collapsed { background-position: 0 -96px; } 134 | .ui-icon-folder-open { background-position: -16px -96px; } 135 | .ui-icon-document { background-position: -32px -96px; } 136 | .ui-icon-document-b { background-position: -48px -96px; } 137 | .ui-icon-note { background-position: -64px -96px; } 138 | .ui-icon-mail-closed { background-position: -80px -96px; } 139 | .ui-icon-mail-open { background-position: -96px -96px; } 140 | .ui-icon-suitcase { background-position: -112px -96px; } 141 | .ui-icon-comment { background-position: -128px -96px; } 142 | .ui-icon-person { background-position: -144px -96px; } 143 | .ui-icon-print { background-position: -160px -96px; } 144 | .ui-icon-trash { background-position: -176px -96px; } 145 | .ui-icon-locked { background-position: -192px -96px; } 146 | .ui-icon-unlocked { background-position: -208px -96px; } 147 | .ui-icon-bookmark { background-position: -224px -96px; } 148 | .ui-icon-tag { background-position: -240px -96px; } 149 | .ui-icon-home { background-position: 0 -112px; } 150 | .ui-icon-flag { background-position: -16px -112px; } 151 | .ui-icon-calendar { background-position: -32px -112px; } 152 | .ui-icon-cart { background-position: -48px -112px; } 153 | .ui-icon-pencil { background-position: -64px -112px; } 154 | .ui-icon-clock { background-position: -80px -112px; } 155 | .ui-icon-disk { background-position: -96px -112px; } 156 | .ui-icon-calculator { background-position: -112px -112px; } 157 | .ui-icon-zoomin { background-position: -128px -112px; } 158 | .ui-icon-zoomout { background-position: -144px -112px; } 159 | .ui-icon-search { background-position: -160px -112px; } 160 | .ui-icon-wrench { background-position: -176px -112px; } 161 | .ui-icon-gear { background-position: -192px -112px; } 162 | .ui-icon-heart { background-position: -208px -112px; } 163 | .ui-icon-star { background-position: -224px -112px; } 164 | .ui-icon-link { background-position: -240px -112px; } 165 | .ui-icon-cancel { background-position: 0 -128px; } 166 | .ui-icon-plus { background-position: -16px -128px; } 167 | .ui-icon-plusthick { background-position: -32px -128px; } 168 | .ui-icon-minus { background-position: -48px -128px; } 169 | .ui-icon-minusthick { background-position: -64px -128px; } 170 | .ui-icon-close { background-position: -80px -128px; } 171 | .ui-icon-closethick { background-position: -96px -128px; } 172 | .ui-icon-key { background-position: -112px -128px; } 173 | .ui-icon-lightbulb { background-position: -128px -128px; } 174 | .ui-icon-scissors { background-position: -144px -128px; } 175 | .ui-icon-clipboard { background-position: -160px -128px; } 176 | .ui-icon-copy { background-position: -176px -128px; } 177 | .ui-icon-contact { background-position: -192px -128px; } 178 | .ui-icon-image { background-position: -208px -128px; } 179 | .ui-icon-video { background-position: -224px -128px; } 180 | .ui-icon-script { background-position: -240px -128px; } 181 | .ui-icon-alert { background-position: 0 -144px; } 182 | .ui-icon-info { background-position: -16px -144px; } 183 | .ui-icon-notice { background-position: -32px -144px; } 184 | .ui-icon-help { background-position: -48px -144px; } 185 | .ui-icon-check { background-position: -64px -144px; } 186 | .ui-icon-bullet { background-position: -80px -144px; } 187 | .ui-icon-radio-off { background-position: -96px -144px; } 188 | .ui-icon-radio-on { background-position: -112px -144px; } 189 | .ui-icon-pin-w { background-position: -128px -144px; } 190 | .ui-icon-pin-s { background-position: -144px -144px; } 191 | .ui-icon-play { background-position: 0 -160px; } 192 | .ui-icon-pause { background-position: -16px -160px; } 193 | .ui-icon-seek-next { background-position: -32px -160px; } 194 | .ui-icon-seek-prev { background-position: -48px -160px; } 195 | .ui-icon-seek-end { background-position: -64px -160px; } 196 | .ui-icon-seek-start { background-position: -80px -160px; } 197 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ 198 | .ui-icon-seek-first { background-position: -80px -160px; } 199 | .ui-icon-stop { background-position: -96px -160px; } 200 | .ui-icon-eject { background-position: -112px -160px; } 201 | .ui-icon-volume-off { background-position: -128px -160px; } 202 | .ui-icon-volume-on { background-position: -144px -160px; } 203 | .ui-icon-power { background-position: 0 -176px; } 204 | .ui-icon-signal-diag { background-position: -16px -176px; } 205 | .ui-icon-signal { background-position: -32px -176px; } 206 | .ui-icon-battery-0 { background-position: -48px -176px; } 207 | .ui-icon-battery-1 { background-position: -64px -176px; } 208 | .ui-icon-battery-2 { background-position: -80px -176px; } 209 | .ui-icon-battery-3 { background-position: -96px -176px; } 210 | .ui-icon-circle-plus { background-position: 0 -192px; } 211 | .ui-icon-circle-minus { background-position: -16px -192px; } 212 | .ui-icon-circle-close { background-position: -32px -192px; } 213 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } 214 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } 215 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } 216 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } 217 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } 218 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } 219 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } 220 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } 221 | .ui-icon-circle-zoomin { background-position: -176px -192px; } 222 | .ui-icon-circle-zoomout { background-position: -192px -192px; } 223 | .ui-icon-circle-check { background-position: -208px -192px; } 224 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } 225 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } 226 | .ui-icon-circlesmall-close { background-position: -32px -208px; } 227 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } 228 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } 229 | .ui-icon-squaresmall-close { background-position: -80px -208px; } 230 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } 231 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } 232 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } 233 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } 234 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } 235 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } 236 | 237 | 238 | /* Misc visuals 239 | ----------------------------------*/ 240 | 241 | /* Corner radius */ 242 | .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 2px; -webkit-border-top-left-radius: 2px; -khtml-border-top-left-radius: 2px; border-top-left-radius: 2px; } 243 | .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; -khtml-border-top-right-radius: 2px; border-top-right-radius: 2px; } 244 | .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; -khtml-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; } 245 | .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; -khtml-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; } 246 | 247 | /* Overlays */ 248 | .ui-widget-overlay { background: #eeeeee url(images/ui-bg_flat_0_eeeeee_40x100.png) 50% 50% repeat-x; opacity: .80;filter:Alpha(Opacity=80); } 249 | .ui-widget-shadow { margin: -4px 0 0 -4px; padding: 4px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .60;filter:Alpha(Opacity=60); -moz-border-radius: 0px; -khtml-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; } -------------------------------------------------------------------------------- /SonatajQueryBundle.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Sonata\jQueryBundle; 12 | 13 | use Symfony\Component\HttpKernel\Bundle\Bundle; 14 | 15 | class SonatajQueryBundle extends Bundle 16 | { 17 | 18 | } 19 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sonata-project/jquery-bundle", 3 | "type": "symfony-bundle", 4 | "description": "Symfony SonatajQueryBundle", 5 | "keywords": ["jQuery", "sonata"], 6 | "homepage": "http://sonata-project.org/bundles/jquery", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Thomas Rabaix", 11 | "email": "thomas.rabaix@sonata-project.org", 12 | "homepage": "http://sonata-project.org" 13 | }, 14 | { 15 | "name": "Sonata Community", 16 | "homepage": "https://github.com/sonata-project/SonatajQueryBundle/contributors" 17 | } 18 | ], 19 | "require": { 20 | "php": ">=5.3.2" 21 | }, 22 | "autoload": { 23 | "psr-4": { "Sonata\\jQueryBundle\\": "" } 24 | }, 25 | "extra": { 26 | "branch-alias": { 27 | "dev-master": "1.9.x-dev" 28 | } 29 | } 30 | } --------------------------------------------------------------------------------