nfg_ui 0.11.9 → 0.11.10

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: feeec19c011b520fc542365a94ae4c0def08850b8f3bb394376ea44cff7ef174
4
- data.tar.gz: a7b77844b75d25c800c05707a4d21db8814a4cdcc82244f5eebce03a815f3908
3
+ metadata.gz: e34dd1689fbc138c1f6f147056cf00a639784191b11c9589e1e29b0a17a2f404
4
+ data.tar.gz: 6c926d086c1cc2e0e28f9430af109880b501fd9f3f796f23419a9a765d458126
5
5
  SHA512:
6
- metadata.gz: 07e73749f7feab579f0a8e9cc617850ce53f4311be7d7c08e7f30a6e9d32be4a5cf44d3797c71b69d78c018d41a400d77d9e36d32bb557810c2e6b69c1ae4c80
7
- data.tar.gz: 8d8783f40d9454d708dd3923d66fad396f35d2fa7f5f3460bcc42e7c69c3cb55eadc90e6cc66ab0b10019225544bd32181bc45508f7cfc2e03ca54fac018085f
6
+ metadata.gz: d88d70a213d8b19fa0638ac70fb93d286cced3bcf1215003bcd313754ba7f6053eba20fa474ccc86fc96d7db4561ec25ea89b266c94f550305df3aa4d85c5d7b
7
+ data.tar.gz: d31c17da3d988e609660b3490a5950d56e511d569e755ef47c748ef5479ca8b954b96040ec27a608ebd20ae4a4148f0d0e4c41b80c328f22924e97422ed2baa1
@@ -18,5 +18,6 @@
18
18
  @import 'custom/share_dropdown';
19
19
  @import 'custom/sortable';
20
20
  @import 'custom/status_indicator';
21
+ @import 'custom/sys_only_functionality';
21
22
  @import 'custom/tile';
22
23
  @import 'custom/video_countdown';
@@ -0,0 +1,51 @@
1
+ // Heartbeat "beacon" styles for sysuser functionality
2
+ .notify {
3
+ position: absolute;
4
+ top: 0;
5
+ right: 0;
6
+ z-index: 50;
7
+ .heartbit {
8
+ position: absolute;
9
+ top: -($spacer * .75);
10
+ right: -($spacer * .75);
11
+ height: ($spacer * 1.5);
12
+ width: ($spacer * 1.5);
13
+ z-index: 10;
14
+ border: 6px solid $warning;
15
+ border-radius: ($spacer * .75);
16
+ animation: heartbit 1s ease-out infinite;
17
+ }
18
+ .point {
19
+ position: absolute;
20
+ right: -($spacer * .25);
21
+ top: -($spacer * .25);
22
+ width: ($spacer * .5);
23
+ height: ($spacer * .5);
24
+ border-radius: $spacer;
25
+ background-color: $warning;
26
+ }
27
+ }
28
+
29
+ // Heartbeat animation used on beacon for sysusers
30
+ @keyframes heartbit {
31
+ 0% {
32
+ transform: scale(0);
33
+ opacity: 0;
34
+ }
35
+ 25% {
36
+ transform: scale(0.1);
37
+ opacity: .1;
38
+ }
39
+ 50% {
40
+ transform: scale(0.5);
41
+ opacity: .3;
42
+ }
43
+ 75% {
44
+ transform: scale(0.8);
45
+ opacity: .5;
46
+ }
47
+ 100% {
48
+ transform: scale(1);
49
+ opacity: 0;
50
+ }
51
+ }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NfgUi
4
- VERSION = '0.11.9'
4
+ VERSION = '0.11.10'
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.11.9
4
+ version: 0.11.10
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: 2020-12-22 00:00:00.000000000 Z
12
+ date: 2021-01-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bootstrap
@@ -439,6 +439,7 @@ files:
439
439
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_share_dropdown.scss
440
440
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_sortable.scss
441
441
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_status_indicator.scss
442
+ - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_sys_only_functionality.scss
442
443
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_tile.scss
443
444
  - app/assets/stylesheets/nfg_ui/network_for_good/admin/nfg_theme/custom/_video_countdown.scss
444
445
  - app/assets/stylesheets/nfg_ui/network_for_good/core/_variables.scss