PluginProbe ʕ •ᴥ•ʔ
Atarim – AI Agency for WordPress: Edit Pages, Fix Code, Update Plugins, SEO & Client Feedback / 5.1
Atarim – AI Agency for WordPress: Edit Pages, Fix Code, Update Plugins, SEO & Client Feedback v5.1
5.1.3 5.1.2 5.1.1 5.1 5.0 trunk 3.10 3.11 3.12 3.13 3.14 3.15 3.16 3.17 3.18 3.19 3.2.0 3.2.1 3.22 3.22.1 3.22.2 3.22.3 3.22.4 3.22.5 3.22.6 3.3.0 3.3.1 3.3.2 3.3.2.1 3.3.2.2 3.3.3 3.30 3.31 3.32 3.4 3.4.1 3.4.3 3.4.4 3.5 3.5.1 3.6 3.6.1 3.7 3.8 3.9 3.9.1 3.9.2 3.9.3 3.9.4 3.9.6 3.9.6.1 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.2 4.2.1 4.2.2 4.3 4.3.1 4.3.2 4.3.3 4.3.4 4.3.5 4.4
atarim-visual-collaboration / assets / css / offboarding.css
atarim-visual-collaboration / assets / css Last commit date
atarim-connect-screen.css 3 weeks ago global.css 3 weeks ago offboarding.css 3 weeks ago settings.css 3 weeks ago
offboarding.css
174 lines
1 /* Atarim plugins.php modals (deactivate feedback + delete data choice) */
2
3 .avc-off-overlay {
4 position: fixed;
5 inset: 0;
6 z-index: 100000;
7 display: flex;
8 align-items: center;
9 justify-content: center;
10 background: rgba( 30, 35, 39, 0.55 );
11 padding: 20px;
12 }
13
14 .avc-off-modal {
15 position: relative;
16 width: 100%;
17 max-width: 560px;
18 max-height: calc( 100vh - 60px );
19 overflow-y: auto;
20 background: #fff;
21 border-radius: 10px;
22 box-shadow: 0 20px 60px rgba( 0, 0, 0, 0.25 );
23 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
24 color: #1d2327;
25 }
26
27 .avc-off-head {
28 display: flex;
29 align-items: end;
30 gap: 10px;
31 padding: 22px 28px 14px;
32 border-bottom: 1px solid #f0f0f1;
33 }
34
35 .avc-off-logo {
36 display: block;
37 height: 24px;
38 width: auto;
39 flex: 0 0 auto;
40 }
41
42 .avc-off-title {
43 display: flex;
44 align-items: center;
45 font-size: 15px;
46 font-weight: 700;
47 line-height: 1;
48 letter-spacing: 0.06em;
49 text-transform: uppercase;
50 color: #50575e;
51 }
52
53 .avc-off-body {
54 padding: 24px 28px 8px;
55 }
56
57 .avc-off-prompt {
58 margin: 0 0 18px;
59 font-size: 17px;
60 font-weight: 700;
61 line-height: 1.4;
62 color: #1d2327;
63 }
64
65 .avc-off-options {
66 list-style: none;
67 margin: 0;
68 padding: 0;
69 }
70
71 .avc-off-options > li {
72 margin-bottom: 14px;
73 }
74
75 .avc-off-option {
76 display: flex;
77 align-items: center;
78 gap: 12px;
79 font-size: 15px;
80 color: #2c3338;
81 cursor: pointer;
82 }
83
84 .avc-off-option input[type="radio"] {
85 width: 18px;
86 height: 18px;
87 margin: 0;
88 flex: 0 0 auto;
89 cursor: pointer;
90 }
91
92 .avc-off-textarea {
93 display: block;
94 width: 100%;
95 margin: 10px 0 0 30px;
96 max-width: calc( 100% - 30px );
97 padding: 8px 10px;
98 font-size: 14px;
99 border: 1px solid #c3c4c7;
100 border-radius: 6px;
101 resize: vertical;
102 box-sizing: border-box;
103 }
104
105 .avc-off-error {
106 margin: 6px 0 0;
107 color: #b32d2e;
108 font-size: 13px;
109 }
110
111 .avc-off-foot {
112 display: flex;
113 align-items: center;
114 justify-content: space-between;
115 gap: 16px;
116 padding: 18px 28px 26px;
117 }
118
119 .avc-off-btn {
120 font-size: 14px;
121 font-weight: 600;
122 border: none;
123 border-radius: 6px;
124 cursor: pointer;
125 line-height: 1.2;
126 }
127
128 .avc-off-btn:disabled {
129 opacity: 0.55;
130 cursor: default;
131 }
132
133 .avc-off-btn-primary {
134 padding: 12px 22px;
135 background: #ece4fb;
136 color: #5a3ec8;
137 }
138
139 .avc-off-btn-primary:not(:disabled):hover {
140 background: #ddcffa;
141 }
142
143 .avc-off-btn-link {
144 padding: 12px 6px;
145 background: transparent;
146 color: #50575e;
147 }
148
149 .avc-off-btn-link:not(:disabled):hover {
150 color: #1d2327;
151 text-decoration: underline;
152 }
153
154 .avc-off-close {
155 position: absolute;
156 top: 14px;
157 right: 16px;
158 width: 30px;
159 height: 30px;
160 padding: 0;
161 font-size: 22px;
162 line-height: 1;
163 color: #787c82;
164 background: transparent;
165 border: none;
166 border-radius: 4px;
167 cursor: pointer;
168 }
169
170 .avc-off-close:hover {
171 color: #1d2327;
172 background: #f0f0f1;
173 }
174