Skip to content

Commit

Permalink
feat(welcome-page): added hover fill to trash icon (jitsi#15431)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonfurtado2000 authored Dec 30, 2024
1 parent 748ead7 commit 00c6bee
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions css/_meetings_list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
flex-direction: column;

.description {
color: #2f3237;
font-size: 14px;
line-height: 18px;
margin-bottom: 16px;
max-width: 436px;
color: #2f3237;
font-size: 14px;
line-height: 18px;
margin-bottom: 16px;
max-width: 436px;
}
}

Expand Down Expand Up @@ -156,14 +156,22 @@
margin-right: 16px;
position: absolute;

&> svg {
&>svg {
fill: #0074e0;
}
}

.item:hover, .item:focus, .item:focus-within {
.item:hover,
.item:focus,
.item:focus-within {
.delete-meeting {
display: block;
}

.delete-meeting:hover {
&>svg {
fill: #4687ED;
}
}
}
}
}

0 comments on commit 00c6bee

Please sign in to comment.