Skip to content

Commit

Permalink
77897 SGU mods
Browse files Browse the repository at this point in the history
  • Loading branch information
ottenhoff committed May 16, 2024
1 parent 4fa118c commit 4b72820
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@ jobs:
cp "src/skins/default/images/${theme}.png" "src/skins/default/images/sakaiLogo.png"
fi
mvn --batch-mode -o -DskipTests -Dmaven.tomcat.home=$TOMCAT_DIR install sakai:deploy-exploded -Dsakai.skin.target=$theme
echo "skin.default=$theme" >> $TOMCAT_DIR/sakai/local.properties
done < <(find "$scss_dir" -name '_*.scss' -printf "%T@ %p\n" | sort -n | cut -d' ' -f2-)
# Most recent theme for testing
recent_theme=$(basename "$(git log -1 --format= --name-only --diff-filter=AM -- "library/src/skins/default/src/sass/themes/_*.scss")" .scss | sed 's/^_//')
echo "skin.default=$recent_theme" >> $TOMCAT_DIR/sakai/local.properties
cd $TOMCAT_DIR
bin/catalina.sh start
- name: Upload Artifact
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,8 @@ div.fav-title-myworkspace {
height: $all-sites-button-height;
line-height: 29px;
text-decoration: none !important;
text-overflow: ellipsis;
overflow: hidden;
vertical-align: middle;

.fullTitle {
Expand Down
4 changes: 4 additions & 0 deletions library/src/skins/default/src/sass/themes/_sgu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@
#logoWrapper .btn {
padding: 0 !important;
}

.portal-header .portal-header-breadcrumb-separator, .portal-header .portal-header-breadcrumb-item > a {
color: var(--sakai-black) !important;
}

0 comments on commit 4b72820

Please sign in to comment.