Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
0abe5c2
enabling the custom theme in config.yml
jr-rk Oct 15, 2025
ec9f08d
editing assetes
jr-rk Oct 15, 2025
d4d654b
first UI set-up changes
jr-rk Oct 15, 2025
c90762c
Revert "first UI set-up changes"
jr-rk Oct 16, 2025
a88c9e5
enabling the custom theme in eager-themes.module
jr-rk Oct 16, 2025
72bf9fa
header edit based on dspace-theme - to make it oneline
jr-rk Oct 16, 2025
0f9ab11
Copy default global styles
jr-rk Oct 20, 2025
33fc15f
Header navbar wrapper edit to make oneline header
jr-rk Oct 20, 2025
cda10db
Navbar component fix to make header oneline
jr-rk Oct 20, 2025
f43e05f
Render MENDELU logos
jr-rk Oct 20, 2025
29675ee
Added mendelu specific fonts and colors
jr-rk Oct 20, 2025
f12f572
Make footer COAR Notify logo white
jr-rk Oct 20, 2025
ffcda92
Hide home-coar and home-news
jr-rk Oct 20, 2025
5674c9e
Hide header-navbar border-bottom
jr-rk Oct 20, 2025
b1705af
Hide all the languages except cs and en
jr-rk Oct 20, 2025
cc076f6
Adjusting colors to MENDELU design
jr-rk Oct 20, 2025
c831cf8
Adjusting sidebar links to be clickable as full rows, not only text
jr-rk Oct 20, 2025
d26097e
Adjusted default coloring settings
jr-rk Oct 20, 2025
608af2a
Made login/logout page logo larger
jr-rk Oct 20, 2025
b9c9750
Added custom/expandable-navbar-section.component
jr-rk Oct 22, 2025
379fb51
Fixed coloring of navbar sections
jr-rk Oct 22, 2025
2fae8be
Changed config.yml to localhost server
jr-rk Oct 22, 2025
1347566
Removed unused css declaration block
jr-rk Oct 22, 2025
a7f9b1b
Lint fixes
jr-rk Oct 22, 2025
f06d942
Added missing import
jr-rk Oct 22, 2025
11559de
Fixed paddings of search navbar icon
jr-rk Oct 22, 2025
382ec83
Fixed padding and hover styling in expandable-navbar-section
jr-rk Oct 22, 2025
fb11b6f
Fix lint errors
jr-rk Oct 22, 2025
ea31890
Fix lint errors
jr-rk Oct 22, 2025
5c356f1
Adding the popperjs dependency
jr-rk Oct 23, 2025
32df291
Adjusted Unit tests for changes in login and logout page components
jr-rk Oct 23, 2025
18cce42
Edit of build.yml to remove node_modules and package-lock.json before…
jr-rk Oct 23, 2025
0421ebf
2nd edit of build.yml workflow
jr-rk Oct 23, 2025
e10b362
Revert of build.yml changes
jr-rk Oct 23, 2025
5162f76
Trying to clean cache before installing dependecies
jr-rk Oct 27, 2025
62c1edf
Fixed garbage from previous commit
jr-rk Oct 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,64 @@ rest:
host: sandbox.dspace.org
port: 443
nameSpace: /server


# Theme Config
themes:
# Add additional themes here. In the case where multiple themes match a route, the first one
# in this list will get priority. It is advisable to always have a theme that matches
# every route as the last one
#
# # A theme with a handle property will match the community, collection or item with the given
# # handle, and all collections and/or items within it
# - name: custom
# handle: 10673/1233
#
# # A theme with a regex property will match the route using a regular expression. If it
# # matches the route for a community or collection it will also apply to all collections
# # and/or items within it
# - name: custom
# regex: collections\/e8043bc2.*
#
# # A theme with a uuid property will match the community, collection or item with the given
# # ID, and all collections and/or items within it
# - name: custom
# uuid: 0958c910-2037-42a9-81c7-dca80e3892b4
#
# # The extends property specifies an ancestor theme (by name). Whenever a themed component is not found
# # in the current theme, its ancestor theme(s) will be checked recursively before falling back to default.
# - name: custom-A
# extends: custom-B
# # Any of the matching properties above can be used
# handle: 10673/34
#
# - name: custom-B
# extends: custom
# handle: 10673/12
#
# # A theme with only a name will match every route
# name: custom
#
# # This theme will use the default bootstrap styling for DSpace components
# - name: BASE_THEME_NAME
#
- name: custom
headTags:
- tagName: link
attributes:
rel: icon
href: assets/custom/images/favicons/favicon.ico
sizes: any
- tagName: link
attributes:
rel: icon
href: assets/custom/images/favicons/favicon.svg
type: image/svg+xml
- tagName: link
attributes:
rel: apple-touch-icon
href: assets/custom/images/favicons/apple-touch-icon.png
- tagName: link
attributes:
rel: manifest
href: assets/custom/images/favicons/manifest.webmanifest
Loading