hootstrap 0.1.6 → 0.1.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 868d85c8b553f3da6b0062bc8cf066f68d2ef2a9
4
- data.tar.gz: 96b77f98787483f96c93d5f7f03abcce3f229d6c
2
+ SHA256:
3
+ metadata.gz: 90936228ebc566b5a793701ddad569b41a21dd37baaa8b9ad451791ee488119e
4
+ data.tar.gz: c885c72090fbb8234d58fd136f9b817a00e2890aaac969e05eb7393915ff37a5
5
5
  SHA512:
6
- metadata.gz: ebf1c1beb0e5772a55ad36f12c0cbbe55be89b4db0bbff72a89c490a630117c4a0cced5acebb734cf88bdb19f101bdaca865c4d3bcef394091b1960fbc05fbde
7
- data.tar.gz: 04af672d00be7a169dd8139606712d576ccbcdac52448032bee00fed0a742938e83dd82d8c5c2a47d18b37e710f6bd3f088f5012d50354c7fc0337c952e1d127
6
+ metadata.gz: 1f4f8e855af74e614270d6ce6aa61e2473efa53d73b687ed973167f19bbae5424ec1d8f8934be85204ce0d07b5572eb27b156bfecdb1bb9b414c7cbdf7d0e0e8
7
+ data.tar.gz: 32c9ab1947f413ea7cfc2dec3613e1d90406e46ba3fcdf2e63edf04f39ebcd99d47fb2333fd68c22abbcebd747c07f8856dbe2438b9d042906f6f43375b2874b
@@ -482,8 +482,7 @@ $custom-file-box-shadow: $input-box-shadow;
482
482
  $custom-file-button-color: $custom-file-color;
483
483
  $custom-file-button-bg: $input-group-addon-bg;
484
484
  $custom-file-text: (
485
- placeholder: (en: "Choose file..."),
486
- button-label: (en: "Browse")
485
+ en: "Browse"
487
486
  );
488
487
 
489
488
  // Form validation
@@ -598,6 +597,12 @@ $navbar-light-toggler-icon-bg: str-replace(
598
597
  );
599
598
  $navbar-light-toggler-border-color: rgba($black, .1);
600
599
 
600
+ // Page Header
601
+
602
+ $page-header-margin-y: 3rem;
603
+ $page-title-color: inherit;
604
+ $page-subtitle-color: $gray-600;
605
+
601
606
  // Pagination
602
607
 
603
608
  $pagination-padding-y: .5rem;
@@ -1,5 +1,6 @@
1
- @import "hootstrap/patterns/card";
2
- @import "hootstrap/patterns/list-group";
3
- @import "hootstrap/patterns/navbar";
4
- @import "hootstrap/patterns/search";
5
- @import "hootstrap/patterns/toast";
1
+ @import 'hootstrap/patterns/card';
2
+ @import 'hootstrap/patterns/list-group';
3
+ @import 'hootstrap/patterns/navbar';
4
+ @import 'hootstrap/patterns/page-header';
5
+ @import 'hootstrap/patterns/search';
6
+ @import 'hootstrap/patterns/toast';
@@ -0,0 +1,28 @@
1
+ .page-header {
2
+ padding-bottom: $page-header-margin-y;
3
+ padding-top: $page-header-margin-y;
4
+ text-align: center;
5
+ }
6
+
7
+ .page-title {
8
+ background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
9
+ background: linear-gradient(
10
+ to bottom,
11
+ rgba(255, 255, 255, 0) 62%,
12
+ rgba(255, 244, 1, 0.94) 79%,
13
+ #fff401 80%,
14
+ rgba(255, 244, 1, 0) 98%
15
+ );
16
+ color: $page-title-color;
17
+ filter: progid:DXImageTransform.Microsoft.gradient(
18
+ startColorstr='#00ffffff',
19
+ endColorstr='#00fff401',
20
+ GradientType=0
21
+ );
22
+ display: inline-block;
23
+ }
24
+
25
+ .page-subtitle {
26
+ color: $page-subtitle-color;
27
+ margin-bottom: 0;
28
+ }
@@ -1,3 +1,3 @@
1
1
  module Hootstrap
2
- VERSION = '0.1.6'
2
+ VERSION = '0.1.7'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Licata
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-15 00:00:00.000000000 Z
11
+ date: 2018-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -88,6 +88,7 @@ files:
88
88
  - assets/stylesheets/hootstrap/patterns/_card.scss
89
89
  - assets/stylesheets/hootstrap/patterns/_list-group.scss
90
90
  - assets/stylesheets/hootstrap/patterns/_navbar.scss
91
+ - assets/stylesheets/hootstrap/patterns/_page-header.scss
91
92
  - assets/stylesheets/hootstrap/patterns/_search.scss
92
93
  - assets/stylesheets/hootstrap/patterns/_toast.scss
93
94
  - assets/stylesheets/hootstrap/reset/_base.scss
@@ -122,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
123
  version: '0'
123
124
  requirements: []
124
125
  rubyforge_project:
125
- rubygems_version: 2.6.11
126
+ rubygems_version: 2.7.3
126
127
  signing_key:
127
128
  specification_version: 4
128
129
  summary: ProctorU's design system.