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 / _latecheckbox.scss
latepoint / lib / assets / stylesheets / admin Last commit date
_activities.scss 10 months ago _addons.scss 3 weeks ago _agents.scss 10 months ago _animations.scss 10 months ago _booking_form_preview.scss 10 months ago _bookings.scss 3 weeks ago _bundles.scss 10 months ago _buttons.scss 3 weeks ago _calendars.scss 3 weeks ago _categories.scss 10 months ago _customers.scss 10 months ago _dark.scss 10 months ago _daterangepicker.scss 10 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 10 months ago _lateselect.scss 1 year ago _layout.scss 3 weeks ago _lightbox.scss 10 months ago _menu.scss 3 weeks ago _messages.scss 10 months ago _misc.scss 3 weeks ago _mixins.scss 10 months ago _notifications.scss 10 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
_latecheckbox.scss
171 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: $border-radius;
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: $brand-primary;
38 }
39 &:focus {
40 box-shadow: none;
41 }
42 &.is-active {
43 background-color: rgba(0,0,0,0.05);
44 border-color: rgba(0,0,0,0.05);
45 .filter-value {
46 background-color: rgba(0,0,0,0.05);
47 }
48 &:after {
49 transform: rotate(180deg);
50 }
51 }
52 }
53
54 .filter-label {
55
56 }
57
58 .filter-value {
59 background-color: rgba(0,0,0,0.05);
60 font-size: $body-font-size-xs;
61 padding: 2px 5px;
62 border-radius: $border-radius-sm;
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: $border-radius-lg;
72 padding: 10px;
73 @include white-box();
74 .select-all-wrapper {
75 display: flex;
76 gap: 7px;
77 font-size: $font-size-base;
78 padding-top: 8px;
79 border-radius: 0;
80 border-top: 1px solid $border-color-light;
81 }
82 .latecheckbox-filter-input-w {
83 margin-bottom: 5px;
84 display: flex;
85 gap: 7px;
86 align-items: center;
87 padding-left: 5px;
88 padding-bottom: 10px;
89 border-bottom: 1px solid $border-color-light;
90 .latecheckbox-filter-input {
91 line-height: 1;
92 padding: 5px 6px;
93 border-color: $border-color-strong;
94 border-radius: $form-controls-border-radius;
95 font-size: $font-size-base;
96 flex: 1;
97 &::placeholder {
98 color: $color-faded;
99 }
100 &:focus {
101 box-shadow: none;
102 border-color: $brand-primary;
103 }
104 }
105 }
106 .latecheckbox-group {
107 display: flex;
108 flex-direction: column;
109 gap: 3px;
110 margin-bottom: 1px;
111 &:not(:last-child) {
112 }
113 .latecheckbox-group-options {
114 padding-left: 15px;
115 }
116 }
117 .latecheckbox-options {
118 display: flex;
119 flex-direction: column;
120 gap: 2px;
121 font-size: $font-size-base;
122 max-height: 200px;
123 overflow-y: auto;
124 .latecheckbox-group-heading {
125 background-color: #f8f8f8;
126 border-radius: $border-radius;
127 color: $color-faded;
128 font-weight: $body-font-weight-bold;
129 display: flex;
130 font-size: $font-size-base;
131 gap: 10px;
132 label {
133 color: $color-faded;
134 }
135 }
136 .latecheckbox-option {
137 .late-label {
138
139 }
140 &.hidden {
141 display: none;
142 }
143 }
144 }
145 label {
146 font-weight: $body-font-weight-bold;
147 color: $headings-color;
148 display: flex;
149 gap: 7px;
150 align-items: center;
151 padding: 5px;
152 border-radius: 6px;
153 &:hover {
154 background-color: #f8f8f8;
155 }
156 span {
157 white-space: nowrap;
158 display: block;
159 }
160 .late-avatar {
161 width: 20px;
162 height: 20px;
163 background-size: cover;
164 background-position: center center;
165 background-repeat: no-repeat;
166 border-radius: 50%;
167 }
168 input[type="checkbox"]="checkbox""]{
169 }
170 }
171 }