nfg_ui 0.12.9 → 0.12.13

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.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/nfg_ui/clouds-gray-lg.png +0 -0
  3. data/app/assets/images/nfg_ui/clouds-white-lg.png +0 -0
  4. data/app/assets/images/nfg_ui/engagement_banners/arrows-bg.png +0 -0
  5. data/app/assets/images/nfg_ui/engagement_banners/flowers-bg.png +0 -0
  6. data/app/assets/images/nfg_ui/engagement_banners/hearts-bg.gif +0 -0
  7. data/app/assets/images/nfg_ui/engagement_banners/snow-bg.gif +0 -0
  8. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_custom.scss +4 -1
  9. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_jumbotron.scss +10 -0
  10. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_type.scss +35 -0
  11. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_bee.scss +1 -0
  12. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_content_section.scss +88 -0
  13. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_engagement_banners.scss +23 -0
  14. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_mailings.scss +57 -0
  15. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_status_indicator.scss +2 -2
  16. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_task.scss +20 -0
  17. data/app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/_print.scss +20 -0
  18. data/app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/custom/_redactor.scss +47 -1
  19. data/app/assets/stylesheets/nfg_ui/network_for_good/core/plugins/_datetimepicker.scss +7 -0
  20. data/app/assets/stylesheets/nfg_ui/network_for_good/core/plugins/_select2.scss +0 -1
  21. data/lib/nfg_ui/version.rb +1 -1
  22. metadata +15 -3
  23. data/app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_content_section_buttons.scss +0 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e6bde6a92206f147dc04406339f2411adc15c811110d5d645581268b745a8b3
4
- data.tar.gz: 63d4060a6c6a168c4c6c1612dc19e583ea363d532663b1e3ea60957e811fce96
3
+ metadata.gz: 48270636ff7d5ce8d62ef332387b48ea8e9381777ca93902fce195310b937631
4
+ data.tar.gz: c44a50303fa2c97bc3e3e1920704d79fea297c9356e21a6540e5de3e7cf143cb
5
5
  SHA512:
6
- metadata.gz: '0787e7052aec404198307000b7817f31448615b0a6a9c2cb3a7d4311259f67e6f65b62fc170fcfd10367aaff78fdb93918b719f5daa896030187907763e4318e'
7
- data.tar.gz: 44941b332e154338a7256139aaa08b7a203309636c839a5a3f3aaa8b1235f683df53747dab35b04fab546dabe842d45f82b8d667d09483c89a04f6a440d942cd
6
+ metadata.gz: 814187c072ace52b6e1fad0fdb0d103b7a904a47f25db2cee7b17df3f0b6750891a91c32965b33cc1e77bea152c0f2d9c3e502900c777182337bde33612881a2
7
+ data.tar.gz: fb11f5633dbb6ebec0374df57f3fe379727b0ecedc276bb64a04e2153181966263c80138324471cbb266b70d941b8cd3d1baf94c6c00cc67415166f3e742f384
@@ -4,14 +4,16 @@
4
4
  @import 'custom/builder_layout';
5
5
  @import 'custom/campaign_card';
6
6
  @import 'custom/campaign_preview';
7
- @import 'custom/content_section_buttons';
7
+ @import 'custom/content_section';
8
8
  @import 'custom/custom_questions_questionnaire';
9
9
  @import 'custom/custom_receipt_language';
10
10
  @import 'custom/email_preview';
11
+ @import 'custom/engagement_banners';
11
12
  @import 'custom/free_trial';
12
13
  @import 'custom/gallery';
13
14
  @import 'custom/icomoon';
14
15
  @import 'custom/interaction';
16
+ @import 'custom/mailings';
15
17
  @import 'custom/page_header';
16
18
  @import 'custom/readmore';
17
19
  @import 'custom/redacted_text';
@@ -19,5 +21,6 @@
19
21
  @import 'custom/sortable';
20
22
  @import 'custom/status_indicator';
21
23
  @import 'custom/sys_only_functionality';
24
+ @import 'custom/task';
22
25
  @import 'custom/tile';
23
26
  @import 'custom/video_countdown';
@@ -0,0 +1,10 @@
1
+ // Cloud jumbotron
2
+ .jumbotron-clouds-white, .jumbotron-clouds-gray {
3
+ padding-bottom: 10%;
4
+ background-position: 50% 100%;
5
+ background-repeat: no-repeat;
6
+ background-size: 100% auto;
7
+ }
8
+
9
+ .jumbotron-clouds-gray { background-image: image-url("nfg_ui/clouds-gray-lg.png"); }
10
+ .jumbotron-clouds-white { background-image: image-url("nfg_ui/clouds-white-lg.png"); }
@@ -0,0 +1,35 @@
1
+ // Basic p/ol/ul styles for long content areas (for now, only on task detail description, pdf layout, and mailings edit page)
2
+ .reset-body-text {
3
+ font-size: $font-size-base;
4
+ ul, ol {
5
+ margin-bottom: 0;
6
+ margin-left: 0;
7
+ padding-left: ($spacer * .5);
8
+ font-size: $font-size-base;
9
+ li {
10
+ line-height: 1.3;
11
+ + li { margin-top: ($spacer * .25); }
12
+ span[style*="inline-block"] { vertical-align: text-top; } // used to adjust for line-height on inline-block elements inside list items
13
+ }
14
+ }
15
+ p, ul, ol {
16
+ + p, + ul, + ol { margin-top: ($spacer * .5); }
17
+ }
18
+ code, pre { font-size: $font-size-sm; }
19
+
20
+ // Styles meant for tables inside reset-body-text specifically direct mail
21
+ table {
22
+ border-collapse: collapse;
23
+ width: 100%;
24
+ td, th {
25
+ padding: 6px;
26
+ border: $border-width solid $border-color;
27
+ vertical-align: top;
28
+ }
29
+ thead td,
30
+ th {
31
+ font-weight: bold;
32
+ border-bottom-color: $border-color;
33
+ }
34
+ }
35
+ }
@@ -1,5 +1,6 @@
1
1
  #bee_plugin_container {
2
2
  height: 600px; // fallback value if calc() isn't supported
3
+ height: calc(100vh - 112px);
3
4
  border-top: 1px solid $border-color;
4
5
  border-bottom: 1px solid $border-color;
5
6
  }
@@ -0,0 +1,88 @@
1
+ // Styles for content section buttons
2
+ .cs-edit, .cs-btn-group {
3
+ position: absolute;
4
+ top: -($spacer * .5);
5
+ left: -($spacer * .5);
6
+ }
7
+ .cs-edit, .cs-rm-group, .cs-add-group {
8
+ color: $white !important;
9
+ background-color: $primary;
10
+ text-decoration: none !important;
11
+ opacity: 0.8;
12
+ z-index: 100;
13
+ &:hover { opacity: 1; }
14
+ }
15
+
16
+
17
+ // Content section styles
18
+ .content-section-wrapper, .content-section {
19
+ position: relative;
20
+ width: 100%;
21
+ line-height: 1.4;
22
+ .redactor-box {
23
+ z-index: 50;
24
+ .redactor-editor {
25
+ padding: 0;
26
+ min-height: $spacer;
27
+ font-size: inherit !important;
28
+ font-family: inherit !important;
29
+ line-height: inherit !important;
30
+ border: none;
31
+ }
32
+ }
33
+ }
34
+ .cs-form, .cs-html-editor-undo { display: none; }
35
+ .cs-html-editor-overlay {
36
+ position: absolute;
37
+ left: 50%;
38
+ bottom: 100%;
39
+ margin-bottom: ($spacer * .5);
40
+ min-width: 200px;
41
+ width: 430px;
42
+ text-align: center;
43
+ z-index: 120;
44
+ @include media-breakpoint-down(xs) { max-width: 100%; }
45
+ &[data-for='header_text'] {
46
+ top: 100%;
47
+ bottom: auto;
48
+ width: 200px;
49
+ .redactor-toolbar-external {
50
+ &:after, &:before { display: none; }
51
+ }
52
+ }
53
+ .cs-html-editor-buttons, .cs-html-editor-toolbar { left: -50%; }
54
+ .cs-html-editor-buttons {
55
+ z-index: 100;
56
+ a {
57
+ display: inline-block;
58
+ padding: $btn-padding-y $btn-padding-x;
59
+ font-size: $btn-font-size;
60
+ line-height: $btn-line-height;
61
+ color: $body-color;
62
+ text-align: center;
63
+ background-color: $white;
64
+ border: $border-width solid $border-color;
65
+ border-bottom: 0;
66
+ text-decoration: none;
67
+ border-radius: $btn-border-radius $btn-border-radius 0 0;
68
+ @include hover-focus-active {
69
+ color: $white;
70
+ background: $primary;
71
+ }
72
+ i.fa { margin-right: ($spacer * .25); }
73
+ &.cs-html-editor-save {
74
+ color: $white;
75
+ background-color: $primary;
76
+ }
77
+ + a[class^='cs-html-editor-'] { margin-left: ($spacer * .25); }
78
+ }
79
+ }
80
+ .cs-html-editor-toolbar { z-index: 50; }
81
+ }
82
+ .cs-hidden-editor-container {
83
+ position: absolute;
84
+ z-index: -1;
85
+ width: 0;
86
+ height: 0;
87
+ overflow: hidden;
88
+ }
@@ -0,0 +1,23 @@
1
+ // Holiday themed version for engagement banner
2
+ .snowflake-bg, .hearts-bg, .arrows-bg, .flowers-bg {
3
+ position: absolute;
4
+ top: 0; right: 0; bottom: 0; left: 0;
5
+ width: 100%;
6
+ z-index: 0;
7
+ }
8
+ .snowflakes-bg {
9
+ background: transparent image-url('nfg_ui/engagement_banners/snow-bg.gif') 0 0 repeat;
10
+ opacity: 0.5;
11
+ }
12
+ .hearts-bg {
13
+ background: transparent image-url('nfg_ui/engagement_banners/hearts-bg.gif') 0 0 repeat;
14
+ opacity: 0.1;
15
+ }
16
+ .arrows-bg {
17
+ background: transparent image-url('nfg_ui/engagement_banners/arrows-bg.png') 50% 50% no-repeat;
18
+ background-size: cover;
19
+ }
20
+ .flowers-bg {
21
+ background: transparent image-url('nfg_ui/engagement_banners/flowers-bg.png') 0 0 repeat;
22
+ opacity: 0.1;
23
+ }
@@ -0,0 +1,57 @@
1
+ // Used for direct mail and direct mail templates
2
+ .page {
3
+ position: relative;
4
+ background-color: $white;
5
+ border: $border-width solid $border-color;
6
+ page-break-after: always; // Always insert page break after this element
7
+ page-break-inside: avoid; // Don't break my page content up browser
8
+ @media print {
9
+ margin: 0;
10
+ padding: 0;
11
+ width: 100%;
12
+ height: 100%;
13
+ background-color: transparent;
14
+ border: none;
15
+ }
16
+ &:before {
17
+ position: absolute;
18
+ width: auto;
19
+ height: auto;
20
+ border: 2px dashed $border-color;
21
+ content: '';
22
+ z-index: 0;
23
+ @media print { display: none; }
24
+ }
25
+ }
26
+ .page-margin {
27
+ width: 100%;
28
+ height: 100%;
29
+ }
30
+ .page-content {
31
+ width: 100%;
32
+ height: 100%;
33
+ .redactor-editor, .redactor-box { background: transparent; }
34
+ .redactor-editor {
35
+ border: none;
36
+ padding: 0;
37
+ }
38
+ blockquote {
39
+ margin-left: 1.6em !important;
40
+ font-size: inherit;
41
+ font-style: italic;
42
+ color: inherit;
43
+ }
44
+ a {
45
+ color: #15c; // Clear out orange link colors to default blue
46
+ text-decoration: underline;
47
+ &:hover, &:focus, &:active {
48
+ color: #15c;
49
+ text-decoration: none;
50
+ }
51
+ }
52
+ }
53
+ .page-margin-text {
54
+ position: absolute;
55
+ top: -($spacer);
56
+ right: 0;
57
+ }
@@ -2,8 +2,8 @@
2
2
  .status-indicator {
3
3
  position: absolute;
4
4
  top: -($spacer * .5);
5
- right: -($spacer * .5);
5
+ left: -($spacer * .5);
6
6
  display: block;
7
7
  z-index: 100;
8
8
  font-size: $font-size-base;
9
- }
9
+ }
@@ -0,0 +1,20 @@
1
+ // Styles related to the task page in DM
2
+
3
+ .task {
4
+ &.selected {
5
+ border-color: $input-focus-border-color;
6
+ box-shadow: 0 0 0 ($spacer * .125) transparentize($primary, 0.8);
7
+ }
8
+ &.task-completed {
9
+ background-color: $body-bg;
10
+ .media-body {
11
+ color: $text-muted;
12
+ [class*='text-'] { color: $text-muted !important; }
13
+ }
14
+ .badge {
15
+ color: $text-muted;
16
+ background-color: $input-disabled-bg;
17
+ border-color: $border-color;
18
+ }
19
+ }
20
+ }
@@ -0,0 +1,20 @@
1
+ // stylelint-disable declaration-no-important, selector-no-qualifying-type
2
+
3
+ // Source: https://github.com/h5bp/main.css/blob/master/src/_print.css
4
+
5
+ // ==========================================================================
6
+ // Print styles.
7
+ // Inlined to avoid the additional HTTP request:
8
+ // https://www.phpied.com/delay-loading-your-print-css/
9
+ // ==========================================================================
10
+
11
+ @if $enable-print-styles {
12
+ @media print {
13
+ * { background: transparent !important; color: black !important; filter: none !important; -ms-filter: none !important; }
14
+
15
+ a[href]:after { content: " (" attr(href) ")"; }
16
+ .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } // Don't show links for images, or javascript/internal links
17
+
18
+ ul, ol, img { page-break-inside: avoid; }
19
+ }
20
+ }
@@ -4,13 +4,52 @@
4
4
  }
5
5
  .redactor-box {
6
6
  margin-bottom: 0 !important;
7
+ min-height: ($spacer * 5);
7
8
  border: $border-width solid $border-color;
8
9
  }
9
10
  .redactor-toolbar {
11
+ position: relative;
10
12
  background-color: $body-bg;
11
13
  box-shadow: none;
12
14
  border-bottom: $border-width solid $border-color;
13
- a { color: inherit !important; }
15
+ &.redactor-toolbar-external {
16
+ border-color: $border-color;
17
+ border-radius: $border-radius;
18
+ box-shadow: $box-shadow-sm;
19
+ &:after, &:before {
20
+ display: block;
21
+ top: 100%;
22
+ left: 50%;
23
+ border: solid transparent;
24
+ content: " ";
25
+ height: 0;
26
+ width: 0;
27
+ position: absolute;
28
+ pointer-events: none;
29
+ }
30
+ &:after {
31
+ border-color: rgba(255, 255, 255, 0);
32
+ border-top-color: $body-bg;
33
+ border-width: 6px;
34
+ margin-left: -6px;
35
+ }
36
+ &:before {
37
+ border-color: rgba(243, 246, 248, 0);
38
+ border-top-color: $border-color;
39
+ border-width: 7px;
40
+ margin-left: -7px;
41
+ }
42
+ }
43
+ li a {
44
+ color: inherit !important;
45
+ &.re-icon {
46
+ .body-text { font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif !important; }
47
+ }
48
+ @include hover-focus-active {
49
+ color: $white !important;
50
+ background-color: $primary;
51
+ }
52
+ }
14
53
  }
15
54
  .redactor-editor, .redactor-box, .redactor-box textarea { z-index: auto; }
16
55
  .redactor-box .redactor-toolbar { z-index: $zindex-dropdown - 10 !important; }
@@ -27,4 +66,11 @@ body.modal-open {
27
66
  // z-index was upped from 999 to 1 more than the modal...
28
67
  // in response to: https://jira.networkforgood.org/browse/PSTWO-9974
29
68
  z-index: $zindex-modal + 1 !important;
69
+ a[class^="redactor-dropdown-"] {
70
+ color: $body-color;
71
+ @include hover-focus-active {
72
+ color: $white;
73
+ background-color: $primary;
74
+ }
75
+ }
30
76
  }
@@ -277,3 +277,10 @@
277
277
  [data-action='togglePeriod']:after { content: 'Toggle AM/PM'; }
278
278
  [data-action='clear']:after { content: 'Clear the picker'; }
279
279
  [data-action='today']:after { content: 'Set the date to today'; }
280
+
281
+ body:not(.modal-open) {
282
+ .bootstrap-datetimepicker-widget { z-index: $zindex-dropdown + 1 !important; } // makes datetimepicker dropdown higher than select2
283
+ }
284
+ body.modal-open {
285
+ .modal .bootstrap-datetimepicker-widget { z-index: $zindex-modal + 3 !important; } // makes datetimepicker dropdown higher than redactor toolbar and select2 in modals
286
+ }
@@ -16,7 +16,6 @@ body.modal-open {
16
16
  .modal .select2-container { z-index: $zindex-modal + 2 !important; } // makes select2 dropdown higher than redactor toolbar in modals
17
17
  }
18
18
 
19
-
20
19
  .select2-container--default {
21
20
  &.select2-container--focus .select2-selection--multiple,
22
21
  &.select2-container--open .select2-selection--single {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NfgUi
4
- VERSION = '0.12.9'
4
+ VERSION = '0.12.13'
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.12.9
4
+ version: 0.12.13
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: 2021-07-28 00:00:00.000000000 Z
12
+ date: 2021-09-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bootstrap
@@ -372,6 +372,8 @@ files:
372
372
  - app/assets/images/nfg_ui/app_icon/mstile-150x150.png
373
373
  - app/assets/images/nfg_ui/app_icon/safari-pinned-tab.svg
374
374
  - app/assets/images/nfg_ui/app_icon/site.webmanifest.erb
375
+ - app/assets/images/nfg_ui/clouds-gray-lg.png
376
+ - app/assets/images/nfg_ui/clouds-white-lg.png
375
377
  - app/assets/images/nfg_ui/email/icons/fa-caret-right.png
376
378
  - app/assets/images/nfg_ui/email/icons/fa-check-circle-o-success.png
377
379
  - app/assets/images/nfg_ui/email/icons/fa-check-circle-success.png
@@ -380,6 +382,10 @@ files:
380
382
  - app/assets/images/nfg_ui/email/icons/fa-twitter.png
381
383
  - app/assets/images/nfg_ui/email/icons/fa-youtube.png
382
384
  - app/assets/images/nfg_ui/email/nfg-logo.png
385
+ - app/assets/images/nfg_ui/engagement_banners/arrows-bg.png
386
+ - app/assets/images/nfg_ui/engagement_banners/flowers-bg.png
387
+ - app/assets/images/nfg_ui/engagement_banners/hearts-bg.gif
388
+ - app/assets/images/nfg_ui/engagement_banners/snow-bg.gif
383
389
  - app/assets/javascripts/nfg_ui/application.coffee
384
390
  - app/assets/javascripts/nfg_ui/collapsible_toggle.coffee
385
391
  - app/assets/javascripts/nfg_ui/datepicker.coffee
@@ -416,24 +422,28 @@ files:
416
422
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_background.scss
417
423
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_custom.scss
418
424
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_grid.scss
425
+ - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_jumbotron.scss
419
426
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_media.scss
420
427
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_modal.scss
421
428
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_nav.scss
422
429
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_navbar.scss
423
430
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_tables.scss
431
+ - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/_type.scss
424
432
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_activity_feed.scss
425
433
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_bee.scss
426
434
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_builder_layout.scss
427
435
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_campaign_card.scss
428
436
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_campaign_preview.scss
429
- - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_content_section_buttons.scss
437
+ - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_content_section.scss
430
438
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_custom_questions_questionnaire.scss
431
439
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_custom_receipt_language.scss
432
440
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_email_preview.scss
441
+ - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_engagement_banners.scss
433
442
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_free_trial.scss
434
443
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_gallery.scss
435
444
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_icomoon.scss
436
445
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_interaction.scss
446
+ - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_mailings.scss
437
447
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_page_header.scss
438
448
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_readmore.scss
439
449
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_redacted_text.scss
@@ -441,6 +451,7 @@ files:
441
451
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_sortable.scss
442
452
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_status_indicator.scss
443
453
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_sys_only_functionality.scss
454
+ - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_task.scss
444
455
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_tile.scss
445
456
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_video_countdown.scss
446
457
  - app/assets/stylesheets/nfg_ui/network_for_good/core/_variables.scss
@@ -507,6 +518,7 @@ files:
507
518
  - app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/_forms.scss
508
519
  - app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/_modal.scss
509
520
  - app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/_nav.scss
521
+ - app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/_print.scss
510
522
  - app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/_progress.scss
511
523
  - app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/_reboot.scss
512
524
  - app/assets/stylesheets/nfg_ui/network_for_good/core/nfg_theme/_sizing.scss
@@ -1,11 +0,0 @@
1
- // Styles for content section buttons
2
- .cs-edit, .cs-btn-group {
3
- position: absolute;
4
- top: -($spacer * .25);
5
- left: -($spacer * .25);
6
- }
7
- .cs-edit, .cs-rm-group, .cs-add-group {
8
- opacity: 0.8;
9
- z-index: 100;
10
- &:hover { opacity: 1; }
11
- }