Skip to content

Commit

Permalink
fix: update tooltip text (#392)
Browse files Browse the repository at this point in the history
* fix: update tooltip text

* feat: use text instead of dynamic HTML
  • Loading branch information
NithinKuruba authored Oct 15, 2024
1 parent d8e087d commit 74b54d0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,5 @@

.kc-social-icon:hover .tooltiptext {
visibility: visible;
word-wrap: break-word;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ document.addEventListener('DOMContentLoaded', function (event) {
const titleContent = errorElem ? 'Login Error:' : 'Authenticate with:';
document.getElementById('kc-page-title').innerHTML = titleContent;

addTooltips();
//addTooltips();

if (titleContent === 'Login Error:') {
if (
Expand Down
2 changes: 1 addition & 1 deletion localdev/macs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ENV KC_DB=postgres

COPY --from=extensions-builder /tmp/services/target/bcgov-services-1.0.0.jar /opt/keycloak/providers/

COPY ./docker/keycloak/extensions-24/themes/src/main/resources/theme /opt/keycloak/themes/
# COPY ./docker/keycloak/extensions-24/themes/src/main/resources/theme /opt/keycloak/themes/

RUN /opt/keycloak/bin/kc.sh build

Expand Down
2 changes: 2 additions & 0 deletions localdev/macs/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ services:
KC_HTTP_RELATIVE_PATH: /auth
KC_HOSTNAME_URL: http://localhost:8080/auth/
KC_HOSTNAME_ADMIN_URL: http://localhost:8080/auth/
volumes:
- ../../docker/keycloak/extensions-24/themes/src/main/resources/theme:/opt/keycloak/themes/

postgres:
image: postgres:15
Expand Down

0 comments on commit 74b54d0

Please sign in to comment.