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 / _latecheckbox.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
_latecheckbox.scss
170 lines
1 /*!
2 * Copyright (c) 2023 LatePoint LLC. All rights reserved.
3 */
4
5 .latepoint-admin {
6
7
8 .latecheckbox-w {
9
10 .latecheckbox-options-w {
11 display: none;
12 }
13 }
14
15 .latecheckbox {
16 display: flex;
17 gap: 5px;
18 align-items: baseline;
19 padding: 7px 5px 7px 10px;
20 border-radius: 6px;
21 font-size: $font-size-base;
22 font-weight: $body-font-weight-bold;
23 border: 1px solid $border-color-light;
24 position: relative;
25 cursor: pointer;
26 text-decoration: none;
27 color: $headings-color;
28 line-height: 1;
29
30 &:after {
31 @include latepointfont_admin("\e911");
32 align-self: center;
33 display: block;
34 }
35
36 &:hover {
37 border-color: $headings-color;
38 }
39 &:focus {
40 box-shadow: none;
41 }
42 &.is-active {
43 background-color: #eff0f5;
44 border-color: #eff0f5;
45 .filter-value {
46 background-color: #dddfe8;
47 }
48 &:after {
49 transform: rotate(180deg);
50 }
51 }
52 }
53
54 .filter-label {
55
56 }
57
58 .filter-value {
59 background-color: #eff0f8;
60 font-size: floor(0.9 * $font-size-base);
61 padding: 2px 5px;
62 border-radius: 4px;
63 }
64 }
65
66 .latecheckbox-options-w {
67 position: absolute;
68 z-index: 9999;
69 background-color: #fff;
70 box-shadow: 0 2px 6px 0 rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.3);
71 border-radius: 6px;
72 padding: 10px;
73 .select-all-wrapper {
74 display: flex;
75 gap: 7px;
76 font-size: $font-size-base;
77 padding-top: 8px;
78 border-radius: 0;
79 border-top: 1px solid $border-color-light;
80 }
81 .latecheckbox-filter-input-w {
82 margin-bottom: 5px;
83 display: flex;
84 gap: 7px;
85 align-items: center;
86 padding-left: 5px;
87 padding-bottom: 10px;
88 border-bottom: 1px solid $border-color-light;
89 .latecheckbox-filter-input {
90 line-height: 1;
91 padding: 5px 6px;
92 border-color: $border-color-strong;
93 border-radius: 6px;
94 font-size: $font-size-base;
95 flex: 1;
96 &::placeholder {
97 color: $color-faded;
98 }
99 &:focus {
100 box-shadow: none;
101 border-color: $brand-primary;
102 }
103 }
104 }
105 .latecheckbox-group {
106 display: flex;
107 flex-direction: column;
108 gap: 3px;
109 margin-bottom: 1px;
110 &:not(:last-child) {
111 }
112 .latecheckbox-group-options {
113 padding-left: 15px;
114 }
115 }
116 .latecheckbox-options {
117 display: flex;
118 flex-direction: column;
119 gap: 2px;
120 font-size: $font-size-base;
121 max-height: 200px;
122 overflow-y: auto;
123 .latecheckbox-group-heading {
124 background-color: #f8f8f8;
125 border-radius: 4px;
126 color: $color-faded;
127 font-weight: $body-font-weight-bold;
128 display: flex;
129 font-size: $font-size-base;
130 gap: 10px;
131 label {
132 color: $color-faded;
133 }
134 }
135 .latecheckbox-option {
136 .late-label {
137
138 }
139 &.hidden {
140 display: none;
141 }
142 }
143 }
144 label {
145 font-weight: $body-font-weight-bold;
146 color: $headings-color;
147 display: flex;
148 gap: 7px;
149 align-items: center;
150 padding: 5px;
151 border-radius: 6px;
152 &:hover {
153 background-color: #f8f8f8;
154 }
155 span {
156 white-space: nowrap;
157 display: block;
158 }
159 .late-avatar {
160 width: 20px;
161 height: 20px;
162 background-size: cover;
163 background-position: center center;
164 background-repeat: no-repeat;
165 border-radius: 50%;
166 }
167 input[type="checkbox"]="checkbox""]{
168 }
169 }
170 }