Hide scrollbars on screenshot (show then on hover)

This commit is contained in:
Gaël Métais
2015-08-16 14:03:55 +02:00
parent 143436ecd3
commit 9cb3c78def
2 changed files with 9 additions and 2 deletions
+4 -1
View File
@@ -192,8 +192,11 @@ a.linkButton {
background: #000;
}
.screenshotWrapper > div {
overflow: scroll;
position: relative;
overflow: hidden;
}
.screenshotWrapper > div:hover {
overflow: auto;
}
.screenshotWrapper .screenshotImage {
width: 100%;
+5 -1
View File
@@ -132,8 +132,12 @@ a.linkButton {
background: #000;
> div {
overflow: scroll;
position: relative;
overflow: hidden;
&:hover {
overflow: auto;
}
}
.screenshotImage {