mitlibraries-theme 0.8.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +13 -1
- data/Rakefile +6 -8
- data/app/assets/config/mitlibraries_theme_manifest.js +1 -0
- data/app/assets/stylesheets/mitlibraries/theme/application.css +15 -0
- data/app/controllers/mitlibraries/theme/application_controller.rb +6 -0
- data/app/helpers/link_helper.rb +2 -0
- data/app/helpers/mitlibraries/theme/application_helper.rb +6 -0
- data/app/jobs/mitlibraries/theme/application_job.rb +6 -0
- data/app/mailers/mitlibraries/theme/application_mailer.rb +8 -0
- data/app/models/mitlibraries/theme/application_record.rb +7 -0
- data/app/views/layouts/_head.html.erb +1 -0
- data/app/views/layouts/application.html.erb +1 -1
- data/config/routes.rb +2 -0
- data/lib/mitlibraries/theme/engine.rb +11 -0
- data/lib/mitlibraries/theme/version.rb +1 -1
- data/lib/mitlibraries/theme.rb +2 -5
- data/lib/tasks/mitlibraries/theme_tasks.rake +4 -0
- metadata +29 -44
- data/.gitignore +0 -10
- data/CODE_OF_CONDUCT.md +0 -74
- data/Gemfile +0 -6
- data/Gemfile.lock +0 -167
- data/Makefile +0 -56
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/mitlibraries-theme.gemspec +0 -28
- data/vendor/assets/images/favicon.ico +0 -0
- data/vendor/assets/images/mitlib-wordmark.svg +0 -1
- data/vendor/assets/images/vi-shape7-tp.svg +0 -1
- data/vendor/assets/stylesheets/elements/_content.scss +0 -74
- data/vendor/assets/stylesheets/elements/_controls.scss +0 -156
- data/vendor/assets/stylesheets/elements/_footer.scss +0 -132
- data/vendor/assets/stylesheets/elements/_forms.scss +0 -151
- data/vendor/assets/stylesheets/elements/_header.scss +0 -93
- data/vendor/assets/stylesheets/elements/_modules.scss +0 -187
- data/vendor/assets/stylesheets/elements/_tables.scss +0 -112
- data/vendor/assets/stylesheets/global/_base.scss +0 -67
- data/vendor/assets/stylesheets/global/_helpers.scss +0 -161
- data/vendor/assets/stylesheets/global/_layouts.scss +0 -452
- data/vendor/assets/stylesheets/global/_shame.scss +0 -4
- data/vendor/assets/stylesheets/global/_typography.scss +0 -81
- data/vendor/assets/stylesheets/global/_unsets.scss +0 -29
- data/vendor/assets/stylesheets/global/_variables.scss +0 -120
- data/vendor/assets/stylesheets/global/_vendor-overrides.scss +0 -1
- data/vendor/assets/stylesheets/js-elements/_expand-collapse.scss +0 -35
- data/vendor/assets/stylesheets/libraries-main.scss +0 -39
@@ -1,39 +0,0 @@
|
|
1
|
-
// ------------------------------
|
2
|
-
// MIT Libraries Build Compile - LTR
|
3
|
-
// this compile makes a plain base css that includes everything for
|
4
|
-
// header, footer, and basic content styling across apps
|
5
|
-
|
6
|
-
// +Base - Utilities
|
7
|
-
// ====================
|
8
|
-
@import 'global/unsets';
|
9
|
-
@import 'global/variables';
|
10
|
-
@import 'global/helpers';
|
11
|
-
|
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
|
-
// ====================
|
30
|
-
|
31
|
-
// +Utility
|
32
|
-
// ====================
|
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
|
-
|