Merge "RealtimePreview: Add drop shadow to floating button"

This commit is contained in:
jenkins-bot 2024-03-13 23:55:07 +00:00 committed by Gerrit Code Review
commit b7a78685ef
2 changed files with 13 additions and 0 deletions

View file

@ -71,6 +71,7 @@
top: 8px;
right: 15px;
z-index: 5;
box-shadow: 0 2px 2px 0 rgba( 0, 0, 0, 0.25 );
}
&:hover .ext-WikiEditor-reloadButton {

View file

@ -11,3 +11,15 @@
padding: 0 3px 0 0;
}
}
.ext-WikiEditor-twopanes-pane2 {
.ext-WikiEditor-reloadButton {
opacity: 0;
transition: opacity 100ms;
position: absolute;
top: 8px;
right: 15px;
z-index: 5;
box-shadow: 0 0.2em 1em rgba( 0, 0, 0, 0.3 );
}
}