nfg_ui 0.14.6.3 → 0.14.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
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 05a95730f7c2225296befbfe1178af7a29b3a8ed255a50b6b95d592cde3033b9
|
|
4
|
+
data.tar.gz: d22f8eae5836aafb27de952191c19315b904244f809c424909ff6667c4ba9c07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ccc896b73e6e3e7d3bab1809a1596c999ad0630e956c5d2562cd2dbaa06d5308613accf902995a97db4a1bd8e36220d6ed419897873daebd774a18c2a1825340
|
|
7
|
+
data.tar.gz: d2508d36d8ce9d01787dd30a4543ebf98d37014ac6d56d6e4433e6e69acf26fd982fbb91455e29dee452e5a1680d2342b1c6e1b67ad12fcd1a45b559006cdf74
|
|
@@ -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
|
+
}
|
data/lib/nfg_ui/version.rb
CHANGED
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.
|
|
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-
|
|
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
|