fnschool 20250109.80531.837__py3-none-any.whl → 20251011.81638.854__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fnschool might be problematic. Click here for more details.

Files changed (278) hide show
  1. fnschoo1/__init__.py +53 -0
  2. fnschoo1/canteen/admin.py +3 -0
  3. fnschoo1/canteen/apps.py +6 -0
  4. fnschoo1/canteen/forms.py +84 -0
  5. fnschoo1/canteen/migrations/0001_initial.py +119 -0
  6. fnschoo1/canteen/migrations/0002_ingredient_is_disabled.py +20 -0
  7. fnschoo1/canteen/migrations/0003_consumption_is_disabled_alter_ingredient_is_disabled.py +23 -0
  8. fnschoo1/canteen/migrations/0004_alter_ingredient_name_category_and_more.py +66 -0
  9. fnschoo1/canteen/migrations/0005_alter_category_created_at_alter_category_name_and_more.py +41 -0
  10. fnschoo1/canteen/migrations/0006_category_is_disabled_alter_category_user_and_more.py +49 -0
  11. fnschoo1/canteen/migrations/0007_alter_consumption_amount_used_and_more.py +30 -0
  12. fnschoo1/canteen/migrations/0008_category_abbreviation_mealtype.py +67 -0
  13. fnschoo1/canteen/migrations/0009_alter_category_abbreviation_and_more.py +55 -0
  14. fnschoo1/canteen/migrations/0010_alter_consumption_options_alter_ingredient_options_and_more.py +215 -0
  15. fnschoo1/canteen/migrations/0011_category_pin_to_consumptions_top.py +23 -0
  16. fnschoo1/canteen/migrations/0012_alter_ingredient_storage_date.py +18 -0
  17. fnschoo1/canteen/models.py +179 -0
  18. fnschoo1/canteen/templates/canteen/category/create.html +17 -0
  19. fnschoo1/canteen/templates/canteen/category/delete.html +61 -0
  20. fnschoo1/canteen/templates/canteen/category/list.html +63 -0
  21. fnschoo1/canteen/templates/canteen/category/update.html +23 -0
  22. fnschoo1/canteen/templates/canteen/close.html +11 -0
  23. fnschoo1/canteen/templates/canteen/consumption/_create.html +19 -0
  24. fnschoo1/canteen/templates/canteen/consumption/create.html +456 -0
  25. fnschoo1/canteen/templates/canteen/ingredient/close.html +11 -0
  26. fnschoo1/canteen/templates/canteen/ingredient/create.html +19 -0
  27. fnschoo1/canteen/templates/canteen/ingredient/create_one.html +17 -0
  28. fnschoo1/canteen/templates/canteen/ingredient/delete.html +41 -0
  29. fnschoo1/canteen/templates/canteen/ingredient/list.html +128 -0
  30. fnschoo1/canteen/templates/canteen/ingredient/update.html +23 -0
  31. fnschoo1/canteen/templates/canteen/meal_type/create.html +17 -0
  32. fnschoo1/canteen/templates/canteen/meal_type/delete.html +56 -0
  33. fnschoo1/canteen/templates/canteen/meal_type/list.html +59 -0
  34. fnschoo1/canteen/templates/canteen/meal_type/update.html +23 -0
  35. fnschoo1/canteen/tests.py +3 -0
  36. fnschoo1/canteen/urls.py +116 -0
  37. fnschoo1/canteen/views.py +814 -0
  38. fnschoo1/canteen/workbook/generate.py +2098 -0
  39. fnschoo1/db.sqlite3 +0 -0
  40. fnschoo1/fnschool/__init__.py +13 -0
  41. fnschoo1/fnschool/asgi.py +16 -0
  42. fnschoo1/fnschool/settings.py +167 -0
  43. fnschoo1/fnschool/templatetags/fnschool_tags.py +27 -0
  44. fnschoo1/fnschool/urls.py +30 -0
  45. fnschoo1/fnschool/views.py +9 -0
  46. fnschoo1/fnschool/wsgi.py +16 -0
  47. fnschoo1/locale/en/LC_MESSAGES/django.mo +0 -0
  48. fnschoo1/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  49. fnschoo1/manage.py +25 -0
  50. fnschoo1/profiles/admin.py +27 -0
  51. fnschoo1/profiles/apps.py +12 -0
  52. fnschoo1/profiles/forms.py +67 -0
  53. fnschoo1/profiles/migrations/0001_initial.py +192 -0
  54. fnschoo1/profiles/migrations/0002_alter_profile_bio.py +20 -0
  55. fnschoo1/profiles/migrations/0003_alter_profile_options_alter_profile_address_and_more.py +67 -0
  56. fnschoo1/profiles/migrations/0004_profile_gender.py +26 -0
  57. fnschoo1/profiles/migrations/0005_alter_profile_gender.py +23 -0
  58. fnschoo1/profiles/models.py +60 -0
  59. fnschoo1/profiles/signals.py +20 -0
  60. fnschoo1/profiles/templates/profiles/create.html +16 -0
  61. fnschoo1/profiles/templates/profiles/detail.html +14 -0
  62. fnschoo1/profiles/templates/profiles/edit.html +12 -0
  63. fnschoo1/profiles/templates/profiles/log_in.html +20 -0
  64. fnschoo1/profiles/templates/profiles/log_out.html +12 -0
  65. fnschoo1/profiles/tests.py +3 -0
  66. fnschoo1/profiles/urls.py +15 -0
  67. fnschoo1/profiles/views.py +63 -0
  68. fnschoo1/static/css/bootstrap.min.css +11776 -0
  69. fnschoo1/static/css/fnschool.css +26 -0
  70. fnschoo1/static/images/favicon.ico +0 -0
  71. fnschoo1/static/js/bootstrap.bundle.min.js +4223 -0
  72. fnschoo1/static/js/bootstrap.min.js +2919 -0
  73. fnschoo1/static/js/fnschool.js +84 -0
  74. fnschoo1/static/js/jquery.min.js +5413 -0
  75. fnschoo1/static/js/jquery.slim.min.js +4331 -0
  76. fnschoo1/static/js/popper.min.js +1306 -0
  77. fnschoo1/static_collected/admin/css/autocomplete.css +377 -0
  78. fnschoo1/static_collected/admin/css/base.css +1224 -0
  79. fnschoo1/static_collected/admin/css/changelists.css +334 -0
  80. fnschoo1/static_collected/admin/css/dark_mode.css +136 -0
  81. fnschoo1/static_collected/admin/css/dashboard.css +30 -0
  82. fnschoo1/static_collected/admin/css/forms.css +546 -0
  83. fnschoo1/static_collected/admin/css/login.css +62 -0
  84. fnschoo1/static_collected/admin/css/nav_sidebar.css +145 -0
  85. fnschoo1/static_collected/admin/css/responsive.css +1043 -0
  86. fnschoo1/static_collected/admin/css/responsive_rtl.css +84 -0
  87. fnschoo1/static_collected/admin/css/rtl.css +311 -0
  88. fnschoo1/static_collected/admin/css/vendor/select2/select2.css +708 -0
  89. fnschoo1/static_collected/admin/css/vendor/select2/select2.min.css +1 -0
  90. fnschoo1/static_collected/admin/css/widgets.css +639 -0
  91. fnschoo1/static_collected/admin/js/SelectBox.js +128 -0
  92. fnschoo1/static_collected/admin/js/SelectFilter2.js +503 -0
  93. fnschoo1/static_collected/admin/js/actions.js +232 -0
  94. fnschoo1/static_collected/admin/js/admin/DateTimeShortcuts.js +496 -0
  95. fnschoo1/static_collected/admin/js/admin/RelatedObjectLookups.js +276 -0
  96. fnschoo1/static_collected/admin/js/autocomplete.js +33 -0
  97. fnschoo1/static_collected/admin/js/calendar.js +251 -0
  98. fnschoo1/static_collected/admin/js/cancel.js +29 -0
  99. fnschoo1/static_collected/admin/js/change_form.js +21 -0
  100. fnschoo1/static_collected/admin/js/collapse.js +43 -0
  101. fnschoo1/static_collected/admin/js/core.js +174 -0
  102. fnschoo1/static_collected/admin/js/filters.js +37 -0
  103. fnschoo1/static_collected/admin/js/inlines.js +439 -0
  104. fnschoo1/static_collected/admin/js/jquery.init.js +8 -0
  105. fnschoo1/static_collected/admin/js/nav_sidebar.js +81 -0
  106. fnschoo1/static_collected/admin/js/popup_response.js +24 -0
  107. fnschoo1/static_collected/admin/js/prepopulate.js +43 -0
  108. fnschoo1/static_collected/admin/js/prepopulate_init.js +20 -0
  109. fnschoo1/static_collected/admin/js/theme.js +57 -0
  110. fnschoo1/static_collected/admin/js/urlify.js +529 -0
  111. fnschoo1/static_collected/admin/js/vendor/jquery/jquery.js +10913 -0
  112. fnschoo1/static_collected/admin/js/vendor/jquery/jquery.min.js +2 -0
  113. fnschoo1/static_collected/admin/js/vendor/select2/i18n/af.js +43 -0
  114. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ar.js +36 -0
  115. fnschoo1/static_collected/admin/js/vendor/select2/i18n/az.js +33 -0
  116. fnschoo1/static_collected/admin/js/vendor/select2/i18n/bg.js +38 -0
  117. fnschoo1/static_collected/admin/js/vendor/select2/i18n/bn.js +39 -0
  118. fnschoo1/static_collected/admin/js/vendor/select2/i18n/bs.js +48 -0
  119. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ca.js +41 -0
  120. fnschoo1/static_collected/admin/js/vendor/select2/i18n/cs.js +62 -0
  121. fnschoo1/static_collected/admin/js/vendor/select2/i18n/da.js +37 -0
  122. fnschoo1/static_collected/admin/js/vendor/select2/i18n/de.js +41 -0
  123. fnschoo1/static_collected/admin/js/vendor/select2/i18n/dsb.js +51 -0
  124. fnschoo1/static_collected/admin/js/vendor/select2/i18n/el.js +43 -0
  125. fnschoo1/static_collected/admin/js/vendor/select2/i18n/en.js +41 -0
  126. fnschoo1/static_collected/admin/js/vendor/select2/i18n/es.js +41 -0
  127. fnschoo1/static_collected/admin/js/vendor/select2/i18n/et.js +38 -0
  128. fnschoo1/static_collected/admin/js/vendor/select2/i18n/eu.js +45 -0
  129. fnschoo1/static_collected/admin/js/vendor/select2/i18n/fa.js +42 -0
  130. fnschoo1/static_collected/admin/js/vendor/select2/i18n/fi.js +42 -0
  131. fnschoo1/static_collected/admin/js/vendor/select2/i18n/fr.js +43 -0
  132. fnschoo1/static_collected/admin/js/vendor/select2/i18n/gl.js +40 -0
  133. fnschoo1/static_collected/admin/js/vendor/select2/i18n/he.js +44 -0
  134. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hi.js +40 -0
  135. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hr.js +45 -0
  136. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hsb.js +51 -0
  137. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hu.js +44 -0
  138. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hy.js +40 -0
  139. fnschoo1/static_collected/admin/js/vendor/select2/i18n/id.js +36 -0
  140. fnschoo1/static_collected/admin/js/vendor/select2/i18n/is.js +37 -0
  141. fnschoo1/static_collected/admin/js/vendor/select2/i18n/it.js +43 -0
  142. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ja.js +40 -0
  143. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ka.js +42 -0
  144. fnschoo1/static_collected/admin/js/vendor/select2/i18n/km.js +38 -0
  145. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ko.js +42 -0
  146. fnschoo1/static_collected/admin/js/vendor/select2/i18n/lt.js +45 -0
  147. fnschoo1/static_collected/admin/js/vendor/select2/i18n/lv.js +41 -0
  148. fnschoo1/static_collected/admin/js/vendor/select2/i18n/mk.js +42 -0
  149. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ms.js +38 -0
  150. fnschoo1/static_collected/admin/js/vendor/select2/i18n/nb.js +38 -0
  151. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ne.js +44 -0
  152. fnschoo1/static_collected/admin/js/vendor/select2/i18n/nl.js +46 -0
  153. fnschoo1/static_collected/admin/js/vendor/select2/i18n/pl.js +43 -0
  154. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ps.js +41 -0
  155. fnschoo1/static_collected/admin/js/vendor/select2/i18n/pt-BR.js +39 -0
  156. fnschoo1/static_collected/admin/js/vendor/select2/i18n/pt.js +41 -0
  157. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ro.js +43 -0
  158. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ru.js +48 -0
  159. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sk.js +61 -0
  160. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sl.js +41 -0
  161. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sq.js +43 -0
  162. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sr-Cyrl.js +48 -0
  163. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sr.js +48 -0
  164. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sv.js +40 -0
  165. fnschoo1/static_collected/admin/js/vendor/select2/i18n/th.js +36 -0
  166. fnschoo1/static_collected/admin/js/vendor/select2/i18n/tk.js +36 -0
  167. fnschoo1/static_collected/admin/js/vendor/select2/i18n/tr.js +40 -0
  168. fnschoo1/static_collected/admin/js/vendor/select2/i18n/uk.js +59 -0
  169. fnschoo1/static_collected/admin/js/vendor/select2/i18n/vi.js +37 -0
  170. fnschoo1/static_collected/admin/js/vendor/select2/i18n/zh-CN.js +36 -0
  171. fnschoo1/static_collected/admin/js/vendor/select2/i18n/zh-TW.js +33 -0
  172. fnschoo1/static_collected/admin/js/vendor/select2/select2.full.js +7115 -0
  173. fnschoo1/static_collected/admin/js/vendor/select2/select2.full.min.js +2 -0
  174. fnschoo1/static_collected/admin/js/vendor/xregexp/xregexp.js +4993 -0
  175. fnschoo1/static_collected/admin/js/vendor/xregexp/xregexp.min.js +160 -0
  176. fnschoo1/static_collected/css/bootstrap.min.css +11776 -0
  177. fnschoo1/static_collected/css/fnschool.css +26 -0
  178. fnschoo1/static_collected/images/favicon.ico +0 -0
  179. fnschoo1/static_collected/js/bootstrap.bundle.min.js +4223 -0
  180. fnschoo1/static_collected/js/bootstrap.min.js +2919 -0
  181. fnschoo1/static_collected/js/fnschool.js +84 -0
  182. fnschoo1/static_collected/js/jquery.min.js +5413 -0
  183. fnschoo1/static_collected/js/jquery.slim.min.js +4331 -0
  184. fnschoo1/static_collected/js/popper.min.js +1306 -0
  185. fnschoo1/templates/base/_css.html +1 -0
  186. fnschoo1/templates/base/_js.html +15 -0
  187. fnschoo1/templates/base/content.html +30 -0
  188. fnschoo1/templates/base/header_content_footer.html +35 -0
  189. fnschoo1/templates/close.html +11 -0
  190. fnschoo1/templates/home.html +51 -0
  191. fnschoo1/templates/includes/_footer.html +39 -0
  192. fnschoo1/templates/includes/_header.html +77 -0
  193. fnschoo1/templates/includes/_navigation.html +0 -0
  194. fnschoo1/templates/includes/_paginator.html +27 -0
  195. fnschoo1/templates/registration/logged_out.html +0 -0
  196. fnschoo1/templates/registration/login.html +0 -0
  197. fnschool-20251011.81638.854.dist-info/METADATA +179 -0
  198. fnschool-20251011.81638.854.dist-info/RECORD +209 -0
  199. {fnschool-20250109.80531.837.dist-info → fnschool-20251011.81638.854.dist-info}/WHEEL +1 -1
  200. fnschool-20251011.81638.854.dist-info/entry_points.txt +2 -0
  201. fnschool-20251011.81638.854.dist-info/top_level.txt +1 -0
  202. fnschool/__init__.py +0 -35
  203. fnschool/__main__.py +0 -16
  204. fnschool/app.py +0 -103
  205. fnschool/canteen/__init__.py +0 -3
  206. fnschool/canteen/__main__.py +0 -3
  207. fnschool/canteen/bill.py +0 -253
  208. fnschool/canteen/canteen.py +0 -1
  209. fnschool/canteen/canteen.toml +0 -61
  210. fnschool/canteen/config.py +0 -10
  211. fnschool/canteen/consuming.py +0 -53
  212. fnschool/canteen/currency.py +0 -17
  213. fnschool/canteen/data/bill.i18n.xlsx +0 -0
  214. fnschool/canteen/data/bill.xlsx +0 -0
  215. fnschool/canteen/data/consuming.xlsx +0 -0
  216. fnschool/canteen/data/purchase_list.xlsx +0 -0
  217. fnschool/canteen/entry.py +0 -40
  218. fnschool/canteen/food.py +0 -206
  219. fnschool/canteen/food_classes.py +0 -33
  220. fnschool/canteen/food_classes.toml +0 -64
  221. fnschool/canteen/operator.py +0 -91
  222. fnschool/canteen/path.py +0 -28
  223. fnschool/canteen/spreadsheet/base.py +0 -213
  224. fnschool/canteen/spreadsheet/consuming.py +0 -310
  225. fnschool/canteen/spreadsheet/consumingsum.py +0 -76
  226. fnschool/canteen/spreadsheet/cover.py +0 -64
  227. fnschool/canteen/spreadsheet/ctspreadsheet.py +0 -351
  228. fnschool/canteen/spreadsheet/food.py +0 -680
  229. fnschool/canteen/spreadsheet/inventory.py +0 -375
  230. fnschool/canteen/spreadsheet/merging.py +0 -340
  231. fnschool/canteen/spreadsheet/preconsuming.py +0 -329
  232. fnschool/canteen/spreadsheet/purchasing.py +0 -885
  233. fnschool/canteen/spreadsheet/purchasingsum.py +0 -110
  234. fnschool/canteen/spreadsheet/spreadsheet.py +0 -363
  235. fnschool/canteen/spreadsheet/translating.py +0 -12
  236. fnschool/canteen/spreadsheet/unwarehousing.py +0 -178
  237. fnschool/canteen/spreadsheet/unwarehousingsum.py +0 -11
  238. fnschool/canteen/spreadsheet/warehousing.py +0 -360
  239. fnschool/canteen/spreadsheet/workbook.py +0 -17
  240. fnschool/canteen/test.py +0 -97
  241. fnschool/config.py +0 -48
  242. fnschool/entry.py +0 -67
  243. fnschool/exam/__init__.py +0 -8
  244. fnschool/exam/data/parental_emails.xlsx +0 -0
  245. fnschool/exam/data/score.xlsx +0 -0
  246. fnschool/exam/email.py +0 -349
  247. fnschool/exam/entry.py +0 -36
  248. fnschool/exam/language.py +0 -19
  249. fnschool/exam/path.py +0 -24
  250. fnschool/exam/score.py +0 -1191
  251. fnschool/exam/subject.py +0 -20
  252. fnschool/exam/teacher.py +0 -54
  253. fnschool/external.py +0 -89
  254. fnschool/games/__init__.py +0 -1
  255. fnschool/games/__main__.py +0 -1
  256. fnschool/games/games.py +0 -1
  257. fnschool/inoutput.py +0 -97
  258. fnschool/language.py +0 -40
  259. fnschool/locales/en_US/LC_MESSAGES/fnschool.mo +0 -0
  260. fnschool/locales/zh_CN/LC_MESSAGES/fnschool.mo +0 -0
  261. fnschool/locales/zh_HK/LC_MESSAGES/fnschool.mo +0 -0
  262. fnschool/locales/zh_SG/LC_MESSAGES/fnschool.mo +0 -0
  263. fnschool/locales/zh_TW/LC_MESSAGES/fnschool.mo +0 -0
  264. fnschool/path.py +0 -45
  265. fnschool/test.py +0 -24
  266. fnschool/user.py +0 -262
  267. fnschool-20250109.80531.837.dist-info/METADATA +0 -342
  268. fnschool-20250109.80531.837.dist-info/RECORD +0 -78
  269. fnschool-20250109.80531.837.dist-info/entry_points.txt +0 -5
  270. fnschool-20250109.80531.837.dist-info/top_level.txt +0 -1
  271. /fnschool/canteen/consume.py → /fnschoo1/canteen/__init__.py +0 -0
  272. /fnschool/canteen/food_recount.toml → /fnschoo1/canteen/migrations/__init__.py +0 -0
  273. {fnschool/canteen/spreadsheet → fnschoo1/canteen/workbook}/__init__.py +0 -0
  274. /fnschool/exam/__main__.py → /fnschoo1/fnschool/templatetags/__init__.py +0 -0
  275. /fnschool/canteen/food_recounts.toml → /fnschoo1/profiles/__init__.py +0 -0
  276. /fnschool/canteen/warehouse.py → /fnschoo1/profiles/migrations/__init__.py +0 -0
  277. /fnschool/canteen/workbook.toml → /fnschoo1/templates/base/_content.html +0 -0
  278. {fnschool-20250109.80531.837.dist-info → fnschool-20251011.81638.854.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,708 @@
1
+ .select2-container {
2
+ box-sizing: border-box;
3
+ display: inline-block;
4
+ margin: 0;
5
+ position: relative;
6
+ vertical-align: middle;
7
+ }
8
+ .select2-container .select2-selection--single {
9
+ box-sizing: border-box;
10
+ cursor: pointer;
11
+ display: block;
12
+ height: 28px;
13
+ user-select: none;
14
+ -webkit-user-select: none;
15
+ }
16
+ .select2-container .select2-selection--single .select2-selection__rendered {
17
+ display: block;
18
+ padding-left: 8px;
19
+ padding-right: 20px;
20
+ overflow: hidden;
21
+ text-overflow: ellipsis;
22
+ white-space: nowrap;
23
+ }
24
+ .select2-container .select2-selection--single .select2-selection__clear {
25
+ position: relative;
26
+ }
27
+ .select2-container[dir='rtl']
28
+ .select2-selection--single
29
+ .select2-selection__rendered {
30
+ padding-right: 8px;
31
+ padding-left: 20px;
32
+ }
33
+ .select2-container .select2-selection--multiple {
34
+ box-sizing: border-box;
35
+ cursor: pointer;
36
+ display: block;
37
+ min-height: 32px;
38
+ user-select: none;
39
+ -webkit-user-select: none;
40
+ }
41
+ .select2-container .select2-selection--multiple .select2-selection__rendered {
42
+ display: inline-block;
43
+ overflow: hidden;
44
+ padding-left: 8px;
45
+ text-overflow: ellipsis;
46
+ white-space: nowrap;
47
+ }
48
+ .select2-container .select2-search--inline {
49
+ float: left;
50
+ }
51
+ .select2-container .select2-search--inline .select2-search__field {
52
+ box-sizing: border-box;
53
+ border: none;
54
+ font-size: 100%;
55
+ margin-top: 5px;
56
+ padding: 0;
57
+ }
58
+ .select2-container
59
+ .select2-search--inline
60
+ .select2-search__field::-webkit-search-cancel-button {
61
+ -webkit-appearance: none;
62
+ }
63
+
64
+ .select2-dropdown {
65
+ background-color: white;
66
+ border: 1px solid #aaa;
67
+ border-radius: 4px;
68
+ box-sizing: border-box;
69
+ display: block;
70
+ position: absolute;
71
+ left: -100000px;
72
+ width: 100%;
73
+ z-index: 1051;
74
+ }
75
+
76
+ .select2-results {
77
+ display: block;
78
+ }
79
+
80
+ .select2-results__options {
81
+ list-style: none;
82
+ margin: 0;
83
+ padding: 0;
84
+ }
85
+
86
+ .select2-results__option {
87
+ padding: 6px;
88
+ user-select: none;
89
+ -webkit-user-select: none;
90
+ }
91
+ .select2-results__option[aria-selected] {
92
+ cursor: pointer;
93
+ }
94
+
95
+ .select2-container--open .select2-dropdown {
96
+ left: 0;
97
+ }
98
+
99
+ .select2-container--open .select2-dropdown--above {
100
+ border-bottom: none;
101
+ border-bottom-left-radius: 0;
102
+ border-bottom-right-radius: 0;
103
+ }
104
+
105
+ .select2-container--open .select2-dropdown--below {
106
+ border-top: none;
107
+ border-top-left-radius: 0;
108
+ border-top-right-radius: 0;
109
+ }
110
+
111
+ .select2-search--dropdown {
112
+ display: block;
113
+ padding: 4px;
114
+ }
115
+ .select2-search--dropdown .select2-search__field {
116
+ padding: 4px;
117
+ width: 100%;
118
+ box-sizing: border-box;
119
+ }
120
+ .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
121
+ -webkit-appearance: none;
122
+ }
123
+ .select2-search--dropdown.select2-search--hide {
124
+ display: none;
125
+ }
126
+
127
+ .select2-close-mask {
128
+ border: 0;
129
+ margin: 0;
130
+ padding: 0;
131
+ display: block;
132
+ position: fixed;
133
+ left: 0;
134
+ top: 0;
135
+ min-height: 100%;
136
+ min-width: 100%;
137
+ height: auto;
138
+ width: auto;
139
+ opacity: 0;
140
+ z-index: 99;
141
+ background-color: #fff;
142
+ filter: alpha(opacity=0);
143
+ }
144
+
145
+ .select2-hidden-accessible {
146
+ border: 0 !important;
147
+ clip: rect(0 0 0 0) !important;
148
+ -webkit-clip-path: inset(50%) !important;
149
+ clip-path: inset(50%) !important;
150
+ height: 1px !important;
151
+ overflow: hidden !important;
152
+ padding: 0 !important;
153
+ position: absolute !important;
154
+ width: 1px !important;
155
+ white-space: nowrap !important;
156
+ }
157
+
158
+ .select2-container--default .select2-selection--single {
159
+ background-color: #fff;
160
+ border: 1px solid #aaa;
161
+ border-radius: 4px;
162
+ }
163
+ .select2-container--default
164
+ .select2-selection--single
165
+ .select2-selection__rendered {
166
+ color: #444;
167
+ line-height: 28px;
168
+ }
169
+ .select2-container--default
170
+ .select2-selection--single
171
+ .select2-selection__clear {
172
+ cursor: pointer;
173
+ float: right;
174
+ font-weight: bold;
175
+ }
176
+ .select2-container--default
177
+ .select2-selection--single
178
+ .select2-selection__placeholder {
179
+ color: #999;
180
+ }
181
+ .select2-container--default
182
+ .select2-selection--single
183
+ .select2-selection__arrow {
184
+ height: 26px;
185
+ position: absolute;
186
+ top: 1px;
187
+ right: 1px;
188
+ width: 20px;
189
+ }
190
+ .select2-container--default
191
+ .select2-selection--single
192
+ .select2-selection__arrow
193
+ b {
194
+ border-color: #888 transparent transparent transparent;
195
+ border-style: solid;
196
+ border-width: 5px 4px 0 4px;
197
+ height: 0;
198
+ left: 50%;
199
+ margin-left: -4px;
200
+ margin-top: -2px;
201
+ position: absolute;
202
+ top: 50%;
203
+ width: 0;
204
+ }
205
+
206
+ .select2-container--default[dir='rtl']
207
+ .select2-selection--single
208
+ .select2-selection__clear {
209
+ float: left;
210
+ }
211
+
212
+ .select2-container--default[dir='rtl']
213
+ .select2-selection--single
214
+ .select2-selection__arrow {
215
+ left: 1px;
216
+ right: auto;
217
+ }
218
+
219
+ .select2-container--default.select2-container--disabled
220
+ .select2-selection--single {
221
+ background-color: #eee;
222
+ cursor: default;
223
+ }
224
+ .select2-container--default.select2-container--disabled
225
+ .select2-selection--single
226
+ .select2-selection__clear {
227
+ display: none;
228
+ }
229
+
230
+ .select2-container--default.select2-container--open
231
+ .select2-selection--single
232
+ .select2-selection__arrow
233
+ b {
234
+ border-color: transparent transparent #888 transparent;
235
+ border-width: 0 4px 5px 4px;
236
+ }
237
+
238
+ .select2-container--default .select2-selection--multiple {
239
+ background-color: white;
240
+ border: 1px solid #aaa;
241
+ border-radius: 4px;
242
+ cursor: text;
243
+ }
244
+ .select2-container--default
245
+ .select2-selection--multiple
246
+ .select2-selection__rendered {
247
+ box-sizing: border-box;
248
+ list-style: none;
249
+ margin: 0;
250
+ padding: 0 5px;
251
+ width: 100%;
252
+ }
253
+ .select2-container--default
254
+ .select2-selection--multiple
255
+ .select2-selection__rendered
256
+ li {
257
+ list-style: none;
258
+ }
259
+ .select2-container--default
260
+ .select2-selection--multiple
261
+ .select2-selection__clear {
262
+ cursor: pointer;
263
+ float: right;
264
+ font-weight: bold;
265
+ margin-top: 5px;
266
+ margin-right: 10px;
267
+ padding: 1px;
268
+ }
269
+ .select2-container--default
270
+ .select2-selection--multiple
271
+ .select2-selection__choice {
272
+ background-color: #e4e4e4;
273
+ border: 1px solid #aaa;
274
+ border-radius: 4px;
275
+ cursor: default;
276
+ float: left;
277
+ margin-right: 5px;
278
+ margin-top: 5px;
279
+ padding: 0 5px;
280
+ }
281
+ .select2-container--default
282
+ .select2-selection--multiple
283
+ .select2-selection__choice__remove {
284
+ color: #999;
285
+ cursor: pointer;
286
+ display: inline-block;
287
+ font-weight: bold;
288
+ margin-right: 2px;
289
+ }
290
+ .select2-container--default
291
+ .select2-selection--multiple
292
+ .select2-selection__choice__remove:hover {
293
+ color: #333;
294
+ }
295
+
296
+ .select2-container--default[dir='rtl']
297
+ .select2-selection--multiple
298
+ .select2-selection__choice,
299
+ .select2-container--default[dir='rtl']
300
+ .select2-selection--multiple
301
+ .select2-search--inline {
302
+ float: right;
303
+ }
304
+
305
+ .select2-container--default[dir='rtl']
306
+ .select2-selection--multiple
307
+ .select2-selection__choice {
308
+ margin-left: 5px;
309
+ margin-right: auto;
310
+ }
311
+
312
+ .select2-container--default[dir='rtl']
313
+ .select2-selection--multiple
314
+ .select2-selection__choice__remove {
315
+ margin-left: 2px;
316
+ margin-right: auto;
317
+ }
318
+
319
+ .select2-container--default.select2-container--focus
320
+ .select2-selection--multiple {
321
+ border: solid black 1px;
322
+ outline: 0;
323
+ }
324
+
325
+ .select2-container--default.select2-container--disabled
326
+ .select2-selection--multiple {
327
+ background-color: #eee;
328
+ cursor: default;
329
+ }
330
+
331
+ .select2-container--default.select2-container--disabled
332
+ .select2-selection__choice__remove {
333
+ display: none;
334
+ }
335
+
336
+ .select2-container--default.select2-container--open.select2-container--above
337
+ .select2-selection--single,
338
+ .select2-container--default.select2-container--open.select2-container--above
339
+ .select2-selection--multiple {
340
+ border-top-left-radius: 0;
341
+ border-top-right-radius: 0;
342
+ }
343
+
344
+ .select2-container--default.select2-container--open.select2-container--below
345
+ .select2-selection--single,
346
+ .select2-container--default.select2-container--open.select2-container--below
347
+ .select2-selection--multiple {
348
+ border-bottom-left-radius: 0;
349
+ border-bottom-right-radius: 0;
350
+ }
351
+
352
+ .select2-container--default .select2-search--dropdown .select2-search__field {
353
+ border: 1px solid #aaa;
354
+ }
355
+
356
+ .select2-container--default .select2-search--inline .select2-search__field {
357
+ background: transparent;
358
+ border: none;
359
+ outline: 0;
360
+ box-shadow: none;
361
+ -webkit-appearance: textfield;
362
+ }
363
+
364
+ .select2-container--default .select2-results > .select2-results__options {
365
+ max-height: 200px;
366
+ overflow-y: auto;
367
+ }
368
+
369
+ .select2-container--default .select2-results__option[role='group'] {
370
+ padding: 0;
371
+ }
372
+
373
+ .select2-container--default .select2-results__option[aria-disabled='true'] {
374
+ color: #999;
375
+ }
376
+
377
+ .select2-container--default .select2-results__option[aria-selected='true'] {
378
+ background-color: #ddd;
379
+ }
380
+
381
+ .select2-container--default .select2-results__option .select2-results__option {
382
+ padding-left: 1em;
383
+ }
384
+ .select2-container--default
385
+ .select2-results__option
386
+ .select2-results__option
387
+ .select2-results__group {
388
+ padding-left: 0;
389
+ }
390
+ .select2-container--default
391
+ .select2-results__option
392
+ .select2-results__option
393
+ .select2-results__option {
394
+ margin-left: -1em;
395
+ padding-left: 2em;
396
+ }
397
+ .select2-container--default
398
+ .select2-results__option
399
+ .select2-results__option
400
+ .select2-results__option
401
+ .select2-results__option {
402
+ margin-left: -2em;
403
+ padding-left: 3em;
404
+ }
405
+ .select2-container--default
406
+ .select2-results__option
407
+ .select2-results__option
408
+ .select2-results__option
409
+ .select2-results__option
410
+ .select2-results__option {
411
+ margin-left: -3em;
412
+ padding-left: 4em;
413
+ }
414
+ .select2-container--default
415
+ .select2-results__option
416
+ .select2-results__option
417
+ .select2-results__option
418
+ .select2-results__option
419
+ .select2-results__option
420
+ .select2-results__option {
421
+ margin-left: -4em;
422
+ padding-left: 5em;
423
+ }
424
+ .select2-container--default
425
+ .select2-results__option
426
+ .select2-results__option
427
+ .select2-results__option
428
+ .select2-results__option
429
+ .select2-results__option
430
+ .select2-results__option
431
+ .select2-results__option {
432
+ margin-left: -5em;
433
+ padding-left: 6em;
434
+ }
435
+
436
+ .select2-container--default
437
+ .select2-results__option--highlighted[aria-selected] {
438
+ background-color: #5897fb;
439
+ color: white;
440
+ }
441
+
442
+ .select2-container--default .select2-results__group {
443
+ cursor: default;
444
+ display: block;
445
+ padding: 6px;
446
+ }
447
+
448
+ .select2-container--classic .select2-selection--single {
449
+ background-color: #f7f7f7;
450
+ border: 1px solid #aaa;
451
+ border-radius: 4px;
452
+ outline: 0;
453
+ background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
454
+ background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
455
+ background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
456
+ background-repeat: repeat-x;
457
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
458
+ }
459
+ .select2-container--classic .select2-selection--single:focus {
460
+ border: 1px solid #5897fb;
461
+ }
462
+ .select2-container--classic
463
+ .select2-selection--single
464
+ .select2-selection__rendered {
465
+ color: #444;
466
+ line-height: 28px;
467
+ }
468
+ .select2-container--classic
469
+ .select2-selection--single
470
+ .select2-selection__clear {
471
+ cursor: pointer;
472
+ float: right;
473
+ font-weight: bold;
474
+ margin-right: 10px;
475
+ }
476
+ .select2-container--classic
477
+ .select2-selection--single
478
+ .select2-selection__placeholder {
479
+ color: #999;
480
+ }
481
+ .select2-container--classic
482
+ .select2-selection--single
483
+ .select2-selection__arrow {
484
+ background-color: #ddd;
485
+ border: none;
486
+ border-left: 1px solid #aaa;
487
+ border-top-right-radius: 4px;
488
+ border-bottom-right-radius: 4px;
489
+ height: 26px;
490
+ position: absolute;
491
+ top: 1px;
492
+ right: 1px;
493
+ width: 20px;
494
+ background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
495
+ background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
496
+ background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
497
+ background-repeat: repeat-x;
498
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
499
+ }
500
+ .select2-container--classic
501
+ .select2-selection--single
502
+ .select2-selection__arrow
503
+ b {
504
+ border-color: #888 transparent transparent transparent;
505
+ border-style: solid;
506
+ border-width: 5px 4px 0 4px;
507
+ height: 0;
508
+ left: 50%;
509
+ margin-left: -4px;
510
+ margin-top: -2px;
511
+ position: absolute;
512
+ top: 50%;
513
+ width: 0;
514
+ }
515
+
516
+ .select2-container--classic[dir='rtl']
517
+ .select2-selection--single
518
+ .select2-selection__clear {
519
+ float: left;
520
+ }
521
+
522
+ .select2-container--classic[dir='rtl']
523
+ .select2-selection--single
524
+ .select2-selection__arrow {
525
+ border: none;
526
+ border-right: 1px solid #aaa;
527
+ border-radius: 0;
528
+ border-top-left-radius: 4px;
529
+ border-bottom-left-radius: 4px;
530
+ left: 1px;
531
+ right: auto;
532
+ }
533
+
534
+ .select2-container--classic.select2-container--open .select2-selection--single {
535
+ border: 1px solid #5897fb;
536
+ }
537
+ .select2-container--classic.select2-container--open
538
+ .select2-selection--single
539
+ .select2-selection__arrow {
540
+ background: transparent;
541
+ border: none;
542
+ }
543
+ .select2-container--classic.select2-container--open
544
+ .select2-selection--single
545
+ .select2-selection__arrow
546
+ b {
547
+ border-color: transparent transparent #888 transparent;
548
+ border-width: 0 4px 5px 4px;
549
+ }
550
+
551
+ .select2-container--classic.select2-container--open.select2-container--above
552
+ .select2-selection--single {
553
+ border-top: none;
554
+ border-top-left-radius: 0;
555
+ border-top-right-radius: 0;
556
+ background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
557
+ background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
558
+ background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
559
+ background-repeat: repeat-x;
560
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
561
+ }
562
+
563
+ .select2-container--classic.select2-container--open.select2-container--below
564
+ .select2-selection--single {
565
+ border-bottom: none;
566
+ border-bottom-left-radius: 0;
567
+ border-bottom-right-radius: 0;
568
+ background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
569
+ background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
570
+ background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
571
+ background-repeat: repeat-x;
572
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
573
+ }
574
+
575
+ .select2-container--classic .select2-selection--multiple {
576
+ background-color: white;
577
+ border: 1px solid #aaa;
578
+ border-radius: 4px;
579
+ cursor: text;
580
+ outline: 0;
581
+ }
582
+ .select2-container--classic .select2-selection--multiple:focus {
583
+ border: 1px solid #5897fb;
584
+ }
585
+ .select2-container--classic
586
+ .select2-selection--multiple
587
+ .select2-selection__rendered {
588
+ list-style: none;
589
+ margin: 0;
590
+ padding: 0 5px;
591
+ }
592
+ .select2-container--classic
593
+ .select2-selection--multiple
594
+ .select2-selection__clear {
595
+ display: none;
596
+ }
597
+ .select2-container--classic
598
+ .select2-selection--multiple
599
+ .select2-selection__choice {
600
+ background-color: #e4e4e4;
601
+ border: 1px solid #aaa;
602
+ border-radius: 4px;
603
+ cursor: default;
604
+ float: left;
605
+ margin-right: 5px;
606
+ margin-top: 5px;
607
+ padding: 0 5px;
608
+ }
609
+ .select2-container--classic
610
+ .select2-selection--multiple
611
+ .select2-selection__choice__remove {
612
+ color: #888;
613
+ cursor: pointer;
614
+ display: inline-block;
615
+ font-weight: bold;
616
+ margin-right: 2px;
617
+ }
618
+ .select2-container--classic
619
+ .select2-selection--multiple
620
+ .select2-selection__choice__remove:hover {
621
+ color: #555;
622
+ }
623
+
624
+ .select2-container--classic[dir='rtl']
625
+ .select2-selection--multiple
626
+ .select2-selection__choice {
627
+ float: right;
628
+ margin-left: 5px;
629
+ margin-right: auto;
630
+ }
631
+
632
+ .select2-container--classic[dir='rtl']
633
+ .select2-selection--multiple
634
+ .select2-selection__choice__remove {
635
+ margin-left: 2px;
636
+ margin-right: auto;
637
+ }
638
+
639
+ .select2-container--classic.select2-container--open
640
+ .select2-selection--multiple {
641
+ border: 1px solid #5897fb;
642
+ }
643
+
644
+ .select2-container--classic.select2-container--open.select2-container--above
645
+ .select2-selection--multiple {
646
+ border-top: none;
647
+ border-top-left-radius: 0;
648
+ border-top-right-radius: 0;
649
+ }
650
+
651
+ .select2-container--classic.select2-container--open.select2-container--below
652
+ .select2-selection--multiple {
653
+ border-bottom: none;
654
+ border-bottom-left-radius: 0;
655
+ border-bottom-right-radius: 0;
656
+ }
657
+
658
+ .select2-container--classic .select2-search--dropdown .select2-search__field {
659
+ border: 1px solid #aaa;
660
+ outline: 0;
661
+ }
662
+
663
+ .select2-container--classic .select2-search--inline .select2-search__field {
664
+ outline: 0;
665
+ box-shadow: none;
666
+ }
667
+
668
+ .select2-container--classic .select2-dropdown {
669
+ background-color: white;
670
+ border: 1px solid transparent;
671
+ }
672
+
673
+ .select2-container--classic .select2-dropdown--above {
674
+ border-bottom: none;
675
+ }
676
+
677
+ .select2-container--classic .select2-dropdown--below {
678
+ border-top: none;
679
+ }
680
+
681
+ .select2-container--classic .select2-results > .select2-results__options {
682
+ max-height: 200px;
683
+ overflow-y: auto;
684
+ }
685
+
686
+ .select2-container--classic .select2-results__option[role='group'] {
687
+ padding: 0;
688
+ }
689
+
690
+ .select2-container--classic .select2-results__option[aria-disabled='true'] {
691
+ color: grey;
692
+ }
693
+
694
+ .select2-container--classic
695
+ .select2-results__option--highlighted[aria-selected] {
696
+ background-color: #3875d7;
697
+ color: white;
698
+ }
699
+
700
+ .select2-container--classic .select2-results__group {
701
+ cursor: default;
702
+ display: block;
703
+ padding: 6px;
704
+ }
705
+
706
+ .select2-container--classic.select2-container--open .select2-dropdown {
707
+ border-color: #5897fb;
708
+ }