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 / front / _notifications.scss
latepoint / lib / assets / stylesheets / front Last commit date
_animations.scss 11 months ago _booking.scss 1 month ago _booking_animations.scss 1 year ago _buttons.scss 11 months ago _calendar.scss 4 months ago _customer_dashboard.scss 1 month ago _forms.scss 11 months ago _grid.scss 1 year ago _icons.scss 11 months ago _items.scss 11 months ago _lightbox.scss 1 month ago _login.scss 10 months ago _mixins.scss 1 year ago _notifications.scss 11 months ago _print.scss 1 year ago _responsive.scss 11 months ago _shared.scss 1 year ago _shortcodes.scss 1 year ago _type.scss 1 year ago _utilities.scss 1 year ago _variables.scss 11 months ago
_notifications.scss
64 lines
1 .os-notifications {
2 position: fixed;
3 left: 50%;
4 transform: translateX(-50%);
5 top: 20px;
6 z-index: 1000001;
7 display: flex;
8 flex-direction: column-reverse;
9
10 .os-notification-close {
11 position: absolute;
12 top: 50%;
13 right: 5px;
14 cursor: pointer;
15 padding: 5px;
16 font-size: 14px;
17 transform: translateY(-50%);
18 display: block;
19 line-height: 1;
20 }
21
22 .item {
23 padding: 14px 30px;
24 background-color: rgba(29, 210, 101, 0.95);
25 color: #fff;
26 font-weight: $body-font-weight-bold;
27 font-size: $font-size-base * 1.2;
28 min-width: 500px;
29 text-align: center;
30 padding-right: 40px;
31 position: relative;
32 border-radius: $border-radius;
33 &.item-type-error {
34 background-color: #fff1f1;
35 border: 1px solid #f2c3c3;
36 border-bottom-color: #ea9898;
37 color: #7f0d0d;
38 box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.26);
39 &:before {
40 background-color: #ff5839;
41 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);
42 border: 1px solid #ee1b1b;
43 border-bottom-color: #ce0a0a;
44 }
45 }
46 &.item-type-success {
47 background-color: #eeffed;
48 border: 1px solid #a9e3a2;
49 border-bottom-color: #91c68f;
50 color: #0d7f24;
51 box-shadow: 0px 1px 4px -1px rgba(79,239,88,0.6);
52 &:before {
53 background-color: #63e57a;
54 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);
55 border: 1px solid #35d431;
56 border-bottom-color: #33c82f;
57 }
58 }
59 }
60
61 .item + .item {
62 margin-bottom: 10px;
63 }
64 }