PluginProbe ʕ •ᴥ•ʔ
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress / 5.6.10
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress v5.6.10
5.6.10 5.6.9 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 / _shared_mixins.scss
latepoint / lib / assets / stylesheets Last commit date
admin 3 weeks ago front 1 month ago shared 10 months ago vendor 10 months ago _reboot.scss 10 months ago _shared_mixins.scss 1 year ago admin.scss 1 year ago front.scss 1 year ago
_shared_mixins.scss
52 lines
1 /*!
2 * Copyright (c) 2023 LatePoint LLC. All rights reserved.
3 */
4
5
6 @mixin latepoint-book-button {
7 line-height: 1em;
8 //display: inline-block;
9 //background-color: $brand-primary;
10 //padding: 10px 20px;
11 //font-weight: $body-font-weight-bold;
12 //color: #fff;
13 //font-size: 16px;
14 //line-height: 1.2;
15 //border: none;
16 //box-shadow: none;
17 //border-radius: 0px;
18 //text-decoration: none;
19 //outline: none;
20 cursor: pointer;
21 transition: initial;
22 &:focus,
23 &:hover {
24 //box-shadow: none;
25 //background-color: color-mix(in srgb,var(--latepoint-brand-primary),#fff 10%);;
26 //color: #fff;
27 //text-decoration: none;
28 }
29
30 &.os-loading {
31 transition: all .2s linear;
32 color: transparent!important;
33 position: relative;
34 &:after {
35 display: block;
36 content: "";
37 width: 14px!important;
38 height: 14px!important;
39 border-bottom: 2px solid #fff;
40 border-left: 2px solid #fff;
41 border-top: 2px solid #fff;
42 border-right: 2px solid rgba(255,255,255,0);
43 border-radius: 20px;
44 position: absolute;
45 top: 50%;
46 left: 50%;
47 transform: translate(-50%, -50%);
48 animation: os-loading 700ms infinite linear;
49 background-color: transparent!important;
50 }
51 }
52 }