sports_db 0.2.14 → 0.2.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,20 @@
1
+ // Overlay an element with a psuedo-element.
2
+ //
3
+ // Add this to an element via @extend
4
+ // .your_class {
5
+ // @extend .overlay;
6
+ //
7
+ // &::after {
8
+ // /* custom */
9
+ // }
10
+ // }
11
+ .overlay {
12
+ position: relative;
13
+ &::after {
14
+ content: ""; display: block; position: absolute; top: 0; left: 0; bottom: 0; right: 0;
15
+ }
16
+ }
17
+
1
18
  .play {
2
19
  @extend .overlay;
3
20
 
@@ -0,0 +1,4 @@
1
+ <%#
2
+ The app can override this file by providing
3
+ it's own version of /app/views/shared/_footer.html.erb
4
+ %>
@@ -9,5 +9,5 @@
9
9
  # available as extensions to the MAJOR.MINOR.PATCH format.
10
10
 
11
11
  module SportsDb
12
- VERSION = "0.2.14"
12
+ VERSION = "0.2.15"
13
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sports_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.14
4
+ version: 0.2.15
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-13 00:00:00.000000000 Z
12
+ date: 2013-08-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -131,6 +131,7 @@ files:
131
131
  - app/views/application/load.html.erb
132
132
  - app/views/layouts/application.html.erb
133
133
  - app/views/shared/_articles.html.erb
134
+ - app/views/shared/_footer.html.erb
134
135
  - app/views/shared/_heading.html.erb
135
136
  - app/views/shared/_poster.html.erb
136
137
  - app/views/shared/_sharing.html.erb