sul_styles 0.5.1 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2d02180ed772a4d37f30e5120deb8c23e545f7bf
4
- data.tar.gz: b41f9dbbdcbf1a4b49f70747630e0b46ec21acec
3
+ metadata.gz: 8e6b58b3e69919ad7bc8981d0c50398f03b48acd
4
+ data.tar.gz: 5762f4fdb7ee6c0a5f038524782feb1611bd18e8
5
5
  SHA512:
6
- metadata.gz: b1ea533156e472d4adf052ef212c3eade3a78c0aa1a2aa9e027025ca40f27a2779c16ff86b225732f51aa0665203cb6b4c4f84a118a716107f7ba49a75ffa569
7
- data.tar.gz: bfb8208deec059a968b340b1aa5752c0dc41e8a1667f518d828b6e72350aa891680d0f59ae620095bd33bce15e40246a46686bca73c1f4fb1cbc385d656283ac
6
+ metadata.gz: fa729ae5ce9461bbd6687bb31d5b5b90f0771f35f4313db22657fc48679b6a43c62aeb402b2a1ab04c81ef21b2317c31d68c3401f007d4bf354c144550fe0cb5
7
+ data.tar.gz: 504b35e5ed2921d28c7108a84fb3e0a0b759996233fe2377658bd8ce26667f7b4e9dafc2e33d82e3617a591a420c887ca45c97f2f181b93f5e45a144d5836d1e
@@ -1,3 +1,4 @@
1
-
2
1
  @import 'sul-styles/su_web_colors';
3
2
  @import 'sul-styles/su_primary_colors';
3
+ @import 'sul-styles/variables';
4
+ @import 'sul-styles/sul_footer';
@@ -0,0 +1,77 @@
1
+ #su-content {
2
+ padding-bottom: $footer-height !important;
3
+ }
4
+
5
+ #sul-footer-container {
6
+ background-color: $sul-footer-bg-color;
7
+ border-top: 1px solid $sul-footer-border-top-color;
8
+ -webkit-box-shadow: $sul-footer-shadow;
9
+ box-shadow: $sul-footer-shadow;
10
+ clear: both;
11
+ margin-top: -1 * $footer-height;
12
+ min-height: $footer-height;
13
+ padding: 0 !important;
14
+ position: relative;
15
+ }
16
+
17
+ #sul-footer {
18
+ display: table;
19
+ font-size: small;
20
+ height: 80px;
21
+ margin: 0 auto;
22
+ padding: 0;
23
+
24
+ ul {
25
+ list-style-type: none;
26
+ margin: 0;
27
+ }
28
+
29
+ li {
30
+ display: inline;
31
+ margin: 0 13px 3px 0;
32
+ padding: 0;
33
+
34
+ a {
35
+ color: $color-blackish;
36
+ white-space: nowrap;
37
+ }
38
+
39
+ a,
40
+ a:hover,
41
+ a:focus {
42
+ border-bottom: 1px dotted $color-gray-60;
43
+ text-decoration: none;
44
+ }
45
+ }
46
+ }
47
+
48
+ #sul-footer-img {
49
+ display: table-cell;
50
+ vertical-align: middle;
51
+ width: 162px;
52
+ }
53
+
54
+ #sul-footer-links {
55
+ display: table-cell;
56
+ padding-left: 15px;
57
+ text-align: left;
58
+ vertical-align: middle;
59
+ }
60
+
61
+ @media (min-width: 768px) {
62
+ #sul-footer {
63
+ width: 750px;
64
+ }
65
+ }
66
+
67
+ @media (min-width: 980px) {
68
+ #sul-footer {
69
+ width: 970px;
70
+ }
71
+ }
72
+
73
+ @media (min-width: 1200px) {
74
+ #sul-footer {
75
+ width: 1170px;
76
+ }
77
+ }
@@ -0,0 +1,5 @@
1
+ $sul-footer-bg-color: $color-beige-10;
2
+ $sul-footer-border-top-color: $color-beige-20;
3
+ $footer-height: 200px;
4
+ $sul-footer-shadow-color: rgba(0, 0, 0, 0.2);
5
+ $sul-footer-shadow: 0 4px 8px -8px $sul-footer-shadow-color inset;
@@ -1,3 +1,3 @@
1
1
  module SulStyles
2
- VERSION = "0.5.1"
2
+ VERSION = "0.6.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sul_styles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jack Reed
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-10-29 00:00:00.000000000 Z
11
+ date: 2016-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -152,6 +152,8 @@ files:
152
152
  - app/assets/stylesheets/sul-styles.scss
153
153
  - app/assets/stylesheets/sul-styles/su_primary_colors.scss
154
154
  - app/assets/stylesheets/sul-styles/su_web_colors.scss
155
+ - app/assets/stylesheets/sul-styles/sul_footer.scss
156
+ - app/assets/stylesheets/sul-styles/variables.scss
155
157
  - app/controllers/sul_styles/style_guide_controller.rb
156
158
  - app/views/layouts/styleguide.html.erb
157
159
  - app/views/sul_styles/style_guide/colors.html.erb
@@ -230,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
230
232
  version: '0'
231
233
  requirements: []
232
234
  rubyforge_project:
233
- rubygems_version: 2.4.5
235
+ rubygems_version: 2.4.6
234
236
  signing_key:
235
237
  specification_version: 4
236
238
  summary: A gem for adding Stanford University Libraries styles to Rails applications