libreqda 1.2.0__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.
Files changed (255) hide show
  1. CHANGELOG.md +481 -0
  2. libreqda-1.2.0.dist-info/LICENSE.txt +28 -0
  3. libreqda-1.2.0.dist-info/METADATA +131 -0
  4. libreqda-1.2.0.dist-info/RECORD +255 -0
  5. libreqda-1.2.0.dist-info/WHEEL +4 -0
  6. libreqda-1.2.0.dist-info/entry_points.txt +4 -0
  7. scripts/babelrc +8 -0
  8. scripts/dist/LICENSE.txt +33 -0
  9. scripts/dist/RELEASE.txt +23 -0
  10. scripts/dist/macos/libreqda.icns +0 -0
  11. scripts/dist/macos/macos.spec +43 -0
  12. scripts/dist/macos/plist.patch +10 -0
  13. scripts/dist/macos/taguette.icns +0 -0
  14. scripts/dist/macos/taguette_console_wrapper +4 -0
  15. scripts/dist/macos.sh +32 -0
  16. scripts/dist/pyinstaller_entrypoint.py +19 -0
  17. scripts/dist/windows/windows-installer.iss +51 -0
  18. scripts/dist/windows/windows.spec +39 -0
  19. scripts/edugain/worker_update_edugain_idps.py +89 -0
  20. scripts/edugain/worker_update_edugain_idps.sh +9 -0
  21. scripts/make_password_reset_link.py +56 -0
  22. scripts/make_theme.py +99 -0
  23. scripts/new_db_revision.sh +8 -0
  24. scripts/register_user.py +76 -0
  25. scripts/update_pot.sh +33 -0
  26. scripts/update_translations.sh +17 -0
  27. scripts/validate.py +140 -0
  28. scripts/wipe_and_disable_user.py +90 -0
  29. taguette/__init__.py +13 -0
  30. taguette/access_control.py +145 -0
  31. taguette/convert.py +623 -0
  32. taguette/database/__init__.py +177 -0
  33. taguette/database/base.py +9 -0
  34. taguette/database/copy.py +433 -0
  35. taguette/database/models.py +920 -0
  36. taguette/demodata.py +688 -0
  37. taguette/export.py +500 -0
  38. taguette/extract.py +287 -0
  39. taguette/import_codebook.py +110 -0
  40. taguette/l10n/de_DE/LC_MESSAGES/taguette_javascript.mo +0 -0
  41. taguette/l10n/de_DE/LC_MESSAGES/taguette_main.mo +0 -0
  42. taguette/l10n/el_EL/LC_MESSAGES/taguette_javascript.mo +0 -0
  43. taguette/l10n/el_GR/LC_MESSAGES/taguette_javascript.mo +0 -0
  44. taguette/l10n/el_GR/LC_MESSAGES/taguette_main.mo +0 -0
  45. taguette/l10n/en_US/LC_MESSAGES/taguette_javascript.mo +0 -0
  46. taguette/l10n/en_US/LC_MESSAGES/taguette_main.mo +0 -0
  47. taguette/l10n/es_ES/LC_MESSAGES/taguette_javascript.mo +0 -0
  48. taguette/l10n/es_ES/LC_MESSAGES/taguette_main.mo +0 -0
  49. taguette/l10n/fr_FR/LC_MESSAGES/taguette_javascript.mo +0 -0
  50. taguette/l10n/fr_FR/LC_MESSAGES/taguette_main.mo +0 -0
  51. taguette/l10n/id_ID/LC_MESSAGES/taguette_javascript.mo +0 -0
  52. taguette/l10n/id_ID/LC_MESSAGES/taguette_main.mo +0 -0
  53. taguette/l10n/it_IT/LC_MESSAGES/taguette_javascript.mo +0 -0
  54. taguette/l10n/it_IT/LC_MESSAGES/taguette_main.mo +0 -0
  55. taguette/l10n/nl_NL/LC_MESSAGES/taguette_javascript.mo +0 -0
  56. taguette/l10n/nl_NL/LC_MESSAGES/taguette_main.mo +0 -0
  57. taguette/l10n/pt_PT/LC_MESSAGES/taguette_javascript.mo +0 -0
  58. taguette/l10n/pt_PT/LC_MESSAGES/taguette_main.mo +0 -0
  59. taguette/l10n/sv_SE/LC_MESSAGES/taguette_javascript.mo +0 -0
  60. taguette/l10n/sv_SE/LC_MESSAGES/taguette_main.mo +0 -0
  61. taguette/loki_handler.py +107 -0
  62. taguette/main.py +649 -0
  63. taguette/migrations/env.py +72 -0
  64. taguette/migrations/script.py.mako +24 -0
  65. taguette/migrations/versions/09c662cd9483_make_documents_filename_not_null.py +39 -0
  66. taguette/migrations/versions/1b29e68900c1_add_user_roles.py +55 -0
  67. taguette/migrations/versions/1b96a606551d_update_user_to_have_a_display_name.py +34 -0
  68. taguette/migrations/versions/2467bab602b7_add_color_column_to_tags_table.py +33 -0
  69. taguette/migrations/versions/382db36f20f4_add_user_disabled.py +66 -0
  70. taguette/migrations/versions/43d6c240309d_remove_document_groups.py +81 -0
  71. taguette/migrations/versions/447d636f72c5_cascades.py +40 -0
  72. taguette/migrations/versions/491de2dc7cd7_add_indexes.py +51 -0
  73. taguette/migrations/versions/4c55b3b3ff30_user_login_length.py +58 -0
  74. taguette/migrations/versions/61a4abcc8769_user_with_parent_for_permissions.py +40 -0
  75. taguette/migrations/versions/6489b5f9cfb5_increase_password_hash_size.py +34 -0
  76. taguette/migrations/versions/679f625e6e6a_fix_unique_tags.py +59 -0
  77. taguette/migrations/versions/77c4543a5b9b_add_parent_id_column_to_collection_table.py +41 -0
  78. taguette/migrations/versions/7c94b7a31e69_add_is_archived_column_to_projets.py +39 -0
  79. taguette/migrations/versions/7f56de97e3c8_change_edugain_displayname_length.py +42 -0
  80. taguette/migrations/versions/807c0cc0ecf6_remove_invalid_hltags.py +43 -0
  81. taguette/migrations/versions/80b1cc9d4c22_add_user_email.py +35 -0
  82. taguette/migrations/versions/91ade71ccf4d_add_user_language.py +28 -0
  83. taguette/migrations/versions/955db2e523d1_add_collections_tables_and_associations_.py +60 -0
  84. taguette/migrations/versions/a1b2c3d4e5f6_add_user_hide_code_counts.py +28 -0
  85. taguette/migrations/versions/b23f3b7a638e_add_user_password_change_date.py +36 -0
  86. taguette/migrations/versions/b7c1e2d3f4a5_add_project_compact_layout.py +28 -0
  87. taguette/migrations/versions/bc8e0e0677e9_rename_command_fields.py +126 -0
  88. taguette/migrations/versions/bce44849c2f2_lowercase_logins.py +96 -0
  89. taguette/migrations/versions/ca076140922f_update_user_for_external_logins.py +32 -0
  90. taguette/migrations/versions/d86c45d7aa8a_add_document_direction.py +127 -0
  91. taguette/migrations/versions/db5e31a0233d_remove_blank_highlights.py +88 -0
  92. taguette/migrations/versions/dd37d9027a24_unique_tags.py +68 -0
  93. taguette/migrations/versions/de678cef2a94_add_project_id_to_collections_and_.py +41 -0
  94. taguette/migrations/versions/e459991d960e_add_table_edugainidps.py +39 -0
  95. taguette/migrations/versions/e4cf92942271_add_index.py +29 -0
  96. taguette/migrations/versions/e4e090a5b511_remove_commands_document_id_fk.py +38 -0
  97. taguette/migrations/versions/e9a9f1c77971_add_favorite_column_to_document.py +32 -0
  98. taguette/migrations/versions/ecb4065de575_don_t_use_server_default_now_timezone_.py +44 -0
  99. taguette/migrations/versions/fbdc29566f62_edugain_fix_field_type.py +42 -0
  100. taguette/migrations/versions/fdc6eb54b034_add_parent_id_column_to_tags_table.py +31 -0
  101. taguette/static/README.md +34 -0
  102. taguette/static/alt_templates/.gitkeep +0 -0
  103. taguette/static/assets/test/logos/monsters-university-logo.png +0 -0
  104. taguette/static/css/custom.css +1696 -0
  105. taguette/static/css/fa-all.min.css +5 -0
  106. taguette/static/css/themed.css +3 -0
  107. taguette/static/css/themed.css.map +25 -0
  108. taguette/static/css/vendor/bootstrap-treeview.min.css +1 -0
  109. taguette/static/css/vendor/bootstrap.min.css +6 -0
  110. taguette/static/css/vendor/font/context-menu-icons.eot +0 -0
  111. taguette/static/css/vendor/font/context-menu-icons.ttf +0 -0
  112. taguette/static/css/vendor/font/context-menu-icons.woff +0 -0
  113. taguette/static/css/vendor/font/context-menu-icons.woff2 +0 -0
  114. taguette/static/css/vendor/hierarchy-select.min.css +1 -0
  115. taguette/static/css/vendor/introjs.min.css +2 -0
  116. taguette/static/css/vendor/jquery.contextMenu.min.css +16 -0
  117. taguette/static/favicon.ico +0 -0
  118. taguette/static/js/codebook-viz.js +428 -0
  119. taguette/static/js/collection/context-menu.js +180 -0
  120. taguette/static/js/collection/hierarchy-select.js +71 -0
  121. taguette/static/js/collection/manager.js +217 -0
  122. taguette/static/js/document/context-menu.js +92 -0
  123. taguette/static/js/document/custom-select.js +82 -0
  124. taguette/static/js/document/manager.js +943 -0
  125. taguette/static/js/document/treeview.js +593 -0
  126. taguette/static/js/highlight/README.md +18 -0
  127. taguette/static/js/highlight/crud.js +119 -0
  128. taguette/static/js/highlight/extracts.js +497 -0
  129. taguette/static/js/highlight/loader.js +109 -0
  130. taguette/static/js/highlight/renderer.js +405 -0
  131. taguette/static/js/login.js +15 -0
  132. taguette/static/js/permissions.js +153 -0
  133. taguette/static/js/polling-event.js +145 -0
  134. taguette/static/js/project/intro.js +524 -0
  135. taguette/static/js/project/manager.js +0 -0
  136. taguette/static/js/project/search.js +124 -0
  137. taguette/static/js/tag/context-menu.js +133 -0
  138. taguette/static/js/tag/explore-codes.js +400 -0
  139. taguette/static/js/tag/hierarchy-select.js +69 -0
  140. taguette/static/js/tag/manager.js +545 -0
  141. taguette/static/js/tag/treeview.js +613 -0
  142. taguette/static/js/taguette.js +1790 -0
  143. taguette/static/js/utilities.js +714 -0
  144. taguette/static/js/vendor/bootstrap-treeview-custum.js +421 -0
  145. taguette/static/js/vendor/bootstrap-treeview-custum.min.js +1 -0
  146. taguette/static/js/vendor/bootstrap-treeview-default.min.js +1 -0
  147. taguette/static/js/vendor/bootstrap.bundle.min.js +7 -0
  148. taguette/static/js/vendor/bootstrap.bundle.min.js.map +1 -0
  149. taguette/static/js/vendor/hierarchy-select.min.js +1 -0
  150. taguette/static/js/vendor/introjs.min.js +17 -0
  151. taguette/static/js/vendor/jquery-3.7.1.js +2 -0
  152. taguette/static/js/vendor/jquery.contextMenu.min.js +2 -0
  153. taguette/static/libreqda.ico +0 -0
  154. taguette/static/logo-h.png +0 -0
  155. taguette/static/logo.png +0 -0
  156. taguette/static/logo_blanc.png +0 -0
  157. taguette/static/missing.png +0 -0
  158. taguette/static/robots.txt +2 -0
  159. taguette/static/scss/components/_badge.scss +42 -0
  160. taguette/static/scss/components/_button.scss +169 -0
  161. taguette/static/scss/components/_checkbox.scss +40 -0
  162. taguette/static/scss/components/_context_menu.scss +28 -0
  163. taguette/static/scss/components/_custom_select.scss +150 -0
  164. taguette/static/scss/components/_dropdown.scss +43 -0
  165. taguette/static/scss/components/_form.scss +54 -0
  166. taguette/static/scss/components/_modal.scss +57 -0
  167. taguette/static/scss/components/_project_card.scss +163 -0
  168. taguette/static/scss/components/_tag.scss +308 -0
  169. taguette/static/scss/components/_treeview.scss +76 -0
  170. taguette/static/scss/custom.scss +809 -0
  171. taguette/static/scss/layout/_credits.scss +62 -0
  172. taguette/static/scss/layout/_footer.scss +6 -0
  173. taguette/static/scss/layout/_navigation.scss +165 -0
  174. taguette/static/scss/layout/_sidebar.scss +37 -0
  175. taguette/static/scss/themes/default/_variables.scss +103 -0
  176. taguette/static/scss/themes/default/theme.css +3 -0
  177. taguette/static/scss/themes/default/theme.css.map +26 -0
  178. taguette/static/scss/themes/default/theme.scss +4 -0
  179. taguette/static/webfonts/BadScript-OFL.txt +94 -0
  180. taguette/static/webfonts/BadScript.ttf +0 -0
  181. taguette/static/webfonts/Montserrat-Light.ttf +0 -0
  182. taguette/static/webfonts/Montserrat-OFL.txt +93 -0
  183. taguette/static/webfonts/fa-brands-400.eot +0 -0
  184. taguette/static/webfonts/fa-brands-400.svg +1184 -0
  185. taguette/static/webfonts/fa-brands-400.ttf +0 -0
  186. taguette/static/webfonts/fa-brands-400.woff +0 -0
  187. taguette/static/webfonts/fa-brands-400.woff2 +0 -0
  188. taguette/static/webfonts/fa-regular-400.eot +0 -0
  189. taguette/static/webfonts/fa-regular-400.svg +467 -0
  190. taguette/static/webfonts/fa-regular-400.ttf +0 -0
  191. taguette/static/webfonts/fa-regular-400.woff +0 -0
  192. taguette/static/webfonts/fa-regular-400.woff2 +0 -0
  193. taguette/static/webfonts/fa-solid-900.eot +0 -0
  194. taguette/static/webfonts/fa-solid-900.svg +2618 -0
  195. taguette/static/webfonts/fa-solid-900.ttf +0 -0
  196. taguette/static/webfonts/fa-solid-900.woff +0 -0
  197. taguette/static/webfonts/fa-solid-900.woff2 +0 -0
  198. taguette/templates/alt_templates/.gitkeep +0 -0
  199. taguette/templates/archived_projects.html +50 -0
  200. taguette/templates/auth/account.html +74 -0
  201. taguette/templates/auth/cilogon.login.html +89 -0
  202. taguette/templates/auth/email_reset_password.html +5 -0
  203. taguette/templates/auth/external_account.html +60 -0
  204. taguette/templates/auth/login.html +144 -0
  205. taguette/templates/auth/reset_password.html +27 -0
  206. taguette/templates/auth/token_needed.html +7 -0
  207. taguette/templates/base.html +209 -0
  208. taguette/templates/bug_report.html +158 -0
  209. taguette/templates/cookies_prompt.html +15 -0
  210. taguette/templates/downloads.html +127 -0
  211. taguette/templates/email_bug_report.txt +9 -0
  212. taguette/templates/email_reset_password.txt +5 -0
  213. taguette/templates/error.html +8 -0
  214. taguette/templates/export_codebook.html +20 -0
  215. taguette/templates/export_document.html +20 -0
  216. taguette/templates/export_highlights.html +47 -0
  217. taguette/templates/index.html +347 -0
  218. taguette/templates/maintenance.html +8 -0
  219. taguette/templates/messages.js +74 -0
  220. taguette/templates/modal/change_document.html +68 -0
  221. taguette/templates/modal/create_collection.html +100 -0
  222. taguette/templates/modal/create_document.html +84 -0
  223. taguette/templates/modal/create_highlight.html +38 -0
  224. taguette/templates/modal/create_tag.html +73 -0
  225. taguette/templates/modal/explore_codes.html +58 -0
  226. taguette/templates/modal/manage_collaborators.html +44 -0
  227. taguette/templates/modal/merge_tag.html +49 -0
  228. taguette/templates/new_password.html +32 -0
  229. taguette/templates/partials/alert.html +16 -0
  230. taguette/templates/partials/codebook_viz_modal.html +34 -0
  231. taguette/templates/partials/confirm.html +17 -0
  232. taguette/templates/partials/document_toolbar.html +37 -0
  233. taguette/templates/partials/hlinfo.html +13 -0
  234. taguette/templates/partials/project_card.html +44 -0
  235. taguette/templates/partials/project_card_archived.html +41 -0
  236. taguette/templates/partials/project_sidebar.html +99 -0
  237. taguette/templates/partials/spinner.html +11 -0
  238. taguette/templates/permissions.html +54 -0
  239. taguette/templates/project.html +288 -0
  240. taguette/templates/project_delete.html +17 -0
  241. taguette/templates/project_import.html +122 -0
  242. taguette/templates/project_import_codebook.html +34 -0
  243. taguette/templates/project_import_codebook_confirm.html +49 -0
  244. taguette/templates/project_new.html +31 -0
  245. taguette/templates/tos.html +8 -0
  246. taguette/templates/trans.js +7 -0
  247. taguette/templates/welcome.html +15 -0
  248. taguette/utils.py +177 -0
  249. taguette/validate.py +141 -0
  250. taguette/version_check.py +102 -0
  251. taguette/web/__init__.py +252 -0
  252. taguette/web/api.py +1835 -0
  253. taguette/web/base.py +864 -0
  254. taguette/web/export.py +338 -0
  255. taguette/web/views.py +1618 -0
@@ -0,0 +1,169 @@
1
+ /* Button Styles */
2
+
3
+ /* Colors for button primary */
4
+ .btn.btn-primary {
5
+ background-color: $color-primary !important;
6
+ border-color: $color-primary !important;
7
+ }
8
+
9
+ .btn.btn-primary:hover,
10
+ .btn.btn-primary:focus,
11
+ .btn.btn-primary:active {
12
+ background-color: $color-primary-hover !important;
13
+ border-color: $color-primary-hover !important;
14
+ }
15
+
16
+ .btn.btn-outline-primary {
17
+ color: $color-primary;
18
+ background-color: transparent;
19
+ background-image: none;
20
+ border-color: $color-primary;
21
+ }
22
+
23
+ .btn.btn-outline-primary:hover {
24
+ color: $color-bg !important;
25
+ background-color: $color-primary !important;
26
+ border-color: $color-primary !important;
27
+ }
28
+
29
+ .btn.btn-outline-primary:focus, .btn-outline-primary.focus {
30
+ box-shadow: none !important;
31
+ }
32
+
33
+ .btn.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
34
+ box-shadow: none !important;
35
+ }
36
+
37
+ .btn.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
38
+ box-shadow: none !important;
39
+ }
40
+
41
+ .btn.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
42
+ color: $color-bg !important;
43
+ background-color: $color-primary !important;
44
+ border-color: $color-primary !important;
45
+ }
46
+
47
+ .btn.btn-outline-primary.disabled, .btn-outline-primary:disabled {
48
+ color: $color-primary !important;
49
+ background-color: transparent !important;
50
+ }
51
+
52
+ .btn.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
53
+ .show > .btn-outline-primary.dropdown-toggle {
54
+ color: $color-bg !important;
55
+ background-color: $color-primary !important;
56
+ border-color: $color-primary !important;
57
+ }
58
+
59
+ .btn.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
60
+ .show > .btn-outline-primary.dropdown-toggle:focus {
61
+ box-shadow: none !important;
62
+ }
63
+
64
+ /* Colors for secondary buttons */
65
+ .btn.btn-outline-secondary {
66
+ background-color: $color-secondary;
67
+ border-color: $color-secondary;
68
+ color: $color-bg;
69
+ }
70
+
71
+ .btn.btn-secondary {
72
+ background-color: $color-secondary;
73
+ border-color: $color-secondary;
74
+ color: $color-bg;
75
+ }
76
+
77
+ .btn.btn-secondary:hover,
78
+ .btn.btn-secondary:focus,
79
+ .btn.btn-secondary:active {
80
+ background-color: $color-secondary-hover;
81
+ border-color: $color-secondary-hover;
82
+ }
83
+
84
+ .btn.btn-outline-secondary:hover,
85
+ .btn.btn-outline-secondary:focus,
86
+ .btn.btn-outline-secondary:active {
87
+ background-color: $color-secondary-hover;
88
+ border-color: $color-secondary-hover;
89
+ }
90
+
91
+ .btn.btn-secondary.me-3 {
92
+ background-color: $color-primary !important;
93
+ border-color: $color-primary !important;
94
+ }
95
+
96
+ .btn.btn-secondary.me-3:hover,
97
+ .btn.btn-primary:focus,
98
+ .btn.btn-primary:active {
99
+ background-color: $color-primary-hover !important;
100
+ border-color: $color-primary-hover !important;
101
+ }
102
+
103
+ .btn-sm.btn-outline-secondary {
104
+ color: $color-secondary-hover !important;
105
+ background-color: $color-bg !important;
106
+ }
107
+
108
+ .btn-sm.btn-outline-secondary:hover {
109
+ color: var(--bs-btn-hover-color) !important;
110
+ background-color: var(--bs-btn-hover-bg) !important;
111
+ border-color: var(--bs-btn-hover-border-color) !important;
112
+ }
113
+
114
+ .btn-sm.btn-outline-secondary.my-2 {
115
+ color: $color-secondary-hover !important;
116
+ background-color: $color-bg !important;
117
+ }
118
+
119
+ .btn-sm.btn-outline-secondary.my-2:hover {
120
+ color: var(--bs-btn-hover-color) !important;
121
+ background-color: var(--bs-btn-hover-bg) !important;
122
+ border-color: var(--bs-btn-hover-border-color) !important;
123
+ }
124
+
125
+ /* Colors for button info */
126
+ .btn.btn-info {
127
+ background-color: $color-toolbar-highlight !important;
128
+ }
129
+
130
+ /* Search form button styles */
131
+ form.search button {
132
+ color: $color-bg !important;
133
+ border: 1px solid $color-bg !important;
134
+ }
135
+
136
+ form.search button.btn-outline-primary:hover {
137
+ color: $color-secondary !important;
138
+ border-color: $color-bg !important;
139
+ }
140
+
141
+ /* Page selector buttons */
142
+ button.page-selector {
143
+ display: none;
144
+ }
145
+
146
+ button.page-selector:disabled,
147
+ button.page-selector[disabled]{
148
+ color: $color-toolbar !important;
149
+ background-color: rgba(245, 245, 245, 0.75) !important;
150
+ }
151
+
152
+ /* Button group styles for responsive design */
153
+ @media (max-width: 768px) {
154
+ .btn-outline-secondary i {
155
+ transform: rotate(180deg);
156
+ }
157
+
158
+ .reduced-col .btn-outline-secondary i {
159
+ transform: rotate(-360deg) !important;
160
+ }
161
+ }
162
+
163
+ .btn-outline-secondary i {
164
+ transition: transform 0.3s;
165
+ }
166
+
167
+ .reduced-col .btn-outline-secondary i {
168
+ transform: rotate(180deg);
169
+ }
@@ -0,0 +1,40 @@
1
+ /* Custom Checkbox Component */
2
+
3
+ .custom-checkbox {
4
+ display: inline-block;
5
+ position: relative;
6
+ padding-left: 25px;
7
+ cursor: pointer;
8
+ user-select: none;
9
+ }
10
+
11
+ .custom-checkbox .custom-control-input {
12
+ position: absolute;
13
+ opacity: 0;
14
+ cursor: pointer;
15
+ }
16
+
17
+ .custom-checkbox .custom-control-label:before {
18
+ content: "";
19
+ position: absolute;
20
+ left: 0;
21
+ top: 0;
22
+ width: 18px;
23
+ height: 18px;
24
+ border: 2px solid $color-primary;
25
+ border-radius: 4px;
26
+ background-color: $color-bg;
27
+ }
28
+
29
+ .custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
30
+ content: "✓";
31
+ position: absolute;
32
+ left: 4px;
33
+ top: -2px;
34
+ font-size: 18px;
35
+ color: $color-primary;
36
+ }
37
+
38
+ .custom-checkbox:hover .custom-control-input ~ .custom-control-label:before {
39
+ background-color: #f0f0f0;
40
+ }
@@ -0,0 +1,28 @@
1
+ /*
2
+ Context Menu Styling Override
3
+ note: mark as important
4
+ */
5
+
6
+
7
+ .context-menu-list {
8
+ background-color: $color-context-menu !important;
9
+ color: $color-context-menu-text !important;
10
+ max-width: $context-menu-max-width !important;
11
+ min-width: $context-menu-min-width !important;
12
+ z-index: 20 !important;
13
+ }
14
+
15
+ .context-menu-item {
16
+ background-color: $color-context-menu !important;
17
+ color: $color-context-menu-text !important;
18
+ }
19
+
20
+ .context-menu-icon i {
21
+ color: $context-menu-icon !important;
22
+ }
23
+
24
+ .context-menu-item:hover,
25
+ .context-menu-item:hover i {
26
+ background-color: $color-context-menu-hover !important;
27
+ color: $color-context-menu !important;
28
+ }
@@ -0,0 +1,150 @@
1
+ /* Custom Select Component */
2
+
3
+ .custom-select {
4
+ position: relative;
5
+ width: 90%;
6
+ max-width: 100%;
7
+ font-size: 1.15rem;
8
+ color: $color-bg-text;
9
+ }
10
+
11
+ @media (max-width: 768px) {
12
+ .custom-select {
13
+ width: 80%;
14
+ }
15
+ }
16
+
17
+ /* In the toolbar, flex-grow-1 controls sizing — percentage width causes overflow */
18
+ .toolbar-container .custom-select {
19
+ width: auto;
20
+ }
21
+
22
+ .select-button {
23
+ width: 100%;
24
+ min-width: 0;
25
+ height: $btn-height-default;
26
+ font-size: 1.15rem;
27
+ background-color: $color-bg;
28
+ padding: 0.675em 1em;
29
+ border: 1px solid #caced1;
30
+ border-radius: 0.5rem;
31
+ cursor: pointer;
32
+ display: flex;
33
+ justify-content: space-between;
34
+ align-items: center;
35
+ }
36
+
37
+ .selected-value {
38
+ text-overflow: ellipsis;
39
+ overflow: hidden;
40
+ white-space: nowrap;
41
+ text-align: left;
42
+ flex: 1;
43
+ margin-right: 10px;
44
+ }
45
+
46
+ .custom-select.active .selected-value {
47
+ white-space: normal;
48
+ }
49
+
50
+ .arrow {
51
+ border-left: 5px solid transparent;
52
+ border-right: 5px solid transparent;
53
+ border-top: 6px solid $color-bg-text;
54
+ transition: transform ease-in-out 0.3s;
55
+ }
56
+
57
+ .select-dropdown {
58
+ position: absolute;
59
+ list-style: none;
60
+ width: 100%;
61
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
62
+ background-color: $color-bg;
63
+ border: 1px solid #caced1;
64
+ border-radius: 0.5rem;
65
+ padding: 10px;
66
+ margin-top: 10px;
67
+ z-index: 10;
68
+ max-height: $dropdown-max-height;
69
+ overflow-y: auto;
70
+ transition: 0.5s ease;
71
+
72
+ transform: scaleY(0);
73
+ opacity: 0;
74
+ visibility: hidden;
75
+ }
76
+
77
+ .select-dropdown:focus-within {
78
+ box-shadow: 0 10px 25px rgba(94, 108, 233, 0.6);
79
+ }
80
+
81
+ .select-dropdown li {
82
+ position: relative;
83
+ cursor: pointer;
84
+ display: flex;
85
+ gap: 1rem;
86
+ align-items: center;
87
+ }
88
+
89
+ .bookmark-hint {
90
+ cursor: default;
91
+ padding: 8px 10px;
92
+ color: $color-bg-text;
93
+ opacity: 0.6;
94
+ pointer-events: none;
95
+ }
96
+
97
+ .custom-select.empty .selected-value {
98
+ font-style: italic;
99
+ opacity: 0.6;
100
+ }
101
+
102
+ .select-dropdown li label {
103
+ width: 100%;
104
+ padding: 8px 10px;
105
+ cursor: pointer;
106
+ display: flex;
107
+ gap: 1rem;
108
+ align-items: center;
109
+ }
110
+
111
+ .select-dropdown::-webkit-scrollbar {
112
+ width: 7px;
113
+ }
114
+
115
+ .select-dropdown::-webkit-scrollbar-track {
116
+ background: #f1f1f1;
117
+ border-radius: 25px;
118
+ }
119
+
120
+ .select-dropdown::-webkit-scrollbar-thumb {
121
+ background: #ccc;
122
+ border-radius: 25px;
123
+ }
124
+
125
+ .select-dropdown li:hover,
126
+ .select-dropdown input:checked ~ label {
127
+ background-color: $color-primary;
128
+ color: #f1f1f1;
129
+ }
130
+
131
+ .select-dropdown input:focus ~ label {
132
+ background-color: #dfdfdf;
133
+ }
134
+
135
+ .select-dropdown input[type="radio"] {
136
+ position: absolute;
137
+ left: 0;
138
+ opacity: 0;
139
+ }
140
+
141
+ /* Interactivity */
142
+ .custom-select.active .arrow {
143
+ transform: rotate(180deg);
144
+ }
145
+
146
+ .custom-select.active .select-dropdown {
147
+ opacity: 1;
148
+ visibility: visible;
149
+ transform: scaleY(1);
150
+ }
@@ -0,0 +1,43 @@
1
+ /* Dropdown Components */
2
+
3
+ ul.dropdown-menu {
4
+ z-index: 1030;
5
+ max-height: 75vh;
6
+ overflow: scroll;
7
+ }
8
+
9
+ ul.dropdown-menu.show:empty {
10
+ display: none !important;
11
+ }
12
+
13
+ span.search-item {
14
+ color: $color-bg;
15
+ background-color: $color-tertiary;
16
+ display: inline-block;
17
+ border-radius: 0.375rem;
18
+ padding: 0 0.2rem;
19
+ }
20
+
21
+ #export-button .dropdown-toggle {
22
+ padding: 0.125rem 0.25rem;
23
+ }
24
+
25
+ a.dropdown-item:hover {
26
+ color: $color-secondary-hover !important;
27
+ text-decoration: none;
28
+ }
29
+
30
+ .dropdown-item.active {
31
+ background-color: #e7f2ff !important;
32
+ }
33
+
34
+ .dropdown-toggle {
35
+ width: 100%;
36
+ }
37
+
38
+ #dropdownMenuButtonTag {
39
+ letter-spacing: -0.5px !important;
40
+ white-space: nowrap !important;
41
+ overflow: hidden !important;
42
+ text-overflow: ellipsis !important;
43
+ }
@@ -0,0 +1,54 @@
1
+ /* Form Components */
2
+
3
+ /* Search in document form */
4
+ form.search {
5
+ width: 40%;
6
+ position: relative;
7
+ }
8
+
9
+ form.search button i.searching {
10
+ display: none;
11
+ }
12
+
13
+ form.search button i.search-icon {
14
+ display: inline-block;
15
+ }
16
+
17
+ form.search.searching button i.searching {
18
+ display: inline-block;
19
+ animation: spin 2s linear infinite;
20
+ }
21
+
22
+ form.search.searching button i.search-icon {
23
+ display: none;
24
+ }
25
+
26
+ @keyframes spin {
27
+ 0% { transform: rotate(0deg); }
28
+ 100% { transform: rotate(360deg); }
29
+ }
30
+
31
+ /* Form Controls */
32
+ /* Don't show the resize control on textareas */
33
+ textarea.form-control {
34
+ resize: none;
35
+ height: 150px;
36
+ padding: 10px;
37
+ line-height: 1.5;
38
+ }
39
+
40
+ select.form-control {
41
+ -webkit-appearance: auto;
42
+ -moz-appearance: auto;
43
+ appearance: auto;
44
+ }
45
+
46
+ /* To match bs4 css, may be removed in a future release */
47
+ .form-group {
48
+ margin-bottom: 1rem;
49
+ }
50
+
51
+ /* Content editable styles */
52
+ [contenteditable] {
53
+ outline: 0 solid transparent;
54
+ }
@@ -0,0 +1,57 @@
1
+ /* Modal and Spinner Components */
2
+
3
+ /* Spinner animation */
4
+ #spinner {
5
+ border: 3vh solid #dcdcdc;
6
+ border-top: 3vh solid $color-primary;
7
+ border-radius: 50%;
8
+ width: 30vh;
9
+ height: 30vh;
10
+ animation: spinneranim 2s linear infinite;
11
+ }
12
+
13
+ @keyframes spinneranim {
14
+ 0% { transform: rotate(0deg); }
15
+ 100% { transform: rotate(360deg); }
16
+ }
17
+
18
+ #spinner-modal .modal-dialog {
19
+ display: table;
20
+ position: relative;
21
+ margin: 0 auto;
22
+ top: calc(50% - 15vh);
23
+ }
24
+
25
+ #spinner-modal .modal-dialog .modal-content{
26
+ background-color: transparent;
27
+ border: none;
28
+ width: 30vh;
29
+ }
30
+
31
+ #spinner-modal button.cancel {
32
+ display: none;
33
+ margin-top: 1em;
34
+ }
35
+
36
+ #progress {
37
+ margin-top: -15vh;
38
+ margin-bottom: 15vh;
39
+ width: 20vh;
40
+ text-align: center;
41
+ margin-left: 5vh;
42
+ }
43
+
44
+ .progress-bar {
45
+ background-color: $color-primary;
46
+ }
47
+
48
+ /* Modal scrollbar styles */
49
+ .modal-body {
50
+ max-height: calc(100vh - 210px);
51
+ overflow-y: auto;
52
+ }
53
+
54
+ .modal-body.no-scroll {
55
+ max-height: calc(100vh - 210px);
56
+ overflow-y: unset;
57
+ }
@@ -0,0 +1,163 @@
1
+ /* Project Card Styles */
2
+
3
+ /*========================
4
+ Home - Project card
5
+ =========================*/
6
+
7
+ .project-card {
8
+ display: flex;
9
+ flex-direction: column;
10
+ justify-content: space-between;
11
+ height: $project-card-height;
12
+ width: 100%;
13
+ background-color: $color-bg;
14
+ text-align: center;
15
+ border-radius: $border-radius-default;
16
+ box-shadow: $default-shadow;
17
+ margin-bottom: $project-card-margin;
18
+ transition: transform 0.3s ease;
19
+ }
20
+
21
+ .description-container {
22
+ flex: 1;
23
+ overflow: hidden;
24
+ min-height: 0;
25
+ }
26
+
27
+ .description-text {
28
+ display: -webkit-box;
29
+ -webkit-line-clamp: 3;
30
+ line-clamp: 3;
31
+ -webkit-box-orient: vertical;
32
+ overflow: hidden;
33
+ text-overflow: ellipsis;
34
+ margin-bottom: 0;
35
+ }
36
+
37
+ .stats-container {
38
+ z-index: 1;
39
+ }
40
+
41
+ .project-card .fas {
42
+ color: $color-primary;
43
+ }
44
+
45
+ .action {
46
+ background-color: $color-primary;
47
+ }
48
+
49
+ .project-card:hover {
50
+ transform: scale(1.05);
51
+ border : 2px solid $color-primary;
52
+ }
53
+
54
+ .icon-circle {
55
+ display: flex;
56
+ align-items: center;
57
+ justify-content: center;
58
+ width: $icon-circle-sm;
59
+ height: $icon-circle-sm;
60
+ border-radius: 50%;
61
+ background-color: $color-toolbar;
62
+ color: #333;
63
+ font-size: 24px;
64
+ margin-bottom: 20px;
65
+ }
66
+
67
+ .project{
68
+ text-align: center;
69
+ font-size: $project-font-size-title;
70
+ font-weight: 600;
71
+ color: $color-bg;
72
+ }
73
+
74
+ .star{
75
+ font-size: 20px !important;
76
+ color: #b1b4b7;
77
+ }
78
+
79
+ .dot {
80
+ font-size: 20px !important;
81
+ color: #b1b4b7;
82
+ }
83
+
84
+ .project-icon {
85
+ border-radius: 50%;
86
+ background-color: $color-primary;
87
+ width: $icon-circle-lg;
88
+ height: $icon-circle-lg;
89
+ display: flex;
90
+ align-items: center;
91
+ justify-content: center;
92
+ margin-bottom: -10px;
93
+ }
94
+
95
+ .project-icon span {
96
+ color: $color-bg;
97
+ font-size: 36px;
98
+ font-weight: bold;
99
+ }
100
+
101
+ .project-card .name{
102
+ font-size: 20px;
103
+ color: #464e56;
104
+ font-weight: 600;
105
+ text-align: left;
106
+ white-space: normal;
107
+ word-wrap: break-word !important;
108
+ overflow: hidden;
109
+ text-overflow: clip;
110
+ max-width: 300px;
111
+ text-decoration: underline;
112
+ }
113
+
114
+ .empty i.fas,
115
+ .empty .project-icon {
116
+ visibility: hidden;
117
+ }
118
+
119
+ .quote{
120
+ text-align: center;
121
+ font-size: 14px;
122
+ font-weight: 400;
123
+ color: $color-bg;
124
+
125
+ }
126
+
127
+ .quote2 {
128
+ font-size: 14px;
129
+ font-weight: 500;
130
+ color: #868e94;
131
+ text-align: left;
132
+ overflow: auto;
133
+ max-height: 80px;
134
+ margin: 0;
135
+ }
136
+
137
+ .custom-hr {
138
+ border-top: none;
139
+ border-left: none;
140
+ border-right: none;
141
+ border-bottom: 3px dotted #ccc !important;
142
+ text-align: center;
143
+ justify-content: center;
144
+ height: 0;
145
+ width: 100%;
146
+ background: transparent;
147
+ margin: 8px 0;
148
+ }
149
+
150
+ .no-underline,
151
+ .no-underline:hover,
152
+ .no-underline:visited,
153
+ .no-underline:active {
154
+ text-decoration: none;
155
+ }
156
+
157
+ .tags-container {
158
+ border: 2px solid #ccc;
159
+ border-radius: 8px;
160
+ padding: 10px;
161
+ overflow: hidden;
162
+ background-color: $color-bg;
163
+ }