ish_manager 0.1.8.409 → 0.1.8.410
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/assets/javascripts/ish_manager/application.js +3 -0
- data/app/assets/stylesheets/ish_manager/application.scss +28 -19
- data/app/views/ish_manager/application/_alerts_notices.haml +7 -12
- data/app/views/ish_manager/email_campaigns/_form.haml +3 -3
- data/app/views/ish_manager/email_filters/_form.haml +6 -0
- data/app/views/ish_manager/email_filters/edit.haml +1 -1
- data/app/views/ish_manager/email_filters/index.haml +3 -1
- data/app/views/ish_manager/email_filters/new.haml +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8324ef683622d8aca6298965f060b9f7bb28c8d2ec6bbd99011b34914ccd6b70
|
4
|
+
data.tar.gz: af207371888cee567d554cb1f0313fd717399dd42c93fc9b06f3b16fca0212fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01d1fa18a16bcf11c0f991972eae21b57ed17024b33da5249d5396f85c812e8644448547f2fed3164ba565ee2daa89205b8b047e56d6727ee3f759b51f641d29
|
7
|
+
data.tar.gz: bae46a73d36c3bcdfd0f098fd9d75f2e86cab52f6e50a0b8c8eb07810b64ba0f2195f80e51fe87f5af0c4d02974d923612fd74ec7b63d1b2c7f3b83dffde2548
|
@@ -82,26 +82,11 @@ ul:not(.browser-default).bullets, {
|
|
82
82
|
|
83
83
|
|
84
84
|
/* A */
|
85
|
-
|
86
|
-
.collapse-expand::after {
|
87
|
-
content: " [<]";
|
88
|
-
}
|
89
|
-
.collapsed::after {
|
90
|
-
content: " [>]";
|
91
|
-
}
|
92
|
-
.expand-next + form {
|
93
|
-
// border: 1px solid red !important;
|
94
|
-
// display: none !important;
|
95
|
-
}
|
96
|
-
.expand-hide {
|
97
|
-
display: none;
|
98
|
-
position: absolute;
|
99
|
-
min-width: 250px;
|
100
|
-
}
|
101
|
-
|
102
85
|
.alert {
|
103
86
|
border: 1px solid red;
|
104
87
|
padding: .8em;
|
88
|
+
margin: 0.8em;
|
89
|
+
position: relative;
|
105
90
|
}
|
106
91
|
|
107
92
|
.application--debug {
|
@@ -148,12 +133,11 @@ table.bordered {
|
|
148
133
|
padding: 0.5em;
|
149
134
|
}
|
150
135
|
|
151
|
-
/* B */
|
152
|
-
|
153
136
|
.btn {
|
154
137
|
border: 1px solid red;
|
155
138
|
}
|
156
139
|
|
140
|
+
|
157
141
|
/* C */
|
158
142
|
|
159
143
|
.c {
|
@@ -171,6 +155,11 @@ table.bordered {
|
|
171
155
|
text-align: center;
|
172
156
|
}
|
173
157
|
|
158
|
+
.close {
|
159
|
+
position: absolute;
|
160
|
+
top: 0;
|
161
|
+
right: 0;
|
162
|
+
}
|
174
163
|
|
175
164
|
.collapse-expand {
|
176
165
|
cursor: pointer;
|
@@ -180,6 +169,17 @@ table.bordered {
|
|
180
169
|
}
|
181
170
|
}
|
182
171
|
|
172
|
+
.collapse-expand::after {
|
173
|
+
content: " [<]";
|
174
|
+
}
|
175
|
+
.collapsed::after {
|
176
|
+
content: " [>]";
|
177
|
+
}
|
178
|
+
.expand-next + form {
|
179
|
+
// border: 1px solid red !important;
|
180
|
+
// display: none !important;
|
181
|
+
}
|
182
|
+
|
183
183
|
/* D */
|
184
184
|
|
185
185
|
table.dataTable {
|
@@ -199,6 +199,13 @@ table.dataTable {
|
|
199
199
|
}
|
200
200
|
|
201
201
|
|
202
|
+
|
203
|
+
.expand-hide {
|
204
|
+
display: none;
|
205
|
+
position: absolute;
|
206
|
+
min-width: 250px;
|
207
|
+
}
|
208
|
+
|
202
209
|
/* E */
|
203
210
|
.eg {
|
204
211
|
font-size: 0.8em;
|
@@ -392,6 +399,8 @@ textarea.large {
|
|
392
399
|
.notice {
|
393
400
|
border: 1px solid green;
|
394
401
|
padding: .8em;
|
402
|
+
margin: 0.8em;
|
403
|
+
position: relative;
|
395
404
|
}
|
396
405
|
|
397
406
|
/* P */
|
@@ -2,16 +2,11 @@
|
|
2
2
|
.row.max-width
|
3
3
|
.col-sm-12
|
4
4
|
- if notice
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
%li= n
|
9
|
-
- else
|
10
|
-
%p.notice= notice
|
5
|
+
.notice
|
6
|
+
= notice
|
7
|
+
.close [x]
|
11
8
|
- if alert
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
- else
|
17
|
-
%p.alert= alert
|
9
|
+
.alert
|
10
|
+
= alert
|
11
|
+
.close [x]
|
12
|
+
|
@@ -5,6 +5,12 @@
|
|
5
5
|
.field
|
6
6
|
%label From Regex
|
7
7
|
= f.text_field :from_regex
|
8
|
+
.field
|
9
|
+
%label Subject Regex
|
10
|
+
= f.text_field :subject_regex
|
11
|
+
.field
|
12
|
+
%label Body Regex
|
13
|
+
= f.text_field :body_regex
|
8
14
|
.field
|
9
15
|
%label Kind
|
10
16
|
= f.select :kind, options_for_select( ::Office::EmailFilter::KINDS, selected: email_filter.kind )
|
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
.email-filters-index
|
2
|
+
.email-filters-index.max-width
|
3
3
|
.header
|
4
4
|
%h2.title
|
5
5
|
Email Filters (#{@email_filters.length})
|
@@ -10,6 +10,7 @@
|
|
10
10
|
%th
|
11
11
|
%th
|
12
12
|
%th From Regex
|
13
|
+
%th Subject Regex
|
13
14
|
%th Body Regex
|
14
15
|
%th Kind
|
15
16
|
- @email_filters.each do |ef|
|
@@ -18,6 +19,7 @@
|
|
18
19
|
%td= check_box_tag 'checked'
|
19
20
|
%td= link_to '[~]', edit_email_filter_path(ef)
|
20
21
|
%td= ef.from_regex
|
22
|
+
%td= ef.subject_regex
|
21
23
|
%td= ef.body_regex
|
22
24
|
%td= ef.kind
|
23
25
|
|