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 / _grid.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
_grid.scss
88 lines
1 // Container widths
2 //
3 // Set the container width, and override it for fixed navbars in media queries.
4
5 @if $enable-grid-classes {
6 .container {
7 @include make-container();
8 @include make-container-max-widths();
9 }
10 }
11
12 // Fluid container
13 //
14 // Utilizes the mixin meant for fixed width containers, but with 100% width for
15 // fluid, full width layouts.
16
17 @if $enable-grid-classes {
18 .container-fluid {
19 @include make-container();
20 }
21 }
22
23 // Row
24 //
25 // Rows contain and clear the floats of your columns.
26
27 @if $enable-grid-classes {
28 .os-row {
29 @include make-row();
30 }
31
32 // Remove the negative margin from default .os-row, then the horizontal padding
33 // from all immediate children columns (to prevent runaway style inheritance).
34 .no-gutters {
35 margin-right: 0;
36 margin-left: 0;
37
38 > .os-col,
39 > [class*="os-col-"] {
40 padding-right: 0;
41 padding-left: 0;
42 }
43 }
44 }
45
46 // Columns
47 //
48 // Common styles for small and large grid columns
49
50 @if $enable-grid-classes {
51 @include make-grid-columns();
52 }
53
54
55
56
57 @each $breakpoint in map-keys($grid-breakpoints) {
58 $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
59 @include media-breakpoint-up($breakpoint, $grid-breakpoints) {
60 .os-col#{$infix}-br {
61 border-right: 1px solid $border-color-sub;
62 padding-right: 30px;
63 & + div[class*="os-col-"] {
64 padding-left: 30px;
65 }
66 }
67 .os-col#{$infix}-pr {
68 padding-right: 20px;
69 & + div[class*="os-col-"] {
70 padding-left: 20px;
71 }
72 }
73 }
74 }
75
76
77 .os-dashboard-row {
78 display: flex;
79 .os-dashboard-column {
80 flex: 1;
81 & + .os-dashboard-column {
82 margin-left: $content-padding;
83 }
84 &.os-fit {
85 flex: 0;
86 }
87 }
88 }