PluginProbe ʕ •ᴥ•ʔ
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress / 5.1.3
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress v5.1.3
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 / _lateselect.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
_lateselect.scss
142 lines
1 .lateselect-w {
2 min-width: 150px;
3 position: relative;
4 font-weight: $body-font-weight-bold;
5 font-size: $font-size-base;
6 border-radius: $form-controls-border-radius;
7 user-select: none;
8 .ls-placeholder {
9 display: none;
10 color: $color-faded;
11 font-weight: $body-font-weight-bold;
12 order: 1;
13 padding: 2px 3px;
14 margin-right: 5px;
15 margin-bottom: 5px;
16 border: 1px solid transparent;
17 &:last-child {
18 display: block;
19 }
20 }
21 .ls-selected-items-w {
22 min-height: 36px;
23 border: 1px solid #ccd1d9;
24 border-radius: $form-controls-border-radius;
25 display: flex;
26 flex-wrap: wrap;
27 align-items: center;
28 padding: 5px 0px 0px 5px;
29 cursor: pointer;
30 &:hover {
31 border-color: #99a2b1;
32 }
33 .ls-item {
34 padding: 2px 7px 2px 2px;
35 border-radius: 10px;
36 border: 1px solid #1462d0;
37 background-color: #ecf2ff;
38 color: #1265dc;
39 margin-right: 5px;
40 margin-bottom: 5px;
41 display: flex;
42 align-items: center;
43 .os-late-quantity-selector-w {
44 margin-left: 10px;
45 display: flex;
46 align-items: center;
47
48 .os-late-quantity-selector {
49 font-size: 10px;
50 cursor: pointer;
51 color: rgba(0,0,0,0.8);
52 background-color: #cfdaff;
53 border-radius: 4px;
54 padding: 3px 3px;
55 line-height: 1;
56 width: 15px;
57 text-align: center;
58 display: block;
59 &.minus {
60 &:before {
61 @include latepointfont_admin("\e96d");
62 }
63 }
64 &.plus {
65 &:before {
66 @include latepointfont_admin("\e902");
67 }
68 }
69 &:hover {
70 color: #fff;
71 background-color: $brand-primary;
72 }
73 }
74 .os-late-quantity-selector-input {
75 width: 22px;
76 padding: 1px 1px 2px;
77 min-height: auto;
78 font-size: floor($font-size-base * 0.8);
79 text-align: center;
80 display: block;
81 border-color: #b0befd;
82 margin: 0px 3px;
83 }
84 }
85 span {
86 display: block;
87 vertical-align: middle;
88 &.latepoint-icon {
89 font-size: 14px;
90 padding: 2px;
91 border-radius: 6px;
92 &:hover {
93 background-color: #c1d4ff;
94 }
95 }
96 }
97 span + span {
98 margin-left: 3px;
99 }
100 }
101 }
102 .ls-all-items-w {
103 display: none;
104 position: absolute;
105 top: 100%;
106 left: 0px;
107 right: 0px;
108 background-color: #fff;
109 z-index: 999;
110 border: 1px solid #ababbf;
111 border-bottom-color: darken(#aaacb9, 5%);
112 border-top: none;
113 border-radius: 0px 0px $form-controls-border-radius $form-controls-border-radius;
114 box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15), 0px 3px 10px rgba(0, 0, 0, 0.1);
115 max-height: 235px;
116 overflow: auto;
117 .ls-item {
118 border-bottom: 1px solid #eee;
119 padding: 8px 10px;
120 &.selected {
121 color: $color-faded;
122 }
123 &:last-child {
124 border-bottom: none;
125 }
126 &:hover:not(.selected) {
127 background-color: #e9eeff;
128 color: $brand-primary;
129 cursor: pointer;
130 }
131 }
132 }
133 &.ls-selecting {
134 .ls-all-items-w {
135 display: block;
136 }
137 .ls-selected-items-w {
138 border-color: #ababbf;
139 border-radius: $form-controls-border-radius $form-controls-border-radius 0px 0px;
140 }
141 }
142 }