signum 0.7.7 → 0.7.9
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 +4 -4
- data/app/components/signum/notification_body/component.css +33 -34
- data/lib/signum/version.rb +1 -1
- data/lib/tasks/signum_tasks.rake +2 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3494e734033d557ba192219d5ef087b0b65c6e9ce22c7f56f4fc322433189aaa
|
4
|
+
data.tar.gz: 6778704b952bf1044b941804f5106e068f5c2dd4a779ab31f5925b1cad09b9e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18956ce1a95bb645e790ad339dc46d98c203ae2d4ab7044c37373c1da2bef7d012ffe45c5271b10d98e48f0a809a530a4fef06c646992f244e6e315d257a2895
|
7
|
+
data.tar.gz: e96abf61369d0e2e1181b4b4c0ad7aa8e56f173c3485aa12509663ec082e930748f4f18bc3866a1ff41c6ce0b9309d1a6d1414b9c577976ffaa5a3e56cd57a21
|
@@ -2,95 +2,94 @@
|
|
2
2
|
@apply flex flex-col w-full divide-y;
|
3
3
|
|
4
4
|
&__mb {
|
5
|
-
|
5
|
+
/* main body */
|
6
6
|
@apply flex basis-full divide-x;
|
7
7
|
|
8
8
|
&__bc {
|
9
|
-
|
9
|
+
/* body container */
|
10
10
|
@apply flex grow py-4 px-2 overflow-hidden;
|
11
11
|
|
12
12
|
&__ic {
|
13
|
-
|
13
|
+
/* icon container */
|
14
14
|
@apply grow-0 pl-2 pr-3;
|
15
|
-
|
16
|
-
svg.info
|
17
|
-
{
|
18
|
-
//icon info
|
19
|
-
@apply text-sky-400;
|
20
|
-
}
|
21
15
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
16
|
+
svg.info {
|
17
|
+
/* icon info */
|
18
|
+
@apply text-sky-400;
|
19
|
+
}
|
26
20
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
21
|
+
svg.success {
|
22
|
+
/* icon success */
|
23
|
+
@apply text-green-400;
|
24
|
+
}
|
31
25
|
|
32
|
-
|
33
|
-
|
34
|
-
|
26
|
+
svg.error {
|
27
|
+
/* icon error */
|
28
|
+
@apply text-red-400;
|
29
|
+
}
|
30
|
+
|
31
|
+
svg.warning {
|
32
|
+
/* icon warning */
|
33
|
+
@apply text-orange-400;
|
34
|
+
}
|
35
35
|
}
|
36
|
-
}
|
37
36
|
|
38
37
|
&__mc {
|
39
|
-
|
38
|
+
/* main container */
|
40
39
|
@apply grow text-left break-words overflow-hidden;
|
41
40
|
|
42
41
|
&__ti {
|
43
|
-
|
42
|
+
/* title */
|
44
43
|
@apply text-[0.81rem] font-medium text-gray-900;
|
45
44
|
}
|
46
45
|
|
47
46
|
&__tx {
|
48
|
-
|
47
|
+
/* text */
|
49
48
|
@apply text-xs text-gray-500 mt-1;
|
50
49
|
}
|
51
50
|
|
52
51
|
&__lkc {
|
53
|
-
|
52
|
+
/* links container */
|
54
53
|
@apply flex flex-wrap mt-3;
|
55
54
|
|
56
55
|
&__lk {
|
57
|
-
|
56
|
+
/* link */
|
58
57
|
@apply rounded-md text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none mr-2;
|
59
58
|
}
|
60
59
|
}
|
61
60
|
|
62
61
|
&__attc {
|
63
|
-
|
62
|
+
/* attachments links container */
|
64
63
|
@apply flex flex-wrap mt-3;
|
65
64
|
|
66
65
|
&__att {
|
67
|
-
|
66
|
+
/* attachment link */
|
68
67
|
@apply rounded-md text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none mr-2;
|
69
68
|
}
|
70
69
|
}
|
71
70
|
}
|
72
71
|
|
73
72
|
&__bcc {
|
74
|
-
|
73
|
+
/* close button container */
|
75
74
|
@apply grow-0 m-1;
|
76
75
|
|
77
76
|
&__b {
|
78
|
-
|
77
|
+
/* button */
|
79
78
|
@apply text-gray-400 hover:text-gray-500 cursor-pointer;
|
80
79
|
}
|
81
80
|
}
|
82
81
|
}
|
83
82
|
|
84
83
|
&__bmc {
|
85
|
-
|
84
|
+
/* buttons main container */
|
86
85
|
@apply flex grow-0 flex-col divide-y divide-gray-200;
|
87
86
|
|
88
87
|
&__bc {
|
89
|
-
|
88
|
+
/* buttons container */
|
90
89
|
@apply flex flex-1;
|
91
90
|
|
92
91
|
&__b {
|
93
|
-
|
92
|
+
/* button */
|
94
93
|
@apply flex w-full items-center justify-center text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none px-4 py-3;
|
95
94
|
}
|
96
95
|
}
|
@@ -98,7 +97,7 @@
|
|
98
97
|
}
|
99
98
|
|
100
99
|
&__pbc {
|
101
|
-
|
100
|
+
/* progress bar container */
|
102
101
|
@apply basis-full p-1;
|
103
102
|
}
|
104
103
|
}
|
data/lib/signum/version.rb
CHANGED
data/lib/tasks/signum_tasks.rake
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: signum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom de Grunt
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pg
|
@@ -279,7 +279,7 @@ homepage: https://github.com/entdec/signum
|
|
279
279
|
licenses:
|
280
280
|
- MIT
|
281
281
|
metadata: {}
|
282
|
-
post_install_message:
|
282
|
+
post_install_message:
|
283
283
|
rdoc_options: []
|
284
284
|
require_paths:
|
285
285
|
- lib
|
@@ -295,7 +295,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
295
295
|
version: '0'
|
296
296
|
requirements: []
|
297
297
|
rubygems_version: 3.4.10
|
298
|
-
signing_key:
|
298
|
+
signing_key:
|
299
299
|
specification_version: 4
|
300
300
|
summary: Replacement for flash messages, also from background jobs
|
301
301
|
test_files: []
|