nfg_ui 0.14.6.3 → 0.14.7

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: 070500f7b7f69f086db555b9360f4595253e09eee2ed5ba40d1172d29a769bc3
4
- data.tar.gz: fe8fcbbc2533e246c48ad07c5e1594c81b5a131dba991c6f9c49f88c98a41b07
3
+ metadata.gz: 05a95730f7c2225296befbfe1178af7a29b3a8ed255a50b6b95d592cde3033b9
4
+ data.tar.gz: d22f8eae5836aafb27de952191c19315b904244f809c424909ff6667c4ba9c07
5
5
  SHA512:
6
- metadata.gz: 9212b6b7cf44c324e03404703d1bc4107d08a42ca579f95459cb92fb547c36f8084df6390ac5fdec7da2c4cb971f1874d02d87eaa33ed12b6b30c324902ca534
7
- data.tar.gz: ba33f2fe53328addcc063e588c763fad7f36801830b93c08683dde1e3ec106aca09f22da57135320abf77853f89f42ab6e50297a06b7d6dddfc1493cb361dd3c
6
+ metadata.gz: ccc896b73e6e3e7d3bab1809a1596c999ad0630e956c5d2562cd2dbaa06d5308613accf902995a97db4a1bd8e36220d6ed419897873daebd774a18c2a1825340
7
+ data.tar.gz: d2508d36d8ce9d01787dd30a4543ebf98d37014ac6d56d6e4433e6e69acf26fd982fbb91455e29dee452e5a1680d2342b1c6e1b67ad12fcd1a45b559006cdf74
@@ -3,6 +3,7 @@
3
3
  @import 'custom/bee';
4
4
  @import 'custom/builder_layout';
5
5
  @import 'custom/campaign_card';
6
+ @import 'custom/check_in';
6
7
  @import 'custom/content_section';
7
8
  @import 'custom/custom_questions_questionnaire';
8
9
  @import 'custom/custom_receipt_language';
@@ -0,0 +1,39 @@
1
+ $check-in-header-height: ($spacer * 2.25);
2
+
3
+ // Contains the header fixed to the top of the browser on all devices
4
+ .check-in-header {
5
+ position: fixed;
6
+ top: 0;
7
+ right: 0;
8
+ left: 0;
9
+ z-index: $zindex-fixed + 1;
10
+ border-bottom: $border-width solid $blue-800;
11
+ }
12
+
13
+ // Shared styles between header and title
14
+ .check-in-header, .check-in-title {
15
+ padding: ($spacer * .5);
16
+ background-color: $blue-700;
17
+ }
18
+
19
+ // Container that provides padding to the top of the page to move content below header and above the footer (small devices only)
20
+ .check-in-container {
21
+ padding-top: $check-in-header-height;
22
+ @include media-breakpoint-down(sm) {
23
+ padding-bottom: ($spacer * 5);
24
+ }
25
+ }
26
+
27
+ // Shows the CTAs fixed to the bottom of the browser on small devices
28
+ .check-in-footer {
29
+ @include media-breakpoint-down(sm) {
30
+ position: fixed;
31
+ right: 0;
32
+ bottom: 0;
33
+ left: 0;
34
+ z-index: $zindex-fixed + 1;
35
+ padding: ($spacer * .5);
36
+ border-top: $border-width solid $border-color;
37
+ background-color: $white;
38
+ }
39
+ }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NfgUi
4
- VERSION = '0.14.6.3'
4
+ VERSION = '0.14.7'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nfg_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.6.3
4
+ version: 0.14.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Roehm
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-07-22 00:00:00.000000000 Z
12
+ date: 2022-08-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bootstrap
@@ -435,6 +435,7 @@ files:
435
435
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_bee.scss
436
436
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_builder_layout.scss
437
437
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_campaign_card.scss
438
+ - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_check_in.scss
438
439
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_content_section.scss
439
440
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_custom_questions_questionnaire.scss
440
441
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_custom_receipt_language.scss