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 / admin / _notifications.scss
latepoint / lib / assets / stylesheets / admin Last commit date
_activities.scss 11 months ago _addons.scss 3 weeks ago _agents.scss 10 months ago _animations.scss 11 months ago _booking_form_preview.scss 11 months ago _bookings.scss 3 weeks ago _bundles.scss 11 months ago _buttons.scss 3 weeks ago _calendars.scss 3 weeks ago _categories.scss 11 months ago _customers.scss 10 months ago _dark.scss 10 months ago _daterangepicker.scss 11 months ago _elements.scss 1 month ago _forms.scss 3 weeks ago _grid.scss 1 year ago _grid_variables.scss 1 year ago _icons.scss 1 year ago _latecheckbox.scss 11 months ago _lateselect.scss 1 year ago _layout.scss 3 weeks ago _lightbox.scss 11 months ago _menu.scss 3 weeks ago _messages.scss 11 months ago _misc.scss 3 weeks ago _mixins.scss 11 months ago _notifications.scss 11 months ago _orders.scss 10 months ago _pickr.scss 1 year ago _processes.scss 3 weeks ago _quick_availability.scss 3 weeks ago _reminders.scss 3 weeks ago _responsive.scss 3 weeks ago _roles.scss 1 year ago _schedule.scss 3 weeks ago _services.scss 3 weeks ago _settings.scss 1 month ago _side-panel.scss 3 weeks ago _steps.scss 1 year ago _tables.scss 3 weeks ago _type.scss 1 year ago _updates.scss 3 weeks ago _utilities.scss 1 year ago _variables.scss 3 weeks ago _widgets.scss 3 weeks ago _wizard.scss 3 weeks ago
_notifications.scss
107 lines
1 .os-notifications {
2 display: flex;
3 flex-direction: column-reverse;
4 transform-origin: top center;
5 &:not(.os-relative){
6 position: fixed;
7 left: 50%;
8 transform: translateX(-50%);
9 top: 11px;
10 z-index: 10001;
11 margin-bottom: 0;
12 }
13 &.os-relative {
14 .os-notification-close {
15 display: none;
16 }
17 .item {
18 margin-bottom: 15px;
19 }
20 }
21 .os-notification-link {
22 color: $brand-primary;
23 border-bottom: 1px dotted $brand-primary;
24 cursor: pointer;
25 &:after {
26 content: "";
27 @include latepointfont_admin("\e91a");
28 margin-left: 5px;
29 }
30 &:hover {
31 border-bottom-style: solid;
32 }
33 }
34
35 .os-notification-close {
36 position: absolute;
37 top: 50%;
38 right: 5px;
39 cursor: pointer;
40 padding: 5px;
41 font-size: 14px;
42 transform: translateY(-50%);
43 display: block;
44 line-height: 1;
45 }
46
47 .item {
48 padding: 10px 40px 12px 45px;
49 background-color: #c5ffd9;
50 color: #018657;
51 border: 1px solid #39d08b;
52 font-weight: $body-font-weight-bold;
53 font-size: $font-size-base;
54 box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
55 border-radius: $border-radius-sm;
56 min-width: 400px;
57 text-align: left;
58 position: relative;
59
60 &:before {
61 color: #fff;
62 position: absolute;
63 top: 15px;
64 left: 15px;
65 width: 10px;
66 height: 10px;
67 text-align: center;
68 border-radius: 50%;
69 z-index: 3;
70 content: "";
71 }
72
73 &.item-type-error {
74 background-color: #fff1f1;
75 border: 1px solid #f2c3c3;
76 border-bottom-color: #ea9898;
77 color: #7f0d0d;
78 box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.26);
79 &:before {
80 background-color: #ff5839;
81 box-shadow: 0px 1px 0px 0px rgba(#ff8a8a, 0.5), 0px 0px 0px 6px rgba(#ff8a8a, 0.15), 0px 0px 0px 10px rgba(#ff8a8a, 0.1), inset 0px 2px 0px 0px rgba(255, 255, 255, 0.2);
82 border: 1px solid #ee1b1b;
83 border-bottom-color: #ce0a0a;
84 }
85 }
86 &.item-type-success {
87 background-color: #eeffed;
88 border: 1px solid #a9e3a2;
89 border-bottom-color: #91c68f;
90 color: #0d7f24;
91 box-shadow: 0px 1px 4px -1px rgba(79,239,88,0.6);
92 &:before {
93 background-color: #63e57a;
94 box-shadow: 0px 1px 0px 0px rgba(#8aff9a, 0.5), 0px 0px 0px 6px rgba(#8aff9a, 0.25), 0px 0px 0px 10px rgba(#8aff9a, 0.15), inset 0px 2px 0px 0px rgba(255, 255, 255, 0.4);
95 border: 1px solid #35d431;
96 border-bottom-color: #33c82f;
97 }
98 }
99
100 }
101
102 .item + .item {
103 margin-bottom: 10px;
104 }
105 }
106
107