PluginProbe ʕ •ᴥ•ʔ
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress / 5.1.8
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress v5.1.8
5.6.8 5.6.7 5.6.6 5.6.5 5.6.4 5.6.3 5.6.2 5.6.1 5.6.0 5.5.2 5.5.1 5.5.0 5.4.2 trunk 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.1.8 5.1.9 5.1.91 5.1.92 5.1.93 5.1.94 5.2.0 5.2.1 5.2.10 5.2.11 5.2.2 5.2.3 5.2.4 5.2.5 5.2.6 5.2.7 5.2.8 5.2.9 5.3.0 5.3.1 5.3.2 5.4.0 5.4.1
latepoint / lib / assets / stylesheets / admin / _activities.scss
latepoint / lib / assets / stylesheets / admin Last commit date
_activities.scss 1 year ago _addons.scss 1 year ago _agents.scss 1 year ago _animations.scss 1 year ago _booking_form_preview.scss 1 year ago _bookings.scss 1 year ago _bundles.scss 1 year ago _buttons.scss 1 year ago _calendars.scss 1 year ago _categories.scss 1 year ago _customers.scss 1 year ago _dark.scss 1 year ago _daterangepicker.scss 1 year ago _elements.scss 1 year ago _forms.scss 1 year ago _grid.scss 1 year ago _grid_variables.scss 1 year ago _icons.scss 1 year ago _latecheckbox.scss 1 year ago _lateselect.scss 1 year ago _layout.scss 1 year ago _lightbox.scss 1 year ago _menu.scss 1 year ago _messages.scss 1 year ago _misc.scss 1 year ago _mixins.scss 1 year ago _notifications.scss 1 year ago _orders.scss 1 year ago _pickr.scss 1 year ago _processes.scss 1 year ago _quick_availability.scss 1 year ago _reminders.scss 1 year ago _responsive.scss 1 year ago _roles.scss 1 year ago _schedule.scss 1 year ago _services.scss 1 year ago _settings.scss 1 year ago _side-panel.scss 1 year ago _steps.scss 1 year ago _tables.scss 1 year ago _type.scss 1 year ago _updates.scss 1 year ago _utilities.scss 1 year ago _variables.scss 1 year ago _widgets.scss 1 year ago _wizard.scss 1 year ago
_activities.scss
266 lines
1 .user-link-with-avatar {
2 text-decoration: none;
3 border: none !important;
4 display: inline-flex;
5 align-items: center;
6
7 .ula-avatar {
8 margin-right: 8px;
9 width: 20px;
10 height: 20px;
11 border-radius: 40px;
12 background-size: cover;
13 background-position: center center;
14 }
15
16 .ula-name {
17 vertical-align: middle;
18 text-decoration: underline;
19 margin-right: 5px;
20 }
21
22 span {
23 display: block;
24 }
25
26 .latepoint-icon {
27 visibility: hidden;
28 }
29
30 &:hover {
31 .latepoint-icon {
32 visibility: visible;
33 }
34 }
35 }
36
37
38 .activity-status-wrapper {
39 padding: 0 0 15px 0;
40
41 .activity-status-content {
42 text-transform: capitalize;
43 display: flex;
44 align-items: center;
45 padding: 10px 15px;
46 font-weight: $body-font-weight-bold;
47 font-size: $body-font-size-xs;
48 min-width: 400px;
49 text-align: left;
50 position: relative;
51 background-color: #f8f8f8;
52 border-left: 4px solid #f8f8f8;
53 color: $headings-color;
54
55 .status-item {
56 position: relative;
57 & + .status-item {
58 margin-left: 10px;
59 border-left: 1px solid #ddd;
60 padding-left: 10px;
61 }
62
63 strong {
64 font-weight: $body-font-weight-black;
65 }
66 }
67 }
68
69 &.status-success .activity-status-content {
70 background-color: #eeffed;
71 border-left-color: #0d7f24;
72 color: #0d7f24;
73 .status-item {
74 border-left-color: #c9edc7;
75 }
76 }
77
78 &.status-error .activity-status-content {
79 background-color: #fff1f1;
80 border-left-color: #f64545;
81 color: #7c1a1a;
82 strong {
83 color: #330303;
84 }
85 .status-item {
86 border-left-color: #f4d8d8;
87 }
88 }
89 }
90
91 .activity-preview-wrapper {
92 position: relative;
93
94 > h3 {
95 margin-bottom: 10px;
96 font-size: 22px;
97 }
98
99 .activity-to-run {
100 padding: 5px 0px;
101
102 .os-form-group.os-form-toggler-group {
103 margin-bottom: 0px;
104 }
105
106 label {
107 font-size: 18px;
108 color: $headings-color;
109 }
110
111 &:not(:last-child) {
112 border-bottom: 1px solid $border-color-lightest;
113 }
114 }
115
116 .activity-preview-error {
117 padding: 15px;
118 font-size: ($font-size-base * 1.2);
119 font-weight: $body-font-weight-bold;
120 background-color: #fff5e5;
121 color: #8f6b3e;
122 border-radius: 6px;
123 text-align: center;
124 margin-bottom: 20px;
125 }
126
127 .activity-preview-content-wrapper {
128 transition: opacity 0.3s ease;
129 }
130
131 pre {
132 margin: 0;
133 }
134
135 &.os-loading {
136 .activity-preview-content-wrapper {
137 opacity: 0;
138 }
139
140 &:before {
141 @include loading-circle($brand-primary, 20px);
142 top: 50px;
143 }
144 }
145
146 .activity-preview-to {
147 display: flex;
148 font-weight: $body-font-weight-bold;
149 margin-bottom: 10px;
150
151 .os-label {
152 color: $color-faded;
153 display: block;
154 margin-right: 5px;
155 }
156
157 .os-value {
158 display: block;
159
160 & + .os-label {
161 margin-left: 10px;
162 padding-left: 10px;
163 border-left: 1px solid #eee;
164 }
165 }
166 }
167
168 .activity-preview-subject {
169 display: flex;
170 font-size: floor($headings-font-size * 0.8);
171 font-weight: $body-font-weight-bold;
172 margin-bottom: 5px;
173
174 .os-label {
175 color: $color-faded;
176 display: block;
177 margin-right: 5px;
178 }
179
180 .os-value {
181 display: block;
182 flex: 1;
183 }
184 }
185
186 &.type-email_sent {
187 padding: 0px;
188
189 .activity-preview-content-wrapper {
190 }
191 }
192
193 &.type-sms_sent {
194 .activity-preview-content-wrapper {
195 padding: 20px;
196 margin: 0px auto;
197 width: 340px;
198 padding-right: 50px;
199 border: 14px solid #e1e1e5;
200 border-bottom: none;
201 padding-bottom: 40px;
202 border-radius: 60px 60px 0px 0px;
203 }
204
205 .activity-preview-to {
206 margin-bottom: 20px;
207 }
208
209 .activity-preview-content {
210 padding: 22px;
211 border-radius: 20px 20px 20px 0px;
212 display: inline-block;
213 background-color: #54a7ff;
214 background-image: linear-gradient(45deg, #004fff, transparent);
215 box-shadow: 0px 1px 4px #b4dbff;
216 color: #fff;
217 font-size: floor($font-size-base * 1.1);
218 font-weight: $body-font-weight-bold;
219
220 }
221 }
222 }
223
224 .activities-index {
225 .activity-type-error {
226 .activity-column-name {
227 background-color: #ffe8e8;
228
229 > div {
230 position: relative;
231 padding-left: 20px;
232 font-weight: $body-font-weight-bold;
233 color: #b80000;
234
235 &:before {
236 color: #b80000;
237 @include latepointfont_admin("\e94e");
238 position: absolute;
239 font-size: 14px;
240 left: 0px;
241 top: 50%;
242 transform: translateY(-50%);
243 }
244 }
245 }
246 }
247 }
248
249 .view-activity-link {
250 position: relative;
251
252 &.os-loading {
253 color: transparent !important;
254 border-bottom-color: transparent !important;
255
256 &:focus {
257 box-shadow: none;
258 outline: none;
259 }
260
261 &:before {
262 @include loading-circle($brand-primary, 14px);
263 z-index: 9999;
264 }
265 }
266 }