File tree Expand file tree Collapse file tree 2 files changed +184
-144
lines changed Expand file tree Collapse file tree 2 files changed +184
-144
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ email-user-cleaner.css
3
+ GSolone, 2024
4
+ */
5
+
6
+ /* Warning & Info box style */
7
+ .euc_warning-box ,
8
+ .euc_info-box {
9
+ background-color : # ffeeba ;
10
+ border : 1px solid # ffc107 ;
11
+ color : # 856404 ;
12
+ padding : 10px ;
13
+ margin-bottom : 20px ;
14
+ margin-top : 10px ;
15
+ border-radius : 5px ;
16
+ display : flex;
17
+ align-items : center;
18
+ max-width : 600px ;
19
+ }
20
+
21
+ .euc_info-box {
22
+ background-color : # e7f3fe ;
23
+ border : 1px solid # a0cfff ;
24
+ color : # 2e74b2 ;
25
+ }
26
+
27
+ .euc_info-icon {
28
+ font-size : 24px ;
29
+ margin-right : 10px ;
30
+ }
31
+
32
+ .euc_warning-icon {
33
+ background-color : # ffc107 ;
34
+ color : white;
35
+ width : 30px ;
36
+ height : 30px ;
37
+ font-size : 20px ;
38
+ border-radius : 50% ;
39
+ display : flex;
40
+ justify-content : center;
41
+ align-items : center;
42
+ margin-right : 10px ;
43
+ }
44
+
45
+ /* Success & error box style */
46
+ .euc_success-box ,
47
+ .euc_error-box {
48
+ background-color : # d4edda ;
49
+ border : 1px solid # c3e6cb ;
50
+ color : # 155724 ;
51
+ padding : 10px ;
52
+ margin-bottom : 20px ;
53
+ border-radius : 5px ;
54
+ max-width : 600px ;
55
+ }
56
+
57
+ .euc_error-box {
58
+ background-color : # f8d7da ;
59
+ border-color : # f5c6cb ;
60
+ color : # 721c24 ;
61
+ }
62
+
63
+ .euc_textarea {
64
+ width : 600px ;
65
+ }
66
+
67
+ .euc_results {
68
+ margin-top : 10px ;
69
+ }
70
+
71
+ .button-primary .takespace {
72
+ display : block;
73
+ margin-top : 10px ;
74
+ }
75
+
76
+ .wrap h2 span .dashicons .dashicons-email-alt {
77
+ font-size : 35px ;
78
+ padding-right : 10px ;
79
+ margin-right : 10px ;
80
+ vertical-align : top;
81
+ }
You can’t perform that action at this time.
0 commit comments