Skip to content

Commit

Permalink
- Hydrogen login and register forms css styling bugfixes (#3185)
Browse files Browse the repository at this point in the history
  • Loading branch information
hexplor committed Oct 20, 2023
1 parent 2102f90 commit 2616012
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
2. [Joomla](#joomla)
1. [](#bugfix)
- Update target platforms to match Joomla 4.3 and up (#3170)
- Login forms css styling bugfixes (#3185)
- Register forms css styling bugfixes (#3185)
- Helium login forms css styling bugfixes (#3185)
- Helium register forms css styling bugfixes (#3185)
- Hydrogen login and register forms css styling bugfixes (#3185)
- Fix for Joomla 5.x debug css (#3190)

# 5.5.16
Expand Down
32 changes: 32 additions & 0 deletions themes/hydrogen/joomla/scss/hydrogen-joomla/_core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,26 @@
}
}

.btn-secondary {
background: $accent-color-2;
color: $white;
text-shadow: none;
box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
&:hover {
background: lighten($accent-color-2, 5%);
color: $white;
}
&:active, &:focus {
background: darken($accent-color-2, 5%);
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.15);
color: $white;
}
}

meter {
width: 100%;
}

.btn-group > .btn + .dropdown-toggle {
box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
Expand All @@ -32,3 +52,15 @@
.btn-link {
color: $accent-color-1;
}

// Login and registration page fixes
.login {
.plg_system_webauthn_login_button {
padding-top: 0.9rem;
min-height: 60px;

svg {
vertical-align: middle;
}
}
}

0 comments on commit 2616012

Please sign in to comment.