fnschool 20250109.80531.837__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.
- fnschoo1/__init__.py +52 -0
- fnschoo1/canteen/admin.py +3 -0
- fnschoo1/canteen/apps.py +6 -0
- fnschoo1/canteen/forms.py +84 -0
- fnschoo1/canteen/migrations/0001_initial.py +119 -0
- fnschoo1/canteen/migrations/0002_ingredient_is_disabled.py +20 -0
- fnschoo1/canteen/migrations/0003_consumption_is_disabled_alter_ingredient_is_disabled.py +23 -0
- fnschoo1/canteen/migrations/0004_alter_ingredient_name_category_and_more.py +66 -0
- fnschoo1/canteen/migrations/0005_alter_category_created_at_alter_category_name_and_more.py +41 -0
- fnschoo1/canteen/migrations/0006_category_is_disabled_alter_category_user_and_more.py +49 -0
- fnschoo1/canteen/migrations/0007_alter_consumption_amount_used_and_more.py +30 -0
- fnschoo1/canteen/migrations/0008_category_abbreviation_mealtype.py +67 -0
- fnschoo1/canteen/migrations/0009_alter_category_abbreviation_and_more.py +55 -0
- fnschoo1/canteen/migrations/0010_alter_consumption_options_alter_ingredient_options_and_more.py +215 -0
- fnschoo1/canteen/migrations/0011_category_pin_to_consumptions_top.py +23 -0
- fnschoo1/canteen/migrations/0012_alter_ingredient_storage_date.py +18 -0
- fnschoo1/canteen/models.py +179 -0
- fnschoo1/canteen/templates/canteen/category/create.html +17 -0
- fnschoo1/canteen/templates/canteen/category/delete.html +61 -0
- fnschoo1/canteen/templates/canteen/category/list.html +63 -0
- fnschoo1/canteen/templates/canteen/category/update.html +23 -0
- fnschoo1/canteen/templates/canteen/close.html +11 -0
- fnschoo1/canteen/templates/canteen/consumption/_create.html +19 -0
- fnschoo1/canteen/templates/canteen/consumption/create.html +456 -0
- fnschoo1/canteen/templates/canteen/ingredient/close.html +11 -0
- fnschoo1/canteen/templates/canteen/ingredient/create.html +19 -0
- fnschoo1/canteen/templates/canteen/ingredient/create_one.html +17 -0
- fnschoo1/canteen/templates/canteen/ingredient/delete.html +41 -0
- fnschoo1/canteen/templates/canteen/ingredient/list.html +128 -0
- fnschoo1/canteen/templates/canteen/ingredient/update.html +23 -0
- fnschoo1/canteen/templates/canteen/meal_type/create.html +17 -0
- fnschoo1/canteen/templates/canteen/meal_type/delete.html +56 -0
- fnschoo1/canteen/templates/canteen/meal_type/list.html +59 -0
- fnschoo1/canteen/templates/canteen/meal_type/update.html +23 -0
- fnschoo1/canteen/tests.py +3 -0
- fnschoo1/canteen/urls.py +116 -0
- fnschoo1/canteen/views.py +814 -0
- fnschoo1/canteen/workbook/generate.py +2098 -0
- fnschoo1/db.sqlite3 +0 -0
- fnschoo1/fnschool/__init__.py +13 -0
- fnschoo1/fnschool/asgi.py +16 -0
- fnschoo1/fnschool/settings.py +167 -0
- fnschoo1/fnschool/templatetags/fnschool_tags.py +27 -0
- fnschoo1/fnschool/urls.py +30 -0
- fnschoo1/fnschool/views.py +9 -0
- fnschoo1/fnschool/wsgi.py +16 -0
- fnschoo1/locale/en/LC_MESSAGES/django.mo +0 -0
- fnschoo1/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- fnschoo1/manage.py +25 -0
- fnschoo1/profiles/admin.py +27 -0
- fnschoo1/profiles/apps.py +12 -0
- fnschoo1/profiles/forms.py +67 -0
- fnschoo1/profiles/migrations/0001_initial.py +192 -0
- fnschoo1/profiles/migrations/0002_alter_profile_bio.py +20 -0
- fnschoo1/profiles/migrations/0003_alter_profile_options_alter_profile_address_and_more.py +67 -0
- fnschoo1/profiles/migrations/0004_profile_gender.py +26 -0
- fnschoo1/profiles/migrations/0005_alter_profile_gender.py +23 -0
- fnschoo1/profiles/models.py +60 -0
- fnschoo1/profiles/signals.py +20 -0
- fnschoo1/profiles/templates/profiles/create.html +16 -0
- fnschoo1/profiles/templates/profiles/detail.html +14 -0
- fnschoo1/profiles/templates/profiles/edit.html +12 -0
- fnschoo1/profiles/templates/profiles/log_in.html +20 -0
- fnschoo1/profiles/templates/profiles/log_out.html +12 -0
- fnschoo1/profiles/tests.py +3 -0
- fnschoo1/profiles/urls.py +15 -0
- fnschoo1/profiles/views.py +63 -0
- fnschoo1/static/css/bootstrap.min.css +11776 -0
- fnschoo1/static/css/fnschool.css +26 -0
- fnschoo1/static/js/bootstrap.bundle.min.js +4223 -0
- fnschoo1/static/js/bootstrap.min.js +2919 -0
- fnschoo1/static/js/fnschool.js +84 -0
- fnschoo1/static/js/jquery.min.js +5413 -0
- fnschoo1/static/js/jquery.slim.min.js +4331 -0
- fnschoo1/static/js/popper.min.js +1306 -0
- fnschoo1/static_collected/admin/css/autocomplete.css +377 -0
- fnschoo1/static_collected/admin/css/base.css +1224 -0
- fnschoo1/static_collected/admin/css/changelists.css +334 -0
- fnschoo1/static_collected/admin/css/dark_mode.css +136 -0
- fnschoo1/static_collected/admin/css/dashboard.css +30 -0
- fnschoo1/static_collected/admin/css/forms.css +546 -0
- fnschoo1/static_collected/admin/css/login.css +62 -0
- fnschoo1/static_collected/admin/css/nav_sidebar.css +145 -0
- fnschoo1/static_collected/admin/css/responsive.css +1043 -0
- fnschoo1/static_collected/admin/css/responsive_rtl.css +84 -0
- fnschoo1/static_collected/admin/css/rtl.css +311 -0
- fnschoo1/static_collected/admin/css/vendor/select2/select2.css +708 -0
- fnschoo1/static_collected/admin/css/vendor/select2/select2.min.css +1 -0
- fnschoo1/static_collected/admin/css/widgets.css +639 -0
- fnschoo1/static_collected/admin/js/SelectBox.js +128 -0
- fnschoo1/static_collected/admin/js/SelectFilter2.js +503 -0
- fnschoo1/static_collected/admin/js/actions.js +232 -0
- fnschoo1/static_collected/admin/js/admin/DateTimeShortcuts.js +496 -0
- fnschoo1/static_collected/admin/js/admin/RelatedObjectLookups.js +276 -0
- fnschoo1/static_collected/admin/js/autocomplete.js +33 -0
- fnschoo1/static_collected/admin/js/calendar.js +251 -0
- fnschoo1/static_collected/admin/js/cancel.js +29 -0
- fnschoo1/static_collected/admin/js/change_form.js +21 -0
- fnschoo1/static_collected/admin/js/collapse.js +43 -0
- fnschoo1/static_collected/admin/js/core.js +174 -0
- fnschoo1/static_collected/admin/js/filters.js +37 -0
- fnschoo1/static_collected/admin/js/inlines.js +439 -0
- fnschoo1/static_collected/admin/js/jquery.init.js +8 -0
- fnschoo1/static_collected/admin/js/nav_sidebar.js +81 -0
- fnschoo1/static_collected/admin/js/popup_response.js +24 -0
- fnschoo1/static_collected/admin/js/prepopulate.js +43 -0
- fnschoo1/static_collected/admin/js/prepopulate_init.js +20 -0
- fnschoo1/static_collected/admin/js/theme.js +57 -0
- fnschoo1/static_collected/admin/js/urlify.js +529 -0
- fnschoo1/static_collected/admin/js/vendor/jquery/jquery.js +10913 -0
- fnschoo1/static_collected/admin/js/vendor/jquery/jquery.min.js +2 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/af.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ar.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/az.js +33 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/bg.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/bn.js +39 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/bs.js +48 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ca.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/cs.js +62 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/da.js +37 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/de.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/dsb.js +51 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/el.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/en.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/es.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/et.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/eu.js +45 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/fa.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/fi.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/fr.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/gl.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/he.js +44 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hi.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hr.js +45 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hsb.js +51 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hu.js +44 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hy.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/id.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/is.js +37 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/it.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ja.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ka.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/km.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ko.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/lt.js +45 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/lv.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/mk.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ms.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/nb.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ne.js +44 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/nl.js +46 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/pl.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ps.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/pt-BR.js +39 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/pt.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ro.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ru.js +48 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sk.js +61 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sl.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sq.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sr-Cyrl.js +48 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sr.js +48 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sv.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/th.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/tk.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/tr.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/uk.js +59 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/vi.js +37 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/zh-CN.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/zh-TW.js +33 -0
- fnschoo1/static_collected/admin/js/vendor/select2/select2.full.js +7115 -0
- fnschoo1/static_collected/admin/js/vendor/select2/select2.full.min.js +2 -0
- fnschoo1/static_collected/admin/js/vendor/xregexp/xregexp.js +4993 -0
- fnschoo1/static_collected/admin/js/vendor/xregexp/xregexp.min.js +160 -0
- fnschoo1/static_collected/css/bootstrap.min.css +11776 -0
- fnschoo1/static_collected/css/fnschool.css +26 -0
- fnschoo1/static_collected/js/bootstrap.bundle.min.js +4223 -0
- fnschoo1/static_collected/js/bootstrap.min.js +2919 -0
- fnschoo1/static_collected/js/fnschool.js +84 -0
- fnschoo1/static_collected/js/jquery.min.js +5413 -0
- fnschoo1/static_collected/js/jquery.slim.min.js +4331 -0
- fnschoo1/static_collected/js/popper.min.js +1306 -0
- fnschoo1/templates/base/_css.html +1 -0
- fnschoo1/templates/base/_js.html +15 -0
- fnschoo1/templates/base/content.html +30 -0
- fnschoo1/templates/base/header_content_footer.html +35 -0
- fnschoo1/templates/close.html +11 -0
- fnschoo1/templates/home.html +51 -0
- fnschoo1/templates/includes/_footer.html +39 -0
- fnschoo1/templates/includes/_header.html +77 -0
- fnschoo1/templates/includes/_navigation.html +0 -0
- fnschoo1/templates/includes/_paginator.html +27 -0
- fnschoo1/templates/registration/logged_out.html +0 -0
- fnschoo1/templates/registration/login.html +0 -0
- fnschool-20251011.80531.840.dist-info/METADATA +179 -0
- fnschool-20251011.80531.840.dist-info/RECORD +207 -0
- {fnschool-20250109.80531.837.dist-info → fnschool-20251011.80531.840.dist-info}/WHEEL +1 -1
- fnschool-20251011.80531.840.dist-info/entry_points.txt +2 -0
- fnschool-20251011.80531.840.dist-info/top_level.txt +1 -0
- fnschool/__init__.py +0 -35
- fnschool/__main__.py +0 -16
- fnschool/app.py +0 -103
- fnschool/canteen/__init__.py +0 -3
- fnschool/canteen/__main__.py +0 -3
- fnschool/canteen/bill.py +0 -253
- fnschool/canteen/canteen.py +0 -1
- fnschool/canteen/canteen.toml +0 -61
- fnschool/canteen/config.py +0 -10
- fnschool/canteen/consuming.py +0 -53
- fnschool/canteen/currency.py +0 -17
- fnschool/canteen/data/bill.i18n.xlsx +0 -0
- fnschool/canteen/data/bill.xlsx +0 -0
- fnschool/canteen/data/consuming.xlsx +0 -0
- fnschool/canteen/data/purchase_list.xlsx +0 -0
- fnschool/canteen/entry.py +0 -40
- fnschool/canteen/food.py +0 -206
- fnschool/canteen/food_classes.py +0 -33
- fnschool/canteen/food_classes.toml +0 -64
- fnschool/canteen/operator.py +0 -91
- fnschool/canteen/path.py +0 -28
- fnschool/canteen/spreadsheet/base.py +0 -213
- fnschool/canteen/spreadsheet/consuming.py +0 -310
- fnschool/canteen/spreadsheet/consumingsum.py +0 -76
- fnschool/canteen/spreadsheet/cover.py +0 -64
- fnschool/canteen/spreadsheet/ctspreadsheet.py +0 -351
- fnschool/canteen/spreadsheet/food.py +0 -680
- fnschool/canteen/spreadsheet/inventory.py +0 -375
- fnschool/canteen/spreadsheet/merging.py +0 -340
- fnschool/canteen/spreadsheet/preconsuming.py +0 -329
- fnschool/canteen/spreadsheet/purchasing.py +0 -885
- fnschool/canteen/spreadsheet/purchasingsum.py +0 -110
- fnschool/canteen/spreadsheet/spreadsheet.py +0 -363
- fnschool/canteen/spreadsheet/translating.py +0 -12
- fnschool/canteen/spreadsheet/unwarehousing.py +0 -178
- fnschool/canteen/spreadsheet/unwarehousingsum.py +0 -11
- fnschool/canteen/spreadsheet/warehousing.py +0 -360
- fnschool/canteen/spreadsheet/workbook.py +0 -17
- fnschool/canteen/test.py +0 -97
- fnschool/config.py +0 -48
- fnschool/entry.py +0 -67
- fnschool/exam/__init__.py +0 -8
- fnschool/exam/data/parental_emails.xlsx +0 -0
- fnschool/exam/data/score.xlsx +0 -0
- fnschool/exam/email.py +0 -349
- fnschool/exam/entry.py +0 -36
- fnschool/exam/language.py +0 -19
- fnschool/exam/path.py +0 -24
- fnschool/exam/score.py +0 -1191
- fnschool/exam/subject.py +0 -20
- fnschool/exam/teacher.py +0 -54
- fnschool/external.py +0 -89
- fnschool/games/__init__.py +0 -1
- fnschool/games/__main__.py +0 -1
- fnschool/games/games.py +0 -1
- fnschool/inoutput.py +0 -97
- fnschool/language.py +0 -40
- fnschool/locales/en_US/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_CN/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_HK/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_SG/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_TW/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/path.py +0 -45
- fnschool/test.py +0 -24
- fnschool/user.py +0 -262
- fnschool-20250109.80531.837.dist-info/METADATA +0 -342
- fnschool-20250109.80531.837.dist-info/RECORD +0 -78
- fnschool-20250109.80531.837.dist-info/entry_points.txt +0 -5
- fnschool-20250109.80531.837.dist-info/top_level.txt +0 -1
- /fnschool/canteen/consume.py → /fnschoo1/canteen/__init__.py +0 -0
- /fnschool/canteen/food_recount.toml → /fnschoo1/canteen/migrations/__init__.py +0 -0
- {fnschool/canteen/spreadsheet → fnschoo1/canteen/workbook}/__init__.py +0 -0
- /fnschool/exam/__main__.py → /fnschoo1/fnschool/templatetags/__init__.py +0 -0
- /fnschool/canteen/food_recounts.toml → /fnschoo1/profiles/__init__.py +0 -0
- /fnschool/canteen/warehouse.py → /fnschoo1/profiles/migrations/__init__.py +0 -0
- /fnschool/canteen/workbook.toml → /fnschoo1/templates/base/_content.html +0 -0
- {fnschool-20250109.80531.837.dist-info → fnschool-20251011.80531.840.dist-info/licenses}/LICENSE +0 -0
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
select.admin-autocomplete {
|
|
2
|
+
width: 20em;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.select2-container--admin-autocomplete.select2-container {
|
|
6
|
+
min-height: 30px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.select2-container--admin-autocomplete .select2-selection--single,
|
|
10
|
+
.select2-container--admin-autocomplete .select2-selection--multiple {
|
|
11
|
+
min-height: 30px;
|
|
12
|
+
padding: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.select2-container--admin-autocomplete.select2-container--focus
|
|
16
|
+
.select2-selection,
|
|
17
|
+
.select2-container--admin-autocomplete.select2-container--open
|
|
18
|
+
.select2-selection {
|
|
19
|
+
border-color: var(--body-quiet-color);
|
|
20
|
+
min-height: 30px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.select2-container--admin-autocomplete.select2-container--focus
|
|
24
|
+
.select2-selection.select2-selection--single,
|
|
25
|
+
.select2-container--admin-autocomplete.select2-container--open
|
|
26
|
+
.select2-selection.select2-selection--single {
|
|
27
|
+
padding: 0;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.select2-container--admin-autocomplete.select2-container--focus
|
|
31
|
+
.select2-selection.select2-selection--multiple,
|
|
32
|
+
.select2-container--admin-autocomplete.select2-container--open
|
|
33
|
+
.select2-selection.select2-selection--multiple {
|
|
34
|
+
padding: 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.select2-container--admin-autocomplete .select2-selection--single {
|
|
38
|
+
background-color: var(--body-bg);
|
|
39
|
+
border: 1px solid var(--border-color);
|
|
40
|
+
border-radius: 4px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.select2-container--admin-autocomplete
|
|
44
|
+
.select2-selection--single
|
|
45
|
+
.select2-selection__rendered {
|
|
46
|
+
color: var(--body-fg);
|
|
47
|
+
line-height: 30px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.select2-container--admin-autocomplete
|
|
51
|
+
.select2-selection--single
|
|
52
|
+
.select2-selection__clear {
|
|
53
|
+
cursor: pointer;
|
|
54
|
+
float: right;
|
|
55
|
+
font-weight: bold;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.select2-container--admin-autocomplete
|
|
59
|
+
.select2-selection--single
|
|
60
|
+
.select2-selection__placeholder {
|
|
61
|
+
color: var(--body-quiet-color);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.select2-container--admin-autocomplete
|
|
65
|
+
.select2-selection--single
|
|
66
|
+
.select2-selection__arrow {
|
|
67
|
+
height: 26px;
|
|
68
|
+
position: absolute;
|
|
69
|
+
top: 1px;
|
|
70
|
+
right: 1px;
|
|
71
|
+
width: 20px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.select2-container--admin-autocomplete
|
|
75
|
+
.select2-selection--single
|
|
76
|
+
.select2-selection__arrow
|
|
77
|
+
b {
|
|
78
|
+
border-color: #888 transparent transparent transparent;
|
|
79
|
+
border-style: solid;
|
|
80
|
+
border-width: 5px 4px 0 4px;
|
|
81
|
+
height: 0;
|
|
82
|
+
left: 50%;
|
|
83
|
+
margin-left: -4px;
|
|
84
|
+
margin-top: -2px;
|
|
85
|
+
position: absolute;
|
|
86
|
+
top: 50%;
|
|
87
|
+
width: 0;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.select2-container--admin-autocomplete[dir='rtl']
|
|
91
|
+
.select2-selection--single
|
|
92
|
+
.select2-selection__clear {
|
|
93
|
+
float: left;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.select2-container--admin-autocomplete[dir='rtl']
|
|
97
|
+
.select2-selection--single
|
|
98
|
+
.select2-selection__arrow {
|
|
99
|
+
left: 1px;
|
|
100
|
+
right: auto;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.select2-container--admin-autocomplete.select2-container--disabled
|
|
104
|
+
.select2-selection--single {
|
|
105
|
+
background-color: var(--darkened-bg);
|
|
106
|
+
cursor: default;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.select2-container--admin-autocomplete.select2-container--disabled
|
|
110
|
+
.select2-selection--single
|
|
111
|
+
.select2-selection__clear {
|
|
112
|
+
display: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.select2-container--admin-autocomplete.select2-container--open
|
|
116
|
+
.select2-selection--single
|
|
117
|
+
.select2-selection__arrow
|
|
118
|
+
b {
|
|
119
|
+
border-color: transparent transparent #888 transparent;
|
|
120
|
+
border-width: 0 4px 5px 4px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.select2-container--admin-autocomplete .select2-selection--multiple {
|
|
124
|
+
background-color: var(--body-bg);
|
|
125
|
+
border: 1px solid var(--border-color);
|
|
126
|
+
border-radius: 4px;
|
|
127
|
+
cursor: text;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.select2-container--admin-autocomplete
|
|
131
|
+
.select2-selection--multiple
|
|
132
|
+
.select2-selection__rendered {
|
|
133
|
+
box-sizing: border-box;
|
|
134
|
+
list-style: none;
|
|
135
|
+
margin: 0;
|
|
136
|
+
padding: 0 10px 5px 5px;
|
|
137
|
+
width: 100%;
|
|
138
|
+
display: flex;
|
|
139
|
+
flex-wrap: wrap;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.select2-container--admin-autocomplete
|
|
143
|
+
.select2-selection--multiple
|
|
144
|
+
.select2-selection__rendered
|
|
145
|
+
li {
|
|
146
|
+
list-style: none;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.select2-container--admin-autocomplete
|
|
150
|
+
.select2-selection--multiple
|
|
151
|
+
.select2-selection__placeholder {
|
|
152
|
+
color: var(--body-quiet-color);
|
|
153
|
+
margin-top: 5px;
|
|
154
|
+
float: left;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.select2-container--admin-autocomplete
|
|
158
|
+
.select2-selection--multiple
|
|
159
|
+
.select2-selection__clear {
|
|
160
|
+
cursor: pointer;
|
|
161
|
+
float: right;
|
|
162
|
+
font-weight: bold;
|
|
163
|
+
margin: 5px;
|
|
164
|
+
position: absolute;
|
|
165
|
+
right: 0;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.select2-container--admin-autocomplete
|
|
169
|
+
.select2-selection--multiple
|
|
170
|
+
.select2-selection__choice {
|
|
171
|
+
background-color: var(--darkened-bg);
|
|
172
|
+
border: 1px solid var(--border-color);
|
|
173
|
+
border-radius: 4px;
|
|
174
|
+
cursor: default;
|
|
175
|
+
float: left;
|
|
176
|
+
margin-right: 5px;
|
|
177
|
+
margin-top: 5px;
|
|
178
|
+
padding: 0 5px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.select2-container--admin-autocomplete
|
|
182
|
+
.select2-selection--multiple
|
|
183
|
+
.select2-selection__choice__remove {
|
|
184
|
+
color: var(--body-quiet-color);
|
|
185
|
+
cursor: pointer;
|
|
186
|
+
display: inline-block;
|
|
187
|
+
font-weight: bold;
|
|
188
|
+
margin-right: 2px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.select2-container--admin-autocomplete
|
|
192
|
+
.select2-selection--multiple
|
|
193
|
+
.select2-selection__choice__remove:hover {
|
|
194
|
+
color: var(--body-fg);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.select2-container--admin-autocomplete[dir='rtl']
|
|
198
|
+
.select2-selection--multiple
|
|
199
|
+
.select2-selection__choice,
|
|
200
|
+
.select2-container--admin-autocomplete[dir='rtl']
|
|
201
|
+
.select2-selection--multiple
|
|
202
|
+
.select2-selection__placeholder,
|
|
203
|
+
.select2-container--admin-autocomplete[dir='rtl']
|
|
204
|
+
.select2-selection--multiple
|
|
205
|
+
.select2-search--inline {
|
|
206
|
+
float: right;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.select2-container--admin-autocomplete[dir='rtl']
|
|
210
|
+
.select2-selection--multiple
|
|
211
|
+
.select2-selection__choice {
|
|
212
|
+
margin-left: 5px;
|
|
213
|
+
margin-right: auto;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.select2-container--admin-autocomplete[dir='rtl']
|
|
217
|
+
.select2-selection--multiple
|
|
218
|
+
.select2-selection__choice__remove {
|
|
219
|
+
margin-left: 2px;
|
|
220
|
+
margin-right: auto;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.select2-container--admin-autocomplete.select2-container--focus
|
|
224
|
+
.select2-selection--multiple {
|
|
225
|
+
border: solid var(--body-quiet-color) 1px;
|
|
226
|
+
outline: 0;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.select2-container--admin-autocomplete.select2-container--disabled
|
|
230
|
+
.select2-selection--multiple {
|
|
231
|
+
background-color: var(--darkened-bg);
|
|
232
|
+
cursor: default;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.select2-container--admin-autocomplete.select2-container--disabled
|
|
236
|
+
.select2-selection__choice__remove {
|
|
237
|
+
display: none;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.select2-container--admin-autocomplete.select2-container--open.select2-container--above
|
|
241
|
+
.select2-selection--single,
|
|
242
|
+
.select2-container--admin-autocomplete.select2-container--open.select2-container--above
|
|
243
|
+
.select2-selection--multiple {
|
|
244
|
+
border-top-left-radius: 0;
|
|
245
|
+
border-top-right-radius: 0;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.select2-container--admin-autocomplete.select2-container--open.select2-container--below
|
|
249
|
+
.select2-selection--single,
|
|
250
|
+
.select2-container--admin-autocomplete.select2-container--open.select2-container--below
|
|
251
|
+
.select2-selection--multiple {
|
|
252
|
+
border-bottom-left-radius: 0;
|
|
253
|
+
border-bottom-right-radius: 0;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.select2-container--admin-autocomplete .select2-search--dropdown {
|
|
257
|
+
background: var(--darkened-bg);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.select2-container--admin-autocomplete
|
|
261
|
+
.select2-search--dropdown
|
|
262
|
+
.select2-search__field {
|
|
263
|
+
background: var(--body-bg);
|
|
264
|
+
color: var(--body-fg);
|
|
265
|
+
border: 1px solid var(--border-color);
|
|
266
|
+
border-radius: 4px;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.select2-container--admin-autocomplete
|
|
270
|
+
.select2-search--inline
|
|
271
|
+
.select2-search__field {
|
|
272
|
+
background: transparent;
|
|
273
|
+
color: var(--body-fg);
|
|
274
|
+
border: none;
|
|
275
|
+
outline: 0;
|
|
276
|
+
box-shadow: none;
|
|
277
|
+
-webkit-appearance: textfield;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.select2-container--admin-autocomplete
|
|
281
|
+
.select2-results
|
|
282
|
+
> .select2-results__options {
|
|
283
|
+
max-height: 200px;
|
|
284
|
+
overflow-y: auto;
|
|
285
|
+
color: var(--body-fg);
|
|
286
|
+
background: var(--body-bg);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.select2-container--admin-autocomplete .select2-results__option[role='group'] {
|
|
290
|
+
padding: 0;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.select2-container--admin-autocomplete
|
|
294
|
+
.select2-results__option[aria-disabled='true'] {
|
|
295
|
+
color: var(--body-quiet-color);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.select2-container--admin-autocomplete
|
|
299
|
+
.select2-results__option[aria-selected='true'] {
|
|
300
|
+
background-color: var(--selected-bg);
|
|
301
|
+
color: var(--body-fg);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.select2-container--admin-autocomplete
|
|
305
|
+
.select2-results__option
|
|
306
|
+
.select2-results__option {
|
|
307
|
+
padding-left: 1em;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.select2-container--admin-autocomplete
|
|
311
|
+
.select2-results__option
|
|
312
|
+
.select2-results__option
|
|
313
|
+
.select2-results__group {
|
|
314
|
+
padding-left: 0;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.select2-container--admin-autocomplete
|
|
318
|
+
.select2-results__option
|
|
319
|
+
.select2-results__option
|
|
320
|
+
.select2-results__option {
|
|
321
|
+
margin-left: -1em;
|
|
322
|
+
padding-left: 2em;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.select2-container--admin-autocomplete
|
|
326
|
+
.select2-results__option
|
|
327
|
+
.select2-results__option
|
|
328
|
+
.select2-results__option
|
|
329
|
+
.select2-results__option {
|
|
330
|
+
margin-left: -2em;
|
|
331
|
+
padding-left: 3em;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.select2-container--admin-autocomplete
|
|
335
|
+
.select2-results__option
|
|
336
|
+
.select2-results__option
|
|
337
|
+
.select2-results__option
|
|
338
|
+
.select2-results__option
|
|
339
|
+
.select2-results__option {
|
|
340
|
+
margin-left: -3em;
|
|
341
|
+
padding-left: 4em;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.select2-container--admin-autocomplete
|
|
345
|
+
.select2-results__option
|
|
346
|
+
.select2-results__option
|
|
347
|
+
.select2-results__option
|
|
348
|
+
.select2-results__option
|
|
349
|
+
.select2-results__option
|
|
350
|
+
.select2-results__option {
|
|
351
|
+
margin-left: -4em;
|
|
352
|
+
padding-left: 5em;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.select2-container--admin-autocomplete
|
|
356
|
+
.select2-results__option
|
|
357
|
+
.select2-results__option
|
|
358
|
+
.select2-results__option
|
|
359
|
+
.select2-results__option
|
|
360
|
+
.select2-results__option
|
|
361
|
+
.select2-results__option
|
|
362
|
+
.select2-results__option {
|
|
363
|
+
margin-left: -5em;
|
|
364
|
+
padding-left: 6em;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.select2-container--admin-autocomplete
|
|
368
|
+
.select2-results__option--highlighted[aria-selected] {
|
|
369
|
+
background-color: var(--primary);
|
|
370
|
+
color: var(--primary-fg);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.select2-container--admin-autocomplete .select2-results__group {
|
|
374
|
+
cursor: default;
|
|
375
|
+
display: block;
|
|
376
|
+
padding: 6px;
|
|
377
|
+
}
|