scroll_top 0.0.1 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/scroll_top/version.rb +1 -1
- data/vendor/assets/stylesheets/scroll_top.css +11 -5
- metadata +1 -1
data/lib/scroll_top/version.rb
CHANGED
@@ -1,16 +1,22 @@
|
|
1
1
|
#top {
|
2
2
|
display: none;
|
3
|
-
border:2px solid #ccc;
|
3
|
+
border: 2px solid #ccc;
|
4
4
|
position: fixed;
|
5
5
|
bottom: 10px;
|
6
6
|
right: 10px;
|
7
|
-
cursor:pointer;
|
8
|
-
z-index:10;
|
9
|
-
padding:10px;
|
7
|
+
cursor: pointer;
|
8
|
+
z-index: 10;
|
9
|
+
padding: 10px;
|
10
|
+
background: #fff;
|
11
|
+
opacity: 0.8;
|
12
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
|
13
|
+
filter: alpha(opacity=80);
|
14
|
+
-moz-opacity: 0.8;
|
15
|
+
-khtml-opacity: 0.8;
|
10
16
|
}
|
11
17
|
|
12
18
|
#top div {
|
13
19
|
background: url("/assets/top.png") no-repeat;
|
14
20
|
width: 32px;
|
15
21
|
height: 32px;
|
16
|
-
}
|
22
|
+
}
|