dfm_web 2.1.9 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/dfm_web/layout.css +2 -3
- data/lib/dfm_web/version.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7469ce68bb931351a4dd33f23872d711059e3ed9c9cf884e276f4c782ee249b
|
4
|
+
data.tar.gz: 2014bdccdc2e269dc142ed70a3d3c40c4a63df28eadd4f6af26929172b19904f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 166e684ac86526f11cdc17b8f886620301cedaaee7ec59fccd7e879cc336b4e2d724bea58f821cbc5ffa86dc057e44f939ee72b61b4deba350aa0dd5a5da2264
|
7
|
+
data.tar.gz: ee03db0116d745c327e0795e7407815a6b54743ce5f6decf0e0ef12290ec87bde4445a69cc5ddd5bf87e0135234f4ecea64a3189409eeab72054acd8ff60bd02
|
@@ -55,7 +55,7 @@ main {
|
|
55
55
|
overflow: hidden;
|
56
56
|
}
|
57
57
|
|
58
|
-
/* By default, the footer will be at the bottom of the window, following content.
|
58
|
+
/* By default, the footer will be at the bottom of the window, following content. */
|
59
59
|
footer {
|
60
60
|
position: absolute;
|
61
61
|
left: 0;
|
@@ -65,8 +65,7 @@ footer {
|
|
65
65
|
}
|
66
66
|
|
67
67
|
/* To make the entire footer fixed (always visible), give it the 'fixed' class. */
|
68
|
-
footer.fixed
|
69
|
-
{
|
68
|
+
footer.fixed {
|
70
69
|
position: fixed;
|
71
70
|
}
|
72
71
|
|
data/lib/dfm_web/version.rb
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
module DfmWeb
|
2
|
-
VERSION = "2.
|
2
|
+
VERSION = "2.2.0"
|
3
3
|
end
|
4
4
|
|
5
5
|
|
6
6
|
# Version History
|
7
7
|
|
8
|
+
# 2.2.0 Update CSS comments dealing with footer options.
|
8
9
|
# 2.1.9 Built in support for always visible footer.
|
9
10
|
# 2.1.8 Table search feature now case sensitive and rate limited.
|
10
11
|
# 2.1.7 Shifted the visibility media queries by 1 px (except xlarge). Most important, large starts at 1024px instead of 1025px.
|