mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Change selected items style in 'add or remove from lists' popover
This commit is contained in:
parent
d4e094987e
commit
72baea61ed
2 changed files with 16 additions and 1 deletions
|
@ -55,7 +55,7 @@ class List extends ImmutablePureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='list'>
|
<div className={`list ${added ? 'remove' : ''}`}>
|
||||||
<div className='list__wrapper'>
|
<div className='list__wrapper'>
|
||||||
<div className='list__display-name'>
|
<div className='list__display-name'>
|
||||||
<Icon id='list-ul' icon={ListAltIcon} className='column-link__icon' />
|
<Icon id='list-ul' icon={ListAltIcon} className='column-link__icon' />
|
||||||
|
|
|
@ -7741,6 +7741,21 @@ noscript {
|
||||||
.list {
|
.list {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-bottom: 1px solid var(--background-border-color);
|
border-bottom: 1px solid var(--background-border-color);
|
||||||
|
|
||||||
|
&.remove {
|
||||||
|
background-color: lighten($ui-base-color, 26%);
|
||||||
|
|
||||||
|
& .list__wrapper .account__relationship .icon-button {
|
||||||
|
color: darken($action-button-color, 10%);
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:active,
|
||||||
|
&:focus {
|
||||||
|
color: darken($action-button-color, 17%);
|
||||||
|
background-color: rgba($ui-base-color, 0.15);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.list__wrapper {
|
.list__wrapper {
|
||||||
|
|
Loading…
Reference in a new issue