PluginProbe ʕ •ᴥ•ʔ
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress / 5.4.1
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress v5.4.1
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 / front / _mixins.scss
latepoint / lib / assets / stylesheets / front Last commit date
_animations.scss 9 months ago _booking.scss 9 months ago _booking_animations.scss 1 year ago _buttons.scss 9 months ago _calendar.scss 3 months ago _customer_dashboard.scss 9 months ago _forms.scss 9 months ago _grid.scss 1 year ago _icons.scss 9 months ago _items.scss 9 months ago _lightbox.scss 9 months ago _login.scss 9 months ago _mixins.scss 1 year ago _notifications.scss 9 months ago _print.scss 1 year ago _responsive.scss 9 months ago _shared.scss 1 year ago _shortcodes.scss 1 year ago _type.scss 1 year ago _utilities.scss 1 year ago _variables.scss 9 months ago
_mixins.scss
52 lines
1 @mixin slot-tooltip-info(){
2 position: absolute;
3 top: 0;
4 left: 15px;
5 background-color: #111;
6 padding: 4px 6px;
7 color: #fff;
8 font-weight: $body-font-weight-bold;
9 display: none;
10 white-space: nowrap;
11 z-index: 9999;
12 font-size: floor($font-size-base * 1);
13 animation: 0.1s ease latepointAvailabilityPopup;
14 animation-fill-mode: both;
15 }
16 @mixin latepointfont($content:""){
17 font-family: 'latepointIcons' !important;
18 speak: none;
19 font-style: normal;
20 font-weight: normal;
21 font-variant: normal;
22 text-transform: none;
23 line-height: 1;
24 -webkit-font-smoothing: antialiased;
25 -moz-osx-font-smoothing: grayscale;
26 content: $content;
27 }
28
29
30 @mixin font-headers(){
31 font-family: $headings-font-family;
32 font-weight: $headings-font-weight-normal;
33 }
34
35
36 @mixin loading-circle($color: #fff, $width: 14px, $border-width: 2px){
37 display: block;
38 content: "";
39 width: $width!important;
40 height: $width!important;
41 border-bottom: $border-width solid $color;
42 border-left: $border-width solid $color;
43 border-top: $border-width solid $color;
44 border-right: $border-width solid rgba(255,255,255,0);
45 border-radius: 20px;
46 position: absolute;
47 top: 50%;
48 left: 50%;
49 transform: translate(-50%, -50%);
50 animation: os-loading 700ms infinite linear;
51 background-color: transparent!important;
52 }