dta_rapid 0.2.14 → 0.2.15

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
2
  SHA1:
3
- metadata.gz: 3073659d3db1edd593699239fc4ef72879aca5ea
4
- data.tar.gz: 33d2ad4e88e6cc06b0bd362fd395d837f86d820b
3
+ metadata.gz: 47c2ef62687d83563b2980404ad48ec51d8fbe7c
4
+ data.tar.gz: f09d8e116f22b8fb6084a3c4e72fa885be23ad77
5
5
  SHA512:
6
- metadata.gz: 2be1336a7ae680eb58379eff5714e2203a8b337e693508e0f47c24772199922ff4835b9bf662c5f07612dc95114a70014624a3bcab3809c12712f7f265573c83
7
- data.tar.gz: b093f95f7486d27020da46431c73c95d924892dbf2145598f90c04b9c5c028b32cb7cd4d66c47f0bd39757d19f4c21733d6c3657f6887b2a233d64fa77e9aeac
6
+ metadata.gz: 0203b868e4a33ea65c421a28d2d6e0067a60bc5845d849dc33141c998bda87c3daf4b98fa991e5648b01e4383e9331cc5e7106d0957bf75f6557847a8aca8c66
7
+ data.tar.gz: 7c9e5b165be3d437b8bb81acfb00cc3ecf1eb75ac3c9ba3446c1e1dcb7fa92993e2df185de3eede1b66ce2b465847263a48b6d0b2a82f39c760fbc2dbc5673f2
@@ -0,0 +1 @@
1
+ <span class="badge__root">{{ include.text }}</span>
@@ -0,0 +1 @@
1
+ <p class="callout__root">{{ include.text }}</p>
@@ -9,8 +9,11 @@
9
9
  </head>
10
10
 
11
11
  <body>
12
+ <header>
13
+ <p class="callout__root">This is a prototype. Please don't fill it in with your real information.</p>
14
+ </header>
12
15
  <main>
13
- <div class="wrapper">{{ content }}</div>
16
+ <div class="wrapper">{{ content }}</div>
14
17
  </main>
15
18
  </body>
16
19
 
@@ -55,3 +55,7 @@ $input-focus-color: $focus-color;
55
55
 
56
56
  $border-color: $light-grey;
57
57
  $background-color: white;
58
+
59
+ // Badge colors - see _sass/components/_badge.scss
60
+
61
+ $badge-prototype-color: $dark-grey;
@@ -0,0 +1,11 @@
1
+ .badge__root {
2
+ display: inline-block;
3
+ background-color: $badge-prototype-color;
4
+ border-radius: $large-border-radius;
5
+ padding: $tiny-spacing $small-spacing;
6
+ line-height: 1;
7
+ letter-spacing: 1px;
8
+ color: lighten($badge-prototype-color, 75%);
9
+ font-size: 0.875rem;
10
+ }
11
+
@@ -0,0 +1,14 @@
1
+ .callout__root {
2
+ margin: $base-spacing $small-spacing;
3
+ padding: $medium-spacing $medium-spacing $medium-spacing $base-spacing;
4
+ border-radius: $tiny-border-radius;
5
+ box-shadow: 0 0 8px $light-grey;
6
+ padding-left: $base-spacing - $tiny-spacing;
7
+ border-left-width: $tiny-spacing;
8
+ border-left-style: solid;
9
+ border-left-color: $dark-grey;
10
+ }
11
+
12
+ .callout__root--info {
13
+ border-left-color: $info-color;
14
+ }
@@ -15,5 +15,7 @@
15
15
  @import "forms";
16
16
  @import "components/text-field";
17
17
  @import "components/button";
18
+ @import "components/badge";
19
+ @import "components/callout";
18
20
 
19
21
  @import "print";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dta_rapid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.14
4
+ version: 0.2.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gareth Rogers
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-02-24 00:00:00.000000000 Z
13
+ date: 2017-02-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: jekyll
@@ -70,6 +70,8 @@ files:
70
70
  - _includes/forms/radio-field.html
71
71
  - _includes/forms/text-field.html
72
72
  - _includes/link-button.html
73
+ - _includes/typography/badge.html
74
+ - _includes/typography/callout.html
73
75
  - _layouts/default.html
74
76
  - _sass/_colors.scss
75
77
  - _sass/_easings.scss
@@ -80,7 +82,9 @@ files:
80
82
  - _sass/_print.scss
81
83
  - _sass/_typography.scss
82
84
  - _sass/_variables.scss
85
+ - _sass/components/_badge.scss
83
86
  - _sass/components/_button.scss
87
+ - _sass/components/_callout.scss
84
88
  - _sass/components/_text-field.scss
85
89
  - _sass/mixins/_clearfix.scss
86
90
  - _sass/mixins/_ellipsis.scss