Skip to content

Commit

Permalink
!fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
raimund-schluessler committed Sep 17, 2021
1 parent 5ef43f8 commit 0e4fec8
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions src/components/AppSidebar/AppSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ include a standard-header like it's used by the files app.
'star--starred': isStarred,
'star--star': !isStarred,
}"
class="star"
:size="20"
decorative />
</a>
Expand Down Expand Up @@ -799,19 +800,27 @@ $top-buttons-spacing: 6px;
height: $clickable-area;
padding: $icon-margin;
.icon-loading-small {
display: block;
width: $clickable-area;
height: $clickable-area;
}
.star {
width: $clickable-area;
height: $clickable-area;
&--star {
color: #FC0;
color: #000;
opacity: .5;
&:hover {
color: #000;
opacity: .5;
color: #FC0;
}
}
&--starred {
color: #000;
opacity: .5;
color: #FC0;
&:hover {
color: #FC0;
color: #000;
opacity: .5;
}
}
}
Expand Down

0 comments on commit 0e4fec8

Please sign in to comment.