nfg_ui 0.14.2.2 → 0.14.3

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: a2ee6d95e7819547314cf665b8729364984d56c6b75619a65709daa5dda73c6d
4
- data.tar.gz: 42b7b4f36ca7670046dce48bc43427f618aa2a4306ecd1217ece5ecd2a06deac
3
+ metadata.gz: d7106d50e1e5e017862d17e2310177ea375a6e69186999e0b4778d38ecb6bf13
4
+ data.tar.gz: a56ebea57ca97764f9dee1384c44a013dffb32f75b02f215a8fb0768cbe7cef7
5
5
  SHA512:
6
- metadata.gz: abccdd1f0beaa575379b5ac44d3312741e332b7e7a8df478f0e600696a217b7258d20193b16974248dd90da9aa56a26b1a5801a8359115c48b5d40d70692c721
7
- data.tar.gz: e4cb1c424bd3e54a461ed753e8889732a04197e75a99d778e4b9d59e6623e3065fd2be34dfa257a722262a9445c3a3692243777882cd4b54df607c488ac3bb8c
6
+ metadata.gz: 054dbd7ec4a2204201ba8b0cfbbaa2ef2cad0419e5faa099021236f0a820097c30446e63d4e412c516cafdffe5609ec1c5a23d3f28095d00f1194773a7a0e482
7
+ data.tar.gz: 3ddb179fdab414b576cffe48e125632fd2b1fbf70e2290eb56b6b974653c04b09e4e57ae615efd4ab633fc1c195c1bb58c7e92e739c93ba5357d822559636371
@@ -1,3 +1,2 @@
1
1
  // Our custom styles
2
- @import 'custom/everyday_default';
3
2
  @import 'custom/nav_step';
@@ -2,6 +2,7 @@
2
2
  @import 'custom/background_variations';
3
3
  @import 'custom/beacon';
4
4
  @import 'custom/builder_layout';
5
+ @import 'custom/chartwell';
5
6
  @import 'custom/donor_account';
6
7
  @import 'custom/donor_scroll';
7
8
  @import 'custom/event';
@@ -9,4 +10,6 @@
9
10
  @import 'custom/everyday_default';
10
11
  @import 'custom/everyday_story';
11
12
  @import 'custom/footer_links';
13
+ @import 'custom/fundraiser';
12
14
  @import 'custom/page_header';
15
+ @import 'custom/peer_to_peer';
@@ -0,0 +1,9 @@
1
+ // styles for stats positioned on top of progress bar
2
+ .progress-stats {
3
+ position: absolute;
4
+ top: ($spacer * .125);
5
+ left: $grid-gutter-width / 2;
6
+ width: 100%;
7
+ z-index: 1;
8
+ .progress-text-on { color: color-yiq($primary); }
9
+ }
@@ -0,0 +1,26 @@
1
+ // FF Chartwell - Visual Graphing Font
2
+ // Pies
3
+ @font-face {
4
+ font-family: ChartwellPiesWebPro;
5
+ src:url(font-path('ff_chartwell/ChartwellPiesWebPro.eot'));
6
+ }
7
+
8
+ @font-face {
9
+ font-family: ChartwellPiesWebPro;
10
+ src:url(font-path('ff_chartwell/ChartwellPiesWebPro.woff')) format('woff');
11
+ }
12
+
13
+ // Used for charts on peer-to-peer and fundraiser public pages
14
+ .thumbnail {
15
+ .avatar { z-index: 1; }
16
+ .pies {
17
+ position: absolute;
18
+ top: -34px;
19
+ right: 0;
20
+ bottom: 0;
21
+ left: 0;
22
+ font-size: 160px;
23
+ line-height: 1;
24
+ z-index: 0;
25
+ }
26
+ }
@@ -23,14 +23,6 @@
23
23
  .card-body { padding: 0; }
24
24
  }
25
25
  }
26
- .progress-stats {
27
- position: absolute;
28
- top: ($spacer * .125);
29
- left: $grid-gutter-width / 2;
30
- width: 100%;
31
- z-index: 1;
32
- }
33
-
34
26
  &.admin {
35
27
  .jumbotron {
36
28
  &::before { margin-top: 0; }
@@ -39,6 +31,6 @@
39
31
  }
40
32
 
41
33
  // positioning background image properly in iframe campaign preview
42
- body.preview.everyday_default{
34
+ body.preview.everyday_default {
43
35
  .jumbotron::before { position: absolute; }
44
36
  }
@@ -0,0 +1,13 @@
1
+ .fundraiser {
2
+ .jumbotron {
3
+ height: 100%;
4
+ background-repeat: no-repeat;
5
+ background-size: cover;
6
+ @include media-breakpoint-down(md) { background-image: none !important; }
7
+ @include media-breakpoint-up(lg) {
8
+ min-height: 500px;
9
+ color: $white;
10
+ text-shadow: $box-shadow-sm;
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,20 @@
1
+ .peer_to_peer {
2
+ .jumbotron {
3
+ height: 100%;
4
+ background-repeat: no-repeat;
5
+ background-size: cover;
6
+ @include media-breakpoint-down(md) { background-image: none !important; }
7
+ @include media-breakpoint-up(lg) {
8
+ min-height: 600px;
9
+ color: $white;
10
+ text-shadow: $box-shadow-sm;
11
+ }
12
+ }
13
+ .campaign-status {
14
+ .chartwell {
15
+ color: $gray-200;
16
+ font-size: 40px;
17
+ line-height: 1;
18
+ }
19
+ }
20
+ }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NfgUi
4
- VERSION = '0.14.2.2'
4
+ VERSION = '0.14.3'
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.2.2
4
+ version: 0.14.3
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-05-19 00:00:00.000000000 Z
12
+ date: 2022-05-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bootstrap
@@ -357,6 +357,8 @@ files:
357
357
  - README.md
358
358
  - Rakefile
359
359
  - app/assets/config/nfg_ui_manifest.js
360
+ - app/assets/fonts/ff_chartwell/ChartwellPiesWebPro.eot
361
+ - app/assets/fonts/ff_chartwell/ChartwellPiesWebPro.woff
360
362
  - app/assets/fonts/product_icons/IcoMoon-product-icons.eot
361
363
  - app/assets/fonts/product_icons/IcoMoon-product-icons.svg
362
364
  - app/assets/fonts/product_icons/IcoMoon-product-icons.ttf
@@ -466,7 +468,6 @@ files:
466
468
  - app/assets/stylesheets/nfg_ui/network_for_good/core/entity_branding/nfg_theme/_reboot.scss
467
469
  - app/assets/stylesheets/nfg_ui/network_for_good/core/entity_branding/nfg_theme/_type.scss
468
470
  - app/assets/stylesheets/nfg_ui/network_for_good/core/entity_branding/nfg_theme/_utilities.scss
469
- - app/assets/stylesheets/nfg_ui/network_for_good/core/entity_branding/nfg_theme/custom/_everyday_default.scss
470
471
  - app/assets/stylesheets/nfg_ui/network_for_good/core/entity_branding/nfg_theme/custom/_nav_step.scss
471
472
  - app/assets/stylesheets/nfg_ui/network_for_good/core/entity_branding/plugins/_datetimepicker.scss
472
473
  - app/assets/stylesheets/nfg_ui/network_for_good/core/entity_branding/plugins/_select2.scss
@@ -572,10 +573,12 @@ files:
572
573
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/_list-group.scss
573
574
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/_nav.scss
574
575
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/_navbar.scss
576
+ - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/_progress.scss
575
577
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/_reboot.scss
576
578
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_background_variations.scss
577
579
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_beacon.scss
578
580
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_builder_layout.scss
581
+ - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_chartwell.scss
579
582
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_donor_account.scss
580
583
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_donor_scroll.scss
581
584
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_event.scss
@@ -583,7 +586,9 @@ files:
583
586
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_everyday_default.scss
584
587
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_everyday_story.scss
585
588
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_footer_links.scss
589
+ - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_fundraiser.scss
586
590
  - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_page_header.scss
591
+ - app/assets/stylesheets/nfg_ui/network_for_good/public/nfg_theme/custom/_peer_to_peer.scss
587
592
  - app/controllers/nfg_ui/application_controller.rb
588
593
  - app/helpers/nfg_ui/application_helper.rb
589
594
  - app/helpers/nfg_ui/components/browser_helper.rb
@@ -1,6 +0,0 @@
1
- // Styles specific to the everyday default style
2
- .everyday_default {
3
- .progress-stats {
4
- .progress-text-on { color: color-yiq($primary); }
5
- }
6
- }