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,84 @@
|
|
|
1
|
+
/* TABLETS */
|
|
2
|
+
|
|
3
|
+
@media (max-width: 1024px) {
|
|
4
|
+
[dir='rtl'] .colMS {
|
|
5
|
+
margin-right: 0;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
[dir='rtl'] #user-tools {
|
|
9
|
+
text-align: right;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
[dir='rtl'] #changelist .actions label {
|
|
13
|
+
padding-left: 10px;
|
|
14
|
+
padding-right: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
[dir='rtl'] #changelist .actions select {
|
|
18
|
+
margin-left: 0;
|
|
19
|
+
margin-right: 15px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
[dir='rtl'] .change-list .filtered .results,
|
|
23
|
+
[dir='rtl'] .change-list .filtered .paginator,
|
|
24
|
+
[dir='rtl'] .filtered #toolbar,
|
|
25
|
+
[dir='rtl'] .filtered div.xfull,
|
|
26
|
+
[dir='rtl'] .filtered .actions,
|
|
27
|
+
[dir='rtl'] #changelist-filter {
|
|
28
|
+
margin-left: 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
[dir='rtl'] .inline-group ul.tools a.add,
|
|
32
|
+
[dir='rtl'] .inline-group div.add-row a,
|
|
33
|
+
[dir='rtl'] .inline-group .tabular tr.add-row td a {
|
|
34
|
+
padding: 8px 26px 8px 10px;
|
|
35
|
+
background-position: calc(100% - 8px) 9px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
[dir='rtl'] .related-widget-wrapper-link + .selector {
|
|
39
|
+
margin-right: 0;
|
|
40
|
+
margin-left: 15px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
[dir='rtl'] .selector .selector-filter label {
|
|
44
|
+
margin-right: 0;
|
|
45
|
+
margin-left: 8px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
[dir='rtl'] .object-tools li {
|
|
49
|
+
float: right;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
[dir='rtl'] .object-tools li + li {
|
|
53
|
+
margin-left: 0;
|
|
54
|
+
margin-right: 15px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
[dir='rtl'] .dashboard .module table td a {
|
|
58
|
+
padding-left: 0;
|
|
59
|
+
padding-right: 16px;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* MOBILE */
|
|
64
|
+
|
|
65
|
+
@media (max-width: 767px) {
|
|
66
|
+
[dir='rtl'] .aligned .related-lookup,
|
|
67
|
+
[dir='rtl'] .aligned .datetimeshortcuts {
|
|
68
|
+
margin-left: 0;
|
|
69
|
+
margin-right: 15px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
[dir='rtl'] .aligned ul,
|
|
73
|
+
[dir='rtl'] form .aligned ul.errorlist {
|
|
74
|
+
margin-right: 0;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
[dir='rtl'] #changelist-filter {
|
|
78
|
+
margin-left: 0;
|
|
79
|
+
margin-right: 0;
|
|
80
|
+
}
|
|
81
|
+
[dir='rtl'] .aligned .vCheckboxLabel {
|
|
82
|
+
padding: 1px 5px 0 0;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
/* GLOBAL */
|
|
2
|
+
|
|
3
|
+
th {
|
|
4
|
+
text-align: right;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.module h2,
|
|
8
|
+
.module caption {
|
|
9
|
+
text-align: right;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.module ul,
|
|
13
|
+
.module ol {
|
|
14
|
+
margin-left: 0;
|
|
15
|
+
margin-right: 1.5em;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.viewlink,
|
|
19
|
+
.addlink,
|
|
20
|
+
.changelink {
|
|
21
|
+
padding-left: 0;
|
|
22
|
+
padding-right: 16px;
|
|
23
|
+
background-position: 100% 1px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.deletelink {
|
|
27
|
+
padding-left: 0;
|
|
28
|
+
padding-right: 16px;
|
|
29
|
+
background-position: 100% 1px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.object-tools {
|
|
33
|
+
float: left;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
thead th:first-child,
|
|
37
|
+
tfoot td:first-child {
|
|
38
|
+
border-left: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* LAYOUT */
|
|
42
|
+
|
|
43
|
+
#user-tools {
|
|
44
|
+
right: auto;
|
|
45
|
+
left: 0;
|
|
46
|
+
text-align: left;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
div.breadcrumbs {
|
|
50
|
+
text-align: right;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
#content-main {
|
|
54
|
+
float: right;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
#content-related {
|
|
58
|
+
float: left;
|
|
59
|
+
margin-left: -300px;
|
|
60
|
+
margin-right: auto;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.colMS {
|
|
64
|
+
margin-left: 300px;
|
|
65
|
+
margin-right: 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/* SORTABLE TABLES */
|
|
69
|
+
|
|
70
|
+
table thead th.sorted .sortoptions {
|
|
71
|
+
float: left;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
thead th.sorted .text {
|
|
75
|
+
padding-right: 0;
|
|
76
|
+
padding-left: 42px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* dashboard styles */
|
|
80
|
+
|
|
81
|
+
.dashboard .module table td a {
|
|
82
|
+
padding-left: 0.6em;
|
|
83
|
+
padding-right: 16px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* changelists styles */
|
|
87
|
+
|
|
88
|
+
.change-list .filtered table {
|
|
89
|
+
border-left: none;
|
|
90
|
+
border-right: 0px none;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
#changelist-filter {
|
|
94
|
+
border-left: none;
|
|
95
|
+
border-right: none;
|
|
96
|
+
margin-left: 0;
|
|
97
|
+
margin-right: 30px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
#changelist-filter li.selected {
|
|
101
|
+
border-left: none;
|
|
102
|
+
padding-left: 10px;
|
|
103
|
+
margin-left: 0;
|
|
104
|
+
border-right: 5px solid var(--hairline-color);
|
|
105
|
+
padding-right: 10px;
|
|
106
|
+
margin-right: -15px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
#changelist table tbody td:first-child,
|
|
110
|
+
#changelist table tbody th:first-child {
|
|
111
|
+
border-right: none;
|
|
112
|
+
border-left: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.paginator .end {
|
|
116
|
+
margin-left: 6px;
|
|
117
|
+
margin-right: 0;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.paginator input {
|
|
121
|
+
margin-left: 0;
|
|
122
|
+
margin-right: auto;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/* FORMS */
|
|
126
|
+
|
|
127
|
+
.aligned label {
|
|
128
|
+
padding: 0 0 3px 1em;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.submit-row a.deletelink {
|
|
132
|
+
margin-left: 0;
|
|
133
|
+
margin-right: auto;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.vDateField,
|
|
137
|
+
.vTimeField {
|
|
138
|
+
margin-left: 2px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.aligned .form-row input {
|
|
142
|
+
margin-left: 5px;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
form .aligned ul {
|
|
146
|
+
margin-right: 163px;
|
|
147
|
+
padding-right: 10px;
|
|
148
|
+
margin-left: 0;
|
|
149
|
+
padding-left: 0;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
form ul.inline li {
|
|
153
|
+
float: right;
|
|
154
|
+
padding-right: 0;
|
|
155
|
+
padding-left: 7px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
form .aligned p.help,
|
|
159
|
+
form .aligned div.help {
|
|
160
|
+
margin-right: 160px;
|
|
161
|
+
padding-right: 10px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
form div.help ul,
|
|
165
|
+
form .aligned .checkbox-row + .help,
|
|
166
|
+
form .aligned p.date div.help.timezonewarning,
|
|
167
|
+
form .aligned p.datetime div.help.timezonewarning,
|
|
168
|
+
form .aligned p.time div.help.timezonewarning {
|
|
169
|
+
margin-right: 0;
|
|
170
|
+
padding-right: 0;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
form .wide p.help,
|
|
174
|
+
form .wide div.help {
|
|
175
|
+
padding-left: 0;
|
|
176
|
+
padding-right: 50px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
form .wide p,
|
|
180
|
+
form .wide ul.errorlist,
|
|
181
|
+
form .wide input + p.help,
|
|
182
|
+
form .wide input + div.help {
|
|
183
|
+
margin-right: 200px;
|
|
184
|
+
margin-left: 0px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.submit-row {
|
|
188
|
+
text-align: right;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
fieldset .fieldBox {
|
|
192
|
+
margin-left: 20px;
|
|
193
|
+
margin-right: 0;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.errorlist li {
|
|
197
|
+
background-position: 100% 12px;
|
|
198
|
+
padding: 0;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.errornote {
|
|
202
|
+
background-position: 100% 12px;
|
|
203
|
+
padding: 10px 12px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/* WIDGETS */
|
|
207
|
+
|
|
208
|
+
.calendarnav-previous {
|
|
209
|
+
top: 0;
|
|
210
|
+
left: auto;
|
|
211
|
+
right: 10px;
|
|
212
|
+
background: url(../img/calendar-icons.svg) 0 -30px no-repeat;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.calendarbox .calendarnav-previous:focus,
|
|
216
|
+
.calendarbox .calendarnav-previous:hover {
|
|
217
|
+
background-position: 0 -45px;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.calendarnav-next {
|
|
221
|
+
top: 0;
|
|
222
|
+
right: auto;
|
|
223
|
+
left: 10px;
|
|
224
|
+
background: url(../img/calendar-icons.svg) 0 0 no-repeat;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.calendarbox .calendarnav-next:focus,
|
|
228
|
+
.calendarbox .calendarnav-next:hover {
|
|
229
|
+
background-position: 0 -15px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.calendar caption,
|
|
233
|
+
.calendarbox h2 {
|
|
234
|
+
text-align: center;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.selector {
|
|
238
|
+
float: right;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.selector .selector-filter {
|
|
242
|
+
text-align: right;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.selector-add {
|
|
246
|
+
background: url(../img/selector-icons.svg) 0 -64px no-repeat;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.active.selector-add:focus,
|
|
250
|
+
.active.selector-add:hover {
|
|
251
|
+
background-position: 0 -80px;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.selector-remove {
|
|
255
|
+
background: url(../img/selector-icons.svg) 0 -96px no-repeat;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.active.selector-remove:focus,
|
|
259
|
+
.active.selector-remove:hover {
|
|
260
|
+
background-position: 0 -112px;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
a.selector-chooseall {
|
|
264
|
+
background: url(../img/selector-icons.svg) right -128px no-repeat;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
a.active.selector-chooseall:focus,
|
|
268
|
+
a.active.selector-chooseall:hover {
|
|
269
|
+
background-position: 100% -144px;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
a.selector-clearall {
|
|
273
|
+
background: url(../img/selector-icons.svg) 0 -160px no-repeat;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
a.active.selector-clearall:focus,
|
|
277
|
+
a.active.selector-clearall:hover {
|
|
278
|
+
background-position: 0 -176px;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.inline-deletelink {
|
|
282
|
+
float: left;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
form .form-row p.datetime {
|
|
286
|
+
overflow: hidden;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.related-widget-wrapper {
|
|
290
|
+
float: right;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
/* MISC */
|
|
294
|
+
|
|
295
|
+
.inline-related h2,
|
|
296
|
+
.inline-group h2 {
|
|
297
|
+
text-align: right;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.inline-related h3 span.delete {
|
|
301
|
+
padding-right: 20px;
|
|
302
|
+
padding-left: inherit;
|
|
303
|
+
left: 10px;
|
|
304
|
+
right: inherit;
|
|
305
|
+
float: left;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.inline-related h3 span.delete label {
|
|
309
|
+
margin-left: inherit;
|
|
310
|
+
margin-right: 2px;
|
|
311
|
+
}
|