Skip to content

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Feb 3, 2025
1 parent e2d75a5 commit 4a2cd7e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="jenkins-dropdown">
<a class="jenkins-dropdown__item" href="${rootURL}/${it.user.url}">
<div class="jenkins-dropdown__item__icon">
<l:icon src="${it.iconFileName}" />
<l:icon src="${it.iconFileName}" class="jenkins-avatar" />
</div>
${it.user.fullName}
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/main/scss/base/_layout-commons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@media (min-width: breakpoints.$tablet-breakpoint) {
&--sticky {
position: sticky;
top: 70px;
top: var(--header-height);
align-self: flex-start;
z-index: 21; // todo - reset this
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/scss/components/_app-bar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

&--sticky {
position: sticky;
top: 70px;
top: var(--header-height);
z-index: 21; // todo - reset this
}

Expand Down
8 changes: 0 additions & 8 deletions src/main/scss/components/_dropdowns.scss
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,6 @@ $dropdown-padding: 0.375rem;
height: 1.125rem;
color: inherit;
}

img {
border-radius: 100px;
outline: 1px solid
color-mix(in sRGB, var(--text-color) 10%, transparent);
background: color-mix(in sRGB, var(--text-color) 5%, transparent);
outline-offset: -1px;
}
}

&:disabled {
Expand Down

0 comments on commit 4a2cd7e

Please sign in to comment.