fix opacity of control icons
This commit is contained in:
parent
9793827f20
commit
e5e63b09a3
2 changed files with 20 additions and 14 deletions
|
|
@ -41,6 +41,7 @@
|
||||||
* Do not display photos in the background in the SPV [#4407](https://github.com/diaspora/diaspora/pull/4407)
|
* Do not display photos in the background in the SPV [#4407](https://github.com/diaspora/diaspora/pull/4407)
|
||||||
* Fix mobile view of deleted reshares [#4397](https://github.com/diaspora/diaspora/issues/4397)
|
* Fix mobile view of deleted reshares [#4397](https://github.com/diaspora/diaspora/issues/4397)
|
||||||
* Fix the overlapping of embedded youtube videos [#2943](https://github.com/diaspora/diaspora/issues/2943)
|
* Fix the overlapping of embedded youtube videos [#2943](https://github.com/diaspora/diaspora/issues/2943)
|
||||||
|
* Fix opacity of control icons [#4414](https://github.com/diaspora/diaspora/issues/4414/)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
* Admin: add option to find users under 13 (COPPA) [#4252](https://github.com/diaspora/diaspora/pull/4252)
|
* Admin: add option to find users under 13 (COPPA) [#4252](https://github.com/diaspora/diaspora/pull/4252)
|
||||||
|
|
|
||||||
|
|
@ -242,31 +242,25 @@ ul.as-selections
|
||||||
:float left
|
:float left
|
||||||
:margin
|
:margin
|
||||||
:top 6px
|
:top 6px
|
||||||
|
|
||||||
|
.controls:first-child
|
||||||
|
.control_icon
|
||||||
|
@include transition(opacity)
|
||||||
|
@include opacity(0)
|
||||||
&:hover
|
&:hover
|
||||||
.controls:first-child
|
.controls:first-child
|
||||||
.control_icon
|
.control_icon
|
||||||
@include opacity(0.5)
|
@include opacity(0.3)
|
||||||
|
.control_icon:hover
|
||||||
|
@include opacity(1)
|
||||||
|
|
||||||
.info
|
.info
|
||||||
:font-size smaller
|
:font-size smaller
|
||||||
|
|
||||||
.control_icon
|
|
||||||
@include opacity(0.3)
|
|
||||||
:padding 5px
|
|
||||||
|
|
||||||
&:hover
|
|
||||||
@include opacity(1)
|
|
||||||
|
|
||||||
.controls
|
.controls
|
||||||
@include transition(opacity)
|
|
||||||
@include opacity(0)
|
|
||||||
:z-index 6
|
:z-index 6
|
||||||
:float right
|
:float right
|
||||||
|
|
||||||
&:hover
|
|
||||||
@include opacity(1)
|
|
||||||
|
|
||||||
.block_user
|
.block_user
|
||||||
:display inline-block
|
:display inline-block
|
||||||
|
|
||||||
|
|
@ -384,6 +378,17 @@ ul.as-selections
|
||||||
|
|
||||||
:padding
|
:padding
|
||||||
:top 10px
|
:top 10px
|
||||||
|
|
||||||
|
.controls
|
||||||
|
.comment_delete
|
||||||
|
@include transition(opacity)
|
||||||
|
@include opacity(0)
|
||||||
|
&:hover
|
||||||
|
.controls
|
||||||
|
.comment_delete
|
||||||
|
@include opacity(0.3)
|
||||||
|
.comment_delete:hover
|
||||||
|
@include opacity(1)
|
||||||
|
|
||||||
.youtube-player, .vimeo-player
|
.youtube-player, .vimeo-player
|
||||||
:border none
|
:border none
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue