PluginProbe
Send Users Email – Email Subscribers, Email Marketing Newsletter / trunk
Send Users Email – Email Subscribers, Email Marketing Newsletter vtrunk
2.0.3 2.0.2 2.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 All 51 releases
send-users-email / admin / css / custom-html-template.css

custom-html-template.css in Send Users Email – Email Subscribers, Email Marketing Newsletter trunk, at admin/css/custom-html-template.css

127 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .sue-pro-wrap.sue-custom-template-wrap {
2 width: min(1680px, calc(100vw - 64px));
3 max-width: min(1680px, calc(100vw - 64px));
4 }
5
6 .sue-settings-layout.sue-custom-template-layout {
7 display: grid;
8 grid-template-columns: minmax(0, 1fr) 320px;
9 gap: 28px;
10 align-items: start;
11 }
12
13 .sue-custom-template-layout .sue-settings-main {
14 min-width: 0;
15 }
16
17 .sue-field-row.sue-field-row-editor {
18 align-items: start;
19 }
20
21 .sue-custom-template-editor-wrap {
22 border: 1px solid #e2e8f0;
23 border-radius: 12px;
24 overflow: hidden;
25 background: #fff;
26 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
27 }
28
29 .sue-custom-template-editor {
30 width: 100%;
31 min-height: 520px;
32 padding: 0;
33 border: 0;
34 background: transparent;
35 font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
36 }
37
38 .CodeMirror {
39 border: 0;
40 min-height: 520px;
41 height: auto;
42 resize: vertical;
43 overflow: hidden !important;
44 background: #fff;
45 }
46
47 .CodeMirror-scroll {
48 min-height: 520px;
49 }
50
51 .sue-custom-template-actions {
52 display: flex;
53 align-items: center;
54 gap: 14px;
55 flex-wrap: wrap;
56 }
57
58 .sue-custom-template-actions .sue-spinner {
59 display: none;
60 width: 18px;
61 height: 18px;
62 border-width: 2px;
63 flex-shrink: 0;
64 }
65
66 .sue-custom-template-sidebar {
67 gap: 0;
68 }
69
70 .sue-custom-template-note {
71 margin-bottom: 0;
72 }
73
74 .sue-custom-template-placeholders li {
75 align-items: flex-start;
76 }
77
78 .sue-custom-template-placeholders code {
79 white-space: nowrap;
80 }
81
82 @media (min-width: 1200px) {
83 .sue-field-row.sue-field-row-editor {
84 grid-template-columns: 1fr;
85 gap: 12px;
86 }
87
88 .sue-custom-template-sidebar {
89 position: sticky;
90 top: 32px;
91 }
92 }
93
94 @media (min-width: 1440px) {
95 .sue-settings-layout.sue-custom-template-layout {
96 grid-template-columns: minmax(0, 1fr) 340px;
97 gap: 32px;
98 }
99 }
100
101 @media (max-width: 1199px) {
102 .sue-pro-wrap.sue-custom-template-wrap {
103 width: auto;
104 max-width: 100%;
105 }
106
107 .sue-settings-layout.sue-custom-template-layout {
108 grid-template-columns: 1fr;
109 }
110
111 .sue-custom-template-sidebar {
112 position: static;
113 }
114 }
115
116 @media (max-width: 768px) {
117 .sue-custom-template-actions {
118 align-items: flex-start;
119 }
120
121 .sue-custom-template-editor,
122 .CodeMirror,
123 .CodeMirror-scroll {
124 min-height: 420px;
125 }
126 }
127