signum 0.7.7 → 0.7.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/components/signum/notification_body/component.css +33 -34
- data/lib/signum/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b1a703dbf5da5ca31e1275493f067a917802fb4caa606a6697e7fc64a62bbefa
|
4
|
+
data.tar.gz: f00fb2a6e2ea3639c5b2237498e0e2ba67bb421f230a7ef1d719653d4c083e23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 810b2c5ebf4a0d36053780454cb1b5f2bac99fa81a5bf6d4b96d3f5fd7e9563428b7640cae4b10d4f7626e2683bdfe7f64630e26310d8b042a7c1e2cb4c8639f
|
7
|
+
data.tar.gz: 66e80f730d6c3ad91097c613742e51ed8f3809b2b2c55792b115732e18edab27ca9ac38666ff7e60fba48a249ba63aa9b16f87a43ae8bac9619f29c08495ee8f
|
@@ -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
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.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom de Grunt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pg
|