mitlibraries-theme 0.3.0 → 0.3.1.pre

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
  SHA256:
3
- metadata.gz: de38546e2c7a45271c2ae4b508d4e4f3b2d4ed7e74ef312891df1272ad25216c
4
- data.tar.gz: b263d93cd14fb37f837359891b27469b057e2ba06fb80244d7afb757bd06ccda
3
+ metadata.gz: 51ccd7dceba8970e30936dad8c98e16ad836e1ff59b841af40532ccd7b17dfa7
4
+ data.tar.gz: 6d9c67a968beac4ad5a56dae3a1f8196da636121048aeb514760b52f7ff4a57b
5
5
  SHA512:
6
- metadata.gz: 4a510b5c284e429b845fcd44191b7767865c67698aa133725a42bb4d55dcd5013f716d03bc50ab618975a91b0a933f7e0169ccbda761e0c80bdc862138ab588d
7
- data.tar.gz: da61ea18d08c298dc08ad53d07d10df8b27af51fd0a5b52060eff27aa7169f98f8a987934555d9b2183ce70d26f7254343305a2d52f27f54ae74f1c3d25d80d2
6
+ metadata.gz: 0ad5c76d64b116769e808cc7879b285965584a9bd27abf3e2f3fb24d3b13b8d5acc2a1ef88d73ab16ffaaa41f605f3d843ca52c02315432b18dcfca5bce449ad
7
+ data.tar.gz: 82f0bba19a699cf0e77506a0414a9db7665b38b40d2cf22f9a2933f583189cd13547092ce095950af4e600134f41f80cd8596356caf099c418cc7cdf9d1bbcbd
data/README.md CHANGED
@@ -75,7 +75,18 @@ called multiple times the results are concatenated.
75
75
 
76
76
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
77
77
 
78
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
78
+ Building and publishing this gem is handled via the `Makefile`.
79
+
80
+ Run `make help` for details.
81
+
82
+ If your goal is to fetch assets from the style repo and publish the changes,
83
+ this would get you there:
84
+ - `make fetch_assets`
85
+ - `make update_assets`
86
+ - manually update the version in `lib/mitlibraries/theme/version.rb`
87
+ - `make dist`
88
+ - test the gem in a local version of a site that uses it with the info the previous command provided on completion
89
+ - `make publish`
79
90
 
80
91
  ## Contributing
81
92
 
@@ -1,5 +1,5 @@
1
1
  module Mitlibraries
2
2
  module Theme
3
- VERSION = '0.3.0'.freeze
3
+ VERSION = '0.3.1.pre'.freeze
4
4
  end
5
5
  end
@@ -60,4 +60,8 @@ a {
60
60
  background: -webkit-linear-gradient(45deg, #f23074 0%,#d6d628 36%,#207cca 66%,#544b8c 100%); /* Chrome10-25,Safari5.1-6 */
61
61
  background: linear-gradient(45deg, #f23074 0%,#d6d628 36%,#207cca 66%,#544b8c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
62
62
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f23074', endColorstr='#544b8c',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
63
+
64
+ .wrap-header {
65
+ background: transparent;
66
+ }
63
67
  }
@@ -87,8 +87,8 @@ $fs-smallish: 1.3rem;
87
87
  $fs-small: 1.4rem;
88
88
  $fs-base: 1.6rem;
89
89
  $fs-large: 2.0rem;
90
- $fs-xlarge: 2.8rem;
91
- $fs-xxlarge: 3.6rem;
90
+ $fs-xlarge: 2.6rem;
91
+ $fs-xxlarge: 3.2rem;
92
92
  $fs-xxxlarge: 4.2rem;
93
93
  $fs-xxxxlarge: 4.8rem;
94
94
 
@@ -1,17 +1,39 @@
1
1
  // ------------------------------
2
2
  // MIT Libraries Build Compile - LTR
3
- // this compile makes a plain base css that includes everything for
3
+ // this compile makes a plain base css that includes everything for
4
4
  // header, footer, and basic content styling across apps
5
5
 
6
- // +Get the core styles
6
+ // +Base - Utilities
7
7
  // ====================
8
- @import 'core';
8
+ @import 'global/unsets';
9
+ @import 'global/variables';
10
+ @import 'global/helpers';
9
11
 
10
- // +Select styles that need js
11
- @import 'js-elements/expand-collapse';
12
+ // +Starter
13
+ // ====================
14
+ @import 'global/base';
15
+ @import 'global/typography';
16
+ @import 'global/layouts'; // various standard layouts
17
+
18
+ // +Elements
19
+ // ====================
20
+ @import 'elements/content'; // general content styles
21
+ @import 'elements/controls'; // buttons, link styles, sliders, etc.
22
+ @import 'elements/forms';
23
+ @import 'elements/modules'; // block level UI bits
24
+ @import 'elements/tables';
25
+ @import 'elements/header';
26
+ @import 'elements/footer';
27
+
28
+ // +Specific Views
29
+ // ====================
12
30
 
13
- // TODO - split this into a separate compile
14
- // app specific styles
31
+ // +Utility
15
32
  // ====================
16
- //@import 'apps/ebooks';
17
- //@import 'apps/quicksubmit';
33
+ @import 'global/vendor-overrides'; // overrides to vendor-provided styling
34
+ @import 'global/shame'; // used for any bad-form/orphaned scss
35
+
36
+
37
+ // +Select styles that need js
38
+ @import 'js-elements/expand-collapse';
39
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mitlibraries-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Prevost
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-11 00:00:00.000000000 Z
11
+ date: 2019-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -127,7 +127,6 @@ files:
127
127
  - vendor/assets/images/favicon.ico
128
128
  - vendor/assets/images/mitlib-wordmark.svg
129
129
  - vendor/assets/images/vi-shape7-tp.svg
130
- - vendor/assets/stylesheets/_core.scss
131
130
  - vendor/assets/stylesheets/elements/_content.scss
132
131
  - vendor/assets/stylesheets/elements/_controls.scss
133
132
  - vendor/assets/stylesheets/elements/_footer.scss
@@ -160,9 +159,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
160
159
  version: '0'
161
160
  required_rubygems_version: !ruby/object:Gem::Requirement
162
161
  requirements:
163
- - - ">="
162
+ - - ">"
164
163
  - !ruby/object:Gem::Version
165
- version: '0'
164
+ version: 1.3.1
166
165
  requirements: []
167
166
  rubyforge_project:
168
167
  rubygems_version: 2.7.6
@@ -1,32 +0,0 @@
1
- // ------------------------------
2
- // Core compile of MIT Libraries styles needed for all apps
3
-
4
- // +Base - Utilities
5
- // ====================
6
- @import 'global/unsets';
7
- @import 'global/variables';
8
- @import 'global/helpers';
9
-
10
- // +Starter
11
- // ====================
12
- @import 'global/base';
13
- @import 'global/typography';
14
- @import 'global/layouts'; // various standard layouts
15
-
16
- // +Elements
17
- // ====================
18
- @import 'elements/content'; // general content styles
19
- @import 'elements/controls'; // buttons, link styles, sliders, etc.
20
- @import 'elements/forms';
21
- @import 'elements/modules'; // block level UI bits
22
- @import 'elements/tables';
23
- @import 'elements/header';
24
- @import 'elements/footer';
25
-
26
- // +Specific Views
27
- // ====================
28
-
29
- // +Utility
30
- // ====================
31
- @import 'global/vendor-overrides'; // overrides to vendor-provided styling
32
- @import 'global/shame'; // used for any bad-form/orphaned scss