fnschool 20250109.80500.803__py3-none-any.whl → 20251011.80531.840__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 (276) hide show
  1. fnschoo1/__init__.py +52 -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/js/bootstrap.bundle.min.js +4223 -0
  71. fnschoo1/static/js/bootstrap.min.js +2919 -0
  72. fnschoo1/static/js/fnschool.js +84 -0
  73. fnschoo1/static/js/jquery.min.js +5413 -0
  74. fnschoo1/static/js/jquery.slim.min.js +4331 -0
  75. fnschoo1/static/js/popper.min.js +1306 -0
  76. fnschoo1/static_collected/admin/css/autocomplete.css +377 -0
  77. fnschoo1/static_collected/admin/css/base.css +1224 -0
  78. fnschoo1/static_collected/admin/css/changelists.css +334 -0
  79. fnschoo1/static_collected/admin/css/dark_mode.css +136 -0
  80. fnschoo1/static_collected/admin/css/dashboard.css +30 -0
  81. fnschoo1/static_collected/admin/css/forms.css +546 -0
  82. fnschoo1/static_collected/admin/css/login.css +62 -0
  83. fnschoo1/static_collected/admin/css/nav_sidebar.css +145 -0
  84. fnschoo1/static_collected/admin/css/responsive.css +1043 -0
  85. fnschoo1/static_collected/admin/css/responsive_rtl.css +84 -0
  86. fnschoo1/static_collected/admin/css/rtl.css +311 -0
  87. fnschoo1/static_collected/admin/css/vendor/select2/select2.css +708 -0
  88. fnschoo1/static_collected/admin/css/vendor/select2/select2.min.css +1 -0
  89. fnschoo1/static_collected/admin/css/widgets.css +639 -0
  90. fnschoo1/static_collected/admin/js/SelectBox.js +128 -0
  91. fnschoo1/static_collected/admin/js/SelectFilter2.js +503 -0
  92. fnschoo1/static_collected/admin/js/actions.js +232 -0
  93. fnschoo1/static_collected/admin/js/admin/DateTimeShortcuts.js +496 -0
  94. fnschoo1/static_collected/admin/js/admin/RelatedObjectLookups.js +276 -0
  95. fnschoo1/static_collected/admin/js/autocomplete.js +33 -0
  96. fnschoo1/static_collected/admin/js/calendar.js +251 -0
  97. fnschoo1/static_collected/admin/js/cancel.js +29 -0
  98. fnschoo1/static_collected/admin/js/change_form.js +21 -0
  99. fnschoo1/static_collected/admin/js/collapse.js +43 -0
  100. fnschoo1/static_collected/admin/js/core.js +174 -0
  101. fnschoo1/static_collected/admin/js/filters.js +37 -0
  102. fnschoo1/static_collected/admin/js/inlines.js +439 -0
  103. fnschoo1/static_collected/admin/js/jquery.init.js +8 -0
  104. fnschoo1/static_collected/admin/js/nav_sidebar.js +81 -0
  105. fnschoo1/static_collected/admin/js/popup_response.js +24 -0
  106. fnschoo1/static_collected/admin/js/prepopulate.js +43 -0
  107. fnschoo1/static_collected/admin/js/prepopulate_init.js +20 -0
  108. fnschoo1/static_collected/admin/js/theme.js +57 -0
  109. fnschoo1/static_collected/admin/js/urlify.js +529 -0
  110. fnschoo1/static_collected/admin/js/vendor/jquery/jquery.js +10913 -0
  111. fnschoo1/static_collected/admin/js/vendor/jquery/jquery.min.js +2 -0
  112. fnschoo1/static_collected/admin/js/vendor/select2/i18n/af.js +43 -0
  113. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ar.js +36 -0
  114. fnschoo1/static_collected/admin/js/vendor/select2/i18n/az.js +33 -0
  115. fnschoo1/static_collected/admin/js/vendor/select2/i18n/bg.js +38 -0
  116. fnschoo1/static_collected/admin/js/vendor/select2/i18n/bn.js +39 -0
  117. fnschoo1/static_collected/admin/js/vendor/select2/i18n/bs.js +48 -0
  118. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ca.js +41 -0
  119. fnschoo1/static_collected/admin/js/vendor/select2/i18n/cs.js +62 -0
  120. fnschoo1/static_collected/admin/js/vendor/select2/i18n/da.js +37 -0
  121. fnschoo1/static_collected/admin/js/vendor/select2/i18n/de.js +41 -0
  122. fnschoo1/static_collected/admin/js/vendor/select2/i18n/dsb.js +51 -0
  123. fnschoo1/static_collected/admin/js/vendor/select2/i18n/el.js +43 -0
  124. fnschoo1/static_collected/admin/js/vendor/select2/i18n/en.js +41 -0
  125. fnschoo1/static_collected/admin/js/vendor/select2/i18n/es.js +41 -0
  126. fnschoo1/static_collected/admin/js/vendor/select2/i18n/et.js +38 -0
  127. fnschoo1/static_collected/admin/js/vendor/select2/i18n/eu.js +45 -0
  128. fnschoo1/static_collected/admin/js/vendor/select2/i18n/fa.js +42 -0
  129. fnschoo1/static_collected/admin/js/vendor/select2/i18n/fi.js +42 -0
  130. fnschoo1/static_collected/admin/js/vendor/select2/i18n/fr.js +43 -0
  131. fnschoo1/static_collected/admin/js/vendor/select2/i18n/gl.js +40 -0
  132. fnschoo1/static_collected/admin/js/vendor/select2/i18n/he.js +44 -0
  133. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hi.js +40 -0
  134. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hr.js +45 -0
  135. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hsb.js +51 -0
  136. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hu.js +44 -0
  137. fnschoo1/static_collected/admin/js/vendor/select2/i18n/hy.js +40 -0
  138. fnschoo1/static_collected/admin/js/vendor/select2/i18n/id.js +36 -0
  139. fnschoo1/static_collected/admin/js/vendor/select2/i18n/is.js +37 -0
  140. fnschoo1/static_collected/admin/js/vendor/select2/i18n/it.js +43 -0
  141. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ja.js +40 -0
  142. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ka.js +42 -0
  143. fnschoo1/static_collected/admin/js/vendor/select2/i18n/km.js +38 -0
  144. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ko.js +42 -0
  145. fnschoo1/static_collected/admin/js/vendor/select2/i18n/lt.js +45 -0
  146. fnschoo1/static_collected/admin/js/vendor/select2/i18n/lv.js +41 -0
  147. fnschoo1/static_collected/admin/js/vendor/select2/i18n/mk.js +42 -0
  148. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ms.js +38 -0
  149. fnschoo1/static_collected/admin/js/vendor/select2/i18n/nb.js +38 -0
  150. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ne.js +44 -0
  151. fnschoo1/static_collected/admin/js/vendor/select2/i18n/nl.js +46 -0
  152. fnschoo1/static_collected/admin/js/vendor/select2/i18n/pl.js +43 -0
  153. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ps.js +41 -0
  154. fnschoo1/static_collected/admin/js/vendor/select2/i18n/pt-BR.js +39 -0
  155. fnschoo1/static_collected/admin/js/vendor/select2/i18n/pt.js +41 -0
  156. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ro.js +43 -0
  157. fnschoo1/static_collected/admin/js/vendor/select2/i18n/ru.js +48 -0
  158. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sk.js +61 -0
  159. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sl.js +41 -0
  160. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sq.js +43 -0
  161. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sr-Cyrl.js +48 -0
  162. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sr.js +48 -0
  163. fnschoo1/static_collected/admin/js/vendor/select2/i18n/sv.js +40 -0
  164. fnschoo1/static_collected/admin/js/vendor/select2/i18n/th.js +36 -0
  165. fnschoo1/static_collected/admin/js/vendor/select2/i18n/tk.js +36 -0
  166. fnschoo1/static_collected/admin/js/vendor/select2/i18n/tr.js +40 -0
  167. fnschoo1/static_collected/admin/js/vendor/select2/i18n/uk.js +59 -0
  168. fnschoo1/static_collected/admin/js/vendor/select2/i18n/vi.js +37 -0
  169. fnschoo1/static_collected/admin/js/vendor/select2/i18n/zh-CN.js +36 -0
  170. fnschoo1/static_collected/admin/js/vendor/select2/i18n/zh-TW.js +33 -0
  171. fnschoo1/static_collected/admin/js/vendor/select2/select2.full.js +7115 -0
  172. fnschoo1/static_collected/admin/js/vendor/select2/select2.full.min.js +2 -0
  173. fnschoo1/static_collected/admin/js/vendor/xregexp/xregexp.js +4993 -0
  174. fnschoo1/static_collected/admin/js/vendor/xregexp/xregexp.min.js +160 -0
  175. fnschoo1/static_collected/css/bootstrap.min.css +11776 -0
  176. fnschoo1/static_collected/css/fnschool.css +26 -0
  177. fnschoo1/static_collected/js/bootstrap.bundle.min.js +4223 -0
  178. fnschoo1/static_collected/js/bootstrap.min.js +2919 -0
  179. fnschoo1/static_collected/js/fnschool.js +84 -0
  180. fnschoo1/static_collected/js/jquery.min.js +5413 -0
  181. fnschoo1/static_collected/js/jquery.slim.min.js +4331 -0
  182. fnschoo1/static_collected/js/popper.min.js +1306 -0
  183. fnschoo1/templates/base/_css.html +1 -0
  184. fnschoo1/templates/base/_js.html +15 -0
  185. fnschoo1/templates/base/content.html +30 -0
  186. fnschoo1/templates/base/header_content_footer.html +35 -0
  187. fnschoo1/templates/close.html +11 -0
  188. fnschoo1/templates/home.html +51 -0
  189. fnschoo1/templates/includes/_footer.html +39 -0
  190. fnschoo1/templates/includes/_header.html +77 -0
  191. fnschoo1/templates/includes/_navigation.html +0 -0
  192. fnschoo1/templates/includes/_paginator.html +27 -0
  193. fnschoo1/templates/registration/logged_out.html +0 -0
  194. fnschoo1/templates/registration/login.html +0 -0
  195. fnschool-20251011.80531.840.dist-info/METADATA +179 -0
  196. fnschool-20251011.80531.840.dist-info/RECORD +207 -0
  197. {fnschool-20250109.80500.803.dist-info → fnschool-20251011.80531.840.dist-info}/WHEEL +1 -1
  198. fnschool-20251011.80531.840.dist-info/entry_points.txt +2 -0
  199. fnschool-20251011.80531.840.dist-info/top_level.txt +1 -0
  200. fnschool/__init__.py +0 -35
  201. fnschool/__main__.py +0 -16
  202. fnschool/app.py +0 -103
  203. fnschool/canteen/__init__.py +0 -3
  204. fnschool/canteen/__main__.py +0 -3
  205. fnschool/canteen/bill.py +0 -253
  206. fnschool/canteen/canteen.py +0 -1
  207. fnschool/canteen/canteen.toml +0 -61
  208. fnschool/canteen/config.py +0 -10
  209. fnschool/canteen/consuming.py +0 -53
  210. fnschool/canteen/currency.py +0 -17
  211. fnschool/canteen/data/bill.i18n.xlsx +0 -0
  212. fnschool/canteen/data/bill.xlsx +0 -0
  213. fnschool/canteen/data/consuming.xlsx +0 -0
  214. fnschool/canteen/data/purchase_list.xlsx +0 -0
  215. fnschool/canteen/entry.py +0 -40
  216. fnschool/canteen/food.py +0 -206
  217. fnschool/canteen/food_classes.py +0 -33
  218. fnschool/canteen/food_classes.toml +0 -64
  219. fnschool/canteen/operator.py +0 -91
  220. fnschool/canteen/path.py +0 -28
  221. fnschool/canteen/spreadsheet/base.py +0 -212
  222. fnschool/canteen/spreadsheet/consuming.py +0 -310
  223. fnschool/canteen/spreadsheet/consumingsum.py +0 -76
  224. fnschool/canteen/spreadsheet/cover.py +0 -64
  225. fnschool/canteen/spreadsheet/ctspreadsheet.py +0 -351
  226. fnschool/canteen/spreadsheet/food.py +0 -680
  227. fnschool/canteen/spreadsheet/inventory.py +0 -375
  228. fnschool/canteen/spreadsheet/merging.py +0 -340
  229. fnschool/canteen/spreadsheet/preconsuming.py +0 -329
  230. fnschool/canteen/spreadsheet/purchasing.py +0 -885
  231. fnschool/canteen/spreadsheet/purchasingsum.py +0 -110
  232. fnschool/canteen/spreadsheet/spreadsheet.py +0 -363
  233. fnschool/canteen/spreadsheet/translating.py +0 -12
  234. fnschool/canteen/spreadsheet/unwarehousing.py +0 -178
  235. fnschool/canteen/spreadsheet/unwarehousingsum.py +0 -11
  236. fnschool/canteen/spreadsheet/warehousing.py +0 -360
  237. fnschool/canteen/spreadsheet/workbook.py +0 -17
  238. fnschool/canteen/test.py +0 -97
  239. fnschool/config.py +0 -48
  240. fnschool/entry.py +0 -67
  241. fnschool/exam/__init__.py +0 -8
  242. fnschool/exam/data/parental_emails.xlsx +0 -0
  243. fnschool/exam/data/score.xlsx +0 -0
  244. fnschool/exam/email.py +0 -349
  245. fnschool/exam/entry.py +0 -36
  246. fnschool/exam/language.py +0 -19
  247. fnschool/exam/path.py +0 -24
  248. fnschool/exam/score.py +0 -1191
  249. fnschool/exam/subject.py +0 -20
  250. fnschool/exam/teacher.py +0 -54
  251. fnschool/external.py +0 -89
  252. fnschool/games/__init__.py +0 -1
  253. fnschool/games/__main__.py +0 -1
  254. fnschool/games/games.py +0 -1
  255. fnschool/inoutput.py +0 -97
  256. fnschool/language.py +0 -40
  257. fnschool/locales/en_US/LC_MESSAGES/fnschool.mo +0 -0
  258. fnschool/locales/zh_CN/LC_MESSAGES/fnschool.mo +0 -0
  259. fnschool/locales/zh_HK/LC_MESSAGES/fnschool.mo +0 -0
  260. fnschool/locales/zh_SG/LC_MESSAGES/fnschool.mo +0 -0
  261. fnschool/locales/zh_TW/LC_MESSAGES/fnschool.mo +0 -0
  262. fnschool/path.py +0 -45
  263. fnschool/test.py +0 -24
  264. fnschool/user.py +0 -262
  265. fnschool-20250109.80500.803.dist-info/METADATA +0 -342
  266. fnschool-20250109.80500.803.dist-info/RECORD +0 -78
  267. fnschool-20250109.80500.803.dist-info/entry_points.txt +0 -5
  268. fnschool-20250109.80500.803.dist-info/top_level.txt +0 -1
  269. /fnschool/canteen/consume.py → /fnschoo1/canteen/__init__.py +0 -0
  270. /fnschool/canteen/food_recount.toml → /fnschoo1/canteen/migrations/__init__.py +0 -0
  271. {fnschool/canteen/spreadsheet → fnschoo1/canteen/workbook}/__init__.py +0 -0
  272. /fnschool/exam/__main__.py → /fnschoo1/fnschool/templatetags/__init__.py +0 -0
  273. /fnschool/canteen/food_recounts.toml → /fnschoo1/profiles/__init__.py +0 -0
  274. /fnschool/canteen/warehouse.py → /fnschoo1/profiles/migrations/__init__.py +0 -0
  275. /fnschool/canteen/workbook.toml → /fnschoo1/templates/base/_content.html +0 -0
  276. {fnschool-20250109.80500.803.dist-info → fnschool-20251011.80531.840.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1 @@
1
+ .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
@@ -0,0 +1,639 @@
1
+ /* SELECTOR (FILTER INTERFACE) */
2
+
3
+ .selector {
4
+ width: 800px;
5
+ float: left;
6
+ display: flex;
7
+ }
8
+
9
+ .selector select {
10
+ width: 380px;
11
+ height: 17.2em;
12
+ flex: 1 0 auto;
13
+ }
14
+
15
+ .selector-available,
16
+ .selector-chosen {
17
+ width: 380px;
18
+ text-align: center;
19
+ margin-bottom: 5px;
20
+ display: flex;
21
+ flex-direction: column;
22
+ }
23
+
24
+ .selector-available h2,
25
+ .selector-chosen h2 {
26
+ border: 1px solid var(--border-color);
27
+ border-radius: 4px 4px 0 0;
28
+ }
29
+
30
+ .selector-chosen .list-footer-display {
31
+ border: 1px solid var(--border-color);
32
+ border-top: none;
33
+ border-radius: 0 0 4px 4px;
34
+ margin: 0 0 10px;
35
+ padding: 8px;
36
+ text-align: center;
37
+ background: var(--primary);
38
+ color: var(--header-link-color);
39
+ cursor: pointer;
40
+ }
41
+ .selector-chosen .list-footer-display__clear {
42
+ color: var(--breadcrumbs-fg);
43
+ }
44
+
45
+ .selector-chosen h2 {
46
+ background: var(--primary);
47
+ color: var(--header-link-color);
48
+ }
49
+
50
+ .selector .selector-available h2 {
51
+ background: var(--darkened-bg);
52
+ color: var(--body-quiet-color);
53
+ }
54
+
55
+ .selector .selector-filter {
56
+ border: 1px solid var(--border-color);
57
+ border-width: 0 1px;
58
+ padding: 8px;
59
+ color: var(--body-quiet-color);
60
+ font-size: 0.625rem;
61
+ margin: 0;
62
+ text-align: left;
63
+ }
64
+
65
+ .selector .selector-filter label,
66
+ .inline-group .aligned .selector .selector-filter label {
67
+ float: left;
68
+ margin: 7px 0 0;
69
+ width: 18px;
70
+ height: 18px;
71
+ padding: 0;
72
+ overflow: hidden;
73
+ line-height: 1;
74
+ min-width: auto;
75
+ }
76
+
77
+ .selector .selector-available input,
78
+ .selector .selector-chosen input {
79
+ width: 320px;
80
+ margin-left: 8px;
81
+ }
82
+
83
+ .selector ul.selector-chooser {
84
+ align-self: center;
85
+ width: 22px;
86
+ background-color: var(--selected-bg);
87
+ border-radius: 10px;
88
+ margin: 0 5px;
89
+ padding: 0;
90
+ transform: translateY(-17px);
91
+ }
92
+
93
+ .selector-chooser li {
94
+ margin: 0;
95
+ padding: 3px;
96
+ list-style-type: none;
97
+ }
98
+
99
+ .selector select {
100
+ padding: 0 10px;
101
+ margin: 0 0 10px;
102
+ border-radius: 0 0 4px 4px;
103
+ }
104
+ .selector .selector-chosen--with-filtered select {
105
+ margin: 0;
106
+ border-radius: 0;
107
+ height: 14em;
108
+ }
109
+
110
+ .selector
111
+ .selector-chosen:not(.selector-chosen--with-filtered)
112
+ .list-footer-display {
113
+ display: none;
114
+ }
115
+
116
+ .selector-add,
117
+ .selector-remove {
118
+ width: 16px;
119
+ height: 16px;
120
+ display: block;
121
+ text-indent: -3000px;
122
+ overflow: hidden;
123
+ cursor: default;
124
+ opacity: 0.55;
125
+ }
126
+
127
+ .active.selector-add,
128
+ .active.selector-remove {
129
+ opacity: 1;
130
+ }
131
+
132
+ .active.selector-add:hover,
133
+ .active.selector-remove:hover {
134
+ cursor: pointer;
135
+ }
136
+
137
+ .selector-add {
138
+ background: url(../img/selector-icons.svg) 0 -96px no-repeat;
139
+ }
140
+
141
+ .active.selector-add:focus,
142
+ .active.selector-add:hover {
143
+ background-position: 0 -112px;
144
+ }
145
+
146
+ .selector-remove {
147
+ background: url(../img/selector-icons.svg) 0 -64px no-repeat;
148
+ }
149
+
150
+ .active.selector-remove:focus,
151
+ .active.selector-remove:hover {
152
+ background-position: 0 -80px;
153
+ }
154
+
155
+ a.selector-chooseall,
156
+ a.selector-clearall {
157
+ display: inline-block;
158
+ height: 16px;
159
+ text-align: left;
160
+ margin: 1px auto 3px;
161
+ overflow: hidden;
162
+ font-weight: bold;
163
+ line-height: 16px;
164
+ color: var(--body-quiet-color);
165
+ text-decoration: none;
166
+ opacity: 0.55;
167
+ }
168
+
169
+ a.active.selector-chooseall:focus,
170
+ a.active.selector-clearall:focus,
171
+ a.active.selector-chooseall:hover,
172
+ a.active.selector-clearall:hover {
173
+ color: var(--link-fg);
174
+ }
175
+
176
+ a.active.selector-chooseall,
177
+ a.active.selector-clearall {
178
+ opacity: 1;
179
+ }
180
+
181
+ a.active.selector-chooseall:hover,
182
+ a.active.selector-clearall:hover {
183
+ cursor: pointer;
184
+ }
185
+
186
+ a.selector-chooseall {
187
+ padding: 0 18px 0 0;
188
+ background: url(../img/selector-icons.svg) right -160px no-repeat;
189
+ cursor: default;
190
+ }
191
+
192
+ a.active.selector-chooseall:focus,
193
+ a.active.selector-chooseall:hover {
194
+ background-position: 100% -176px;
195
+ }
196
+
197
+ a.selector-clearall {
198
+ padding: 0 0 0 18px;
199
+ background: url(../img/selector-icons.svg) 0 -128px no-repeat;
200
+ cursor: default;
201
+ }
202
+
203
+ a.active.selector-clearall:focus,
204
+ a.active.selector-clearall:hover {
205
+ background-position: 0 -144px;
206
+ }
207
+
208
+ /* STACKED SELECTORS */
209
+
210
+ .stacked {
211
+ float: left;
212
+ width: 490px;
213
+ display: block;
214
+ }
215
+
216
+ .stacked select {
217
+ width: 480px;
218
+ height: 10.1em;
219
+ }
220
+
221
+ .stacked .selector-available,
222
+ .stacked .selector-chosen {
223
+ width: 480px;
224
+ }
225
+
226
+ .stacked .selector-available {
227
+ margin-bottom: 0;
228
+ }
229
+
230
+ .stacked .selector-available input {
231
+ width: 422px;
232
+ }
233
+
234
+ .stacked ul.selector-chooser {
235
+ height: 22px;
236
+ width: 50px;
237
+ margin: 0 0 10px 40%;
238
+ background-color: #eee;
239
+ border-radius: 10px;
240
+ transform: none;
241
+ }
242
+
243
+ .stacked .selector-chooser li {
244
+ float: left;
245
+ padding: 3px 3px 3px 5px;
246
+ }
247
+
248
+ .stacked .selector-chooseall,
249
+ .stacked .selector-clearall {
250
+ display: none;
251
+ }
252
+
253
+ .stacked .selector-add {
254
+ background: url(../img/selector-icons.svg) 0 -32px no-repeat;
255
+ cursor: default;
256
+ }
257
+
258
+ .stacked .active.selector-add {
259
+ background-position: 0 -32px;
260
+ cursor: pointer;
261
+ }
262
+
263
+ .stacked .active.selector-add:focus,
264
+ .stacked .active.selector-add:hover {
265
+ background-position: 0 -48px;
266
+ cursor: pointer;
267
+ }
268
+
269
+ .stacked .selector-remove {
270
+ background: url(../img/selector-icons.svg) 0 0 no-repeat;
271
+ cursor: default;
272
+ }
273
+
274
+ .stacked .active.selector-remove {
275
+ background-position: 0 0px;
276
+ cursor: pointer;
277
+ }
278
+
279
+ .stacked .active.selector-remove:focus,
280
+ .stacked .active.selector-remove:hover {
281
+ background-position: 0 -16px;
282
+ cursor: pointer;
283
+ }
284
+
285
+ .selector .help-icon {
286
+ background: url(../img/icon-unknown.svg) 0 0 no-repeat;
287
+ display: inline-block;
288
+ vertical-align: middle;
289
+ margin: -2px 0 0 2px;
290
+ width: 13px;
291
+ height: 13px;
292
+ }
293
+
294
+ .selector .selector-chosen .help-icon {
295
+ background: url(../img/icon-unknown-alt.svg) 0 0 no-repeat;
296
+ }
297
+
298
+ .selector .search-label-icon {
299
+ background: url(../img/search.svg) 0 0 no-repeat;
300
+ display: inline-block;
301
+ height: 1.125rem;
302
+ width: 1.125rem;
303
+ }
304
+
305
+ /* DATE AND TIME */
306
+
307
+ p.datetime {
308
+ line-height: 20px;
309
+ margin: 0;
310
+ padding: 0;
311
+ color: var(--body-quiet-color);
312
+ font-weight: bold;
313
+ }
314
+
315
+ .datetime span {
316
+ white-space: nowrap;
317
+ font-weight: normal;
318
+ font-size: 0.6875rem;
319
+ color: var(--body-quiet-color);
320
+ }
321
+
322
+ .datetime input,
323
+ .form-row .datetime input.vDateField,
324
+ .form-row .datetime input.vTimeField {
325
+ margin-left: 5px;
326
+ margin-bottom: 4px;
327
+ }
328
+
329
+ table p.datetime {
330
+ font-size: 0.6875rem;
331
+ margin-left: 0;
332
+ padding-left: 0;
333
+ }
334
+
335
+ .datetimeshortcuts .clock-icon,
336
+ .datetimeshortcuts .date-icon {
337
+ position: relative;
338
+ display: inline-block;
339
+ vertical-align: middle;
340
+ height: 16px;
341
+ width: 16px;
342
+ overflow: hidden;
343
+ }
344
+
345
+ .datetimeshortcuts .clock-icon {
346
+ background: url(../img/icon-clock.svg) 0 0 no-repeat;
347
+ }
348
+
349
+ .datetimeshortcuts a:focus .clock-icon,
350
+ .datetimeshortcuts a:hover .clock-icon {
351
+ background-position: 0 -16px;
352
+ }
353
+
354
+ .datetimeshortcuts .date-icon {
355
+ background: url(../img/icon-calendar.svg) 0 0 no-repeat;
356
+ top: -1px;
357
+ }
358
+
359
+ .datetimeshortcuts a:focus .date-icon,
360
+ .datetimeshortcuts a:hover .date-icon {
361
+ background-position: 0 -16px;
362
+ }
363
+
364
+ .timezonewarning {
365
+ font-size: 0.6875rem;
366
+ color: var(--body-quiet-color);
367
+ }
368
+
369
+ /* URL */
370
+
371
+ p.url {
372
+ line-height: 20px;
373
+ margin: 0;
374
+ padding: 0;
375
+ color: var(--body-quiet-color);
376
+ font-size: 0.6875rem;
377
+ font-weight: bold;
378
+ }
379
+
380
+ .url a {
381
+ font-weight: normal;
382
+ }
383
+
384
+ /* FILE UPLOADS */
385
+
386
+ p.file-upload {
387
+ line-height: 20px;
388
+ margin: 0;
389
+ padding: 0;
390
+ color: var(--body-quiet-color);
391
+ font-size: 0.6875rem;
392
+ font-weight: bold;
393
+ }
394
+
395
+ .file-upload a {
396
+ font-weight: normal;
397
+ }
398
+
399
+ .file-upload .deletelink {
400
+ margin-left: 5px;
401
+ }
402
+
403
+ span.clearable-file-input label {
404
+ color: var(--body-fg);
405
+ font-size: 0.6875rem;
406
+ display: inline;
407
+ float: none;
408
+ }
409
+
410
+ /* CALENDARS & CLOCKS */
411
+
412
+ .calendarbox,
413
+ .clockbox {
414
+ margin: 5px auto;
415
+ font-size: 0.75rem;
416
+ width: 19em;
417
+ text-align: center;
418
+ background: var(--body-bg);
419
+ color: var(--body-fg);
420
+ border: 1px solid var(--hairline-color);
421
+ border-radius: 4px;
422
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
423
+ overflow: hidden;
424
+ position: relative;
425
+ }
426
+
427
+ .clockbox {
428
+ width: auto;
429
+ }
430
+
431
+ .calendar {
432
+ margin: 0;
433
+ padding: 0;
434
+ }
435
+
436
+ .calendar table {
437
+ margin: 0;
438
+ padding: 0;
439
+ border-collapse: collapse;
440
+ background: white;
441
+ width: 100%;
442
+ }
443
+
444
+ .calendar caption,
445
+ .calendarbox h2 {
446
+ margin: 0;
447
+ text-align: center;
448
+ border-top: none;
449
+ font-weight: 700;
450
+ font-size: 0.75rem;
451
+ color: #333;
452
+ background: var(--accent);
453
+ }
454
+
455
+ .calendar th {
456
+ padding: 8px 5px;
457
+ background: var(--darkened-bg);
458
+ border-bottom: 1px solid var(--border-color);
459
+ font-weight: 400;
460
+ font-size: 0.75rem;
461
+ text-align: center;
462
+ color: var(--body-quiet-color);
463
+ }
464
+
465
+ .calendar td {
466
+ font-weight: 400;
467
+ font-size: 0.75rem;
468
+ text-align: center;
469
+ padding: 0;
470
+ border-top: 1px solid var(--hairline-color);
471
+ border-bottom: none;
472
+ }
473
+
474
+ .calendar td.selected a {
475
+ background: var(--primary);
476
+ color: var(--button-fg);
477
+ }
478
+
479
+ .calendar td.nonday {
480
+ background: var(--darkened-bg);
481
+ }
482
+
483
+ .calendar td.today a {
484
+ font-weight: 700;
485
+ }
486
+
487
+ .calendar td a,
488
+ .timelist a {
489
+ display: block;
490
+ font-weight: 400;
491
+ padding: 6px;
492
+ text-decoration: none;
493
+ color: var(--body-quiet-color);
494
+ }
495
+
496
+ .calendar td a:focus,
497
+ .timelist a:focus,
498
+ .calendar td a:hover,
499
+ .timelist a:hover {
500
+ background: var(--primary);
501
+ color: white;
502
+ }
503
+
504
+ .calendar td a:active,
505
+ .timelist a:active {
506
+ background: var(--header-bg);
507
+ color: white;
508
+ }
509
+
510
+ .calendarnav {
511
+ font-size: 0.625rem;
512
+ text-align: center;
513
+ color: #ccc;
514
+ margin: 0;
515
+ padding: 1px 3px;
516
+ }
517
+
518
+ .calendarnav a:link,
519
+ #calendarnav a:visited,
520
+ #calendarnav a:focus,
521
+ #calendarnav a:hover {
522
+ color: var(--body-quiet-color);
523
+ }
524
+
525
+ .calendar-shortcuts {
526
+ background: var(--body-bg);
527
+ color: var(--body-quiet-color);
528
+ font-size: 0.6875rem;
529
+ line-height: 0.6875rem;
530
+ border-top: 1px solid var(--hairline-color);
531
+ padding: 8px 0;
532
+ }
533
+
534
+ .calendarbox .calendarnav-previous,
535
+ .calendarbox .calendarnav-next {
536
+ display: block;
537
+ position: absolute;
538
+ top: 8px;
539
+ width: 15px;
540
+ height: 15px;
541
+ text-indent: -9999px;
542
+ padding: 0;
543
+ }
544
+
545
+ .calendarnav-previous {
546
+ left: 10px;
547
+ background: url(../img/calendar-icons.svg) 0 0 no-repeat;
548
+ }
549
+
550
+ .calendarbox .calendarnav-previous:focus,
551
+ .calendarbox .calendarnav-previous:hover {
552
+ background-position: 0 -15px;
553
+ }
554
+
555
+ .calendarnav-next {
556
+ right: 10px;
557
+ background: url(../img/calendar-icons.svg) 0 -30px no-repeat;
558
+ }
559
+
560
+ .calendarbox .calendarnav-next:focus,
561
+ .calendarbox .calendarnav-next:hover {
562
+ background-position: 0 -45px;
563
+ }
564
+
565
+ .calendar-cancel {
566
+ margin: 0;
567
+ padding: 4px 0;
568
+ font-size: 0.75rem;
569
+ background: #eee;
570
+ border-top: 1px solid var(--border-color);
571
+ color: var(--body-fg);
572
+ }
573
+
574
+ .calendar-cancel:focus,
575
+ .calendar-cancel:hover {
576
+ background: #ddd;
577
+ }
578
+
579
+ .calendar-cancel a {
580
+ color: black;
581
+ display: block;
582
+ }
583
+
584
+ ul.timelist,
585
+ .timelist li {
586
+ list-style-type: none;
587
+ margin: 0;
588
+ padding: 0;
589
+ }
590
+
591
+ .timelist a {
592
+ padding: 2px;
593
+ }
594
+
595
+ /* EDIT INLINE */
596
+
597
+ .inline-deletelink {
598
+ float: right;
599
+ text-indent: -9999px;
600
+ background: url(../img/inline-delete.svg) 0 0 no-repeat;
601
+ width: 16px;
602
+ height: 16px;
603
+ border: 0px none;
604
+ }
605
+
606
+ .inline-deletelink:focus,
607
+ .inline-deletelink:hover {
608
+ cursor: pointer;
609
+ }
610
+
611
+ /* RELATED WIDGET WRAPPER */
612
+ .related-widget-wrapper {
613
+ float: left; /* display properly in form rows with multiple fields */
614
+ overflow: hidden; /* clear floated contents */
615
+ }
616
+
617
+ .related-widget-wrapper-link {
618
+ opacity: 0.3;
619
+ }
620
+
621
+ .related-widget-wrapper-link:link {
622
+ opacity: 0.8;
623
+ }
624
+
625
+ .related-widget-wrapper-link:link:focus,
626
+ .related-widget-wrapper-link:link:hover {
627
+ opacity: 1;
628
+ }
629
+
630
+ select + .related-widget-wrapper-link,
631
+ .related-widget-wrapper-link + .related-widget-wrapper-link {
632
+ margin-left: 7px;
633
+ }
634
+
635
+ /* GIS MAPS */
636
+ .dj_map {
637
+ width: 600px;
638
+ height: 400px;
639
+ }