_activities.scss
9 months ago
_addons.scss
9 months ago
_agents.scss
9 months ago
_animations.scss
9 months ago
_booking_form_preview.scss
9 months ago
_bookings.scss
3 weeks ago
_bundles.scss
9 months ago
_buttons.scss
9 months ago
_calendars.scss
9 months ago
_categories.scss
9 months ago
_customers.scss
9 months ago
_dark.scss
9 months ago
_daterangepicker.scss
9 months ago
_elements.scss
1 month ago
_forms.scss
9 months ago
_grid.scss
1 year ago
_grid_variables.scss
1 year ago
_icons.scss
1 year ago
_latecheckbox.scss
9 months ago
_lateselect.scss
1 year ago
_layout.scss
9 months ago
_lightbox.scss
9 months ago
_menu.scss
9 months ago
_messages.scss
9 months ago
_misc.scss
9 months ago
_mixins.scss
9 months ago
_notifications.scss
9 months ago
_orders.scss
9 months ago
_pickr.scss
1 year ago
_processes.scss
1 month ago
_quick_availability.scss
9 months ago
_reminders.scss
1 year ago
_responsive.scss
9 months ago
_roles.scss
1 year ago
_schedule.scss
3 months ago
_services.scss
9 months ago
_settings.scss
1 day ago
_side-panel.scss
9 months ago
_steps.scss
1 year ago
_tables.scss
9 months ago
_type.scss
1 year ago
_updates.scss
9 months ago
_utilities.scss
1 year ago
_variables.scss
9 months ago
_widgets.scss
9 months ago
_wizard.scss
2 weeks ago
_activities.scss
267 lines
| 1 | .user-link-with-avatar { |
| 2 | text-decoration: none; |
| 3 | border: none !important; |
| 4 | display: inline-flex; |
| 5 | align-items: center; |
| 6 | |
| 7 | .ula-avatar { |
| 8 | margin-right: 8px; |
| 9 | width: 20px; |
| 10 | height: 20px; |
| 11 | border-radius: 40px; |
| 12 | background-size: cover; |
| 13 | background-position: center center; |
| 14 | } |
| 15 | |
| 16 | .ula-name { |
| 17 | vertical-align: middle; |
| 18 | text-decoration: underline; |
| 19 | margin-right: 5px; |
| 20 | } |
| 21 | |
| 22 | span { |
| 23 | display: block; |
| 24 | } |
| 25 | |
| 26 | .latepoint-icon { |
| 27 | visibility: hidden; |
| 28 | } |
| 29 | |
| 30 | &:hover { |
| 31 | .latepoint-icon { |
| 32 | visibility: visible; |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | |
| 38 | .activity-status-wrapper { |
| 39 | padding: 0 0 15px 0; |
| 40 | |
| 41 | .activity-status-content { |
| 42 | text-transform: capitalize; |
| 43 | display: flex; |
| 44 | align-items: center; |
| 45 | padding: 10px 15px; |
| 46 | font-weight: $body-font-weight-bold; |
| 47 | font-size: $body-font-size-xs; |
| 48 | min-width: 400px; |
| 49 | text-align: left; |
| 50 | position: relative; |
| 51 | background-color: #f8f8f8; |
| 52 | border-left: 4px solid #f8f8f8; |
| 53 | color: $headings-color; |
| 54 | |
| 55 | .status-item { |
| 56 | position: relative; |
| 57 | & + .status-item { |
| 58 | margin-left: 10px; |
| 59 | border-left: 1px solid #ddd; |
| 60 | padding-left: 10px; |
| 61 | } |
| 62 | |
| 63 | strong { |
| 64 | font-weight: $body-font-weight-black; |
| 65 | display: block; |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | &.status-success .activity-status-content { |
| 71 | background-color: #e5ffe4; |
| 72 | border-left-color: #0d7f24; |
| 73 | color: #242822; |
| 74 | .status-item { |
| 75 | border-left-color: #c9edc7; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | &.status-error .activity-status-content { |
| 80 | background-color: #fff1f1; |
| 81 | border-left-color: #f64545; |
| 82 | color: #7c1a1a; |
| 83 | strong { |
| 84 | color: #330303; |
| 85 | } |
| 86 | .status-item { |
| 87 | border-left-color: #f4d8d8; |
| 88 | } |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | .activity-preview-wrapper { |
| 93 | position: relative; |
| 94 | |
| 95 | > h3 { |
| 96 | margin-bottom: 10px; |
| 97 | font-size: 22px; |
| 98 | } |
| 99 | |
| 100 | .activity-to-run { |
| 101 | padding: 5px 0px; |
| 102 | |
| 103 | .os-form-group.os-form-toggler-group { |
| 104 | margin-bottom: 0px; |
| 105 | } |
| 106 | |
| 107 | label { |
| 108 | font-size: 18px; |
| 109 | color: $headings-color; |
| 110 | } |
| 111 | |
| 112 | &:not(:last-child) { |
| 113 | border-bottom: 1px solid $border-color-lightest; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | .activity-preview-error { |
| 118 | padding: 15px; |
| 119 | font-size: ($font-size-base * 1.2); |
| 120 | font-weight: $body-font-weight-bold; |
| 121 | background-color: #fff5e5; |
| 122 | color: #8f6b3e; |
| 123 | border-radius: 6px; |
| 124 | text-align: center; |
| 125 | margin-bottom: 20px; |
| 126 | } |
| 127 | |
| 128 | .activity-preview-content-wrapper { |
| 129 | transition: opacity 0.3s ease; |
| 130 | } |
| 131 | |
| 132 | pre { |
| 133 | margin: 0; |
| 134 | } |
| 135 | |
| 136 | &.os-loading { |
| 137 | .activity-preview-content-wrapper { |
| 138 | opacity: 0; |
| 139 | } |
| 140 | |
| 141 | &:before { |
| 142 | @include loading-circle($brand-primary, 20px); |
| 143 | top: 50px; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | .activity-preview-to { |
| 148 | display: flex; |
| 149 | font-weight: $body-font-weight-bold; |
| 150 | margin-bottom: 10px; |
| 151 | |
| 152 | .os-label { |
| 153 | color: $color-faded; |
| 154 | display: block; |
| 155 | margin-right: 5px; |
| 156 | } |
| 157 | |
| 158 | .os-value { |
| 159 | display: block; |
| 160 | |
| 161 | & + .os-label { |
| 162 | margin-left: 10px; |
| 163 | padding-left: 10px; |
| 164 | border-left: 1px solid #eee; |
| 165 | } |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | .activity-preview-subject { |
| 170 | display: flex; |
| 171 | font-size: floor($headings-font-size * 0.8); |
| 172 | font-weight: $body-font-weight-bold; |
| 173 | margin-bottom: 5px; |
| 174 | |
| 175 | .os-label { |
| 176 | color: $color-faded; |
| 177 | display: block; |
| 178 | margin-right: 5px; |
| 179 | } |
| 180 | |
| 181 | .os-value { |
| 182 | display: block; |
| 183 | flex: 1; |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | &.type-email_sent { |
| 188 | padding: 0px; |
| 189 | |
| 190 | .activity-preview-content-wrapper { |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | &.type-sms_sent { |
| 195 | .activity-preview-content-wrapper { |
| 196 | padding: 20px; |
| 197 | margin: 0px auto; |
| 198 | width: 340px; |
| 199 | padding-right: 50px; |
| 200 | border: 14px solid #e1e1e5; |
| 201 | border-bottom: none; |
| 202 | padding-bottom: 40px; |
| 203 | border-radius: 60px 60px 0px 0px; |
| 204 | } |
| 205 | |
| 206 | .activity-preview-to { |
| 207 | margin-bottom: 20px; |
| 208 | } |
| 209 | |
| 210 | .activity-preview-content { |
| 211 | padding: 22px; |
| 212 | border-radius: 20px 20px 20px 0px; |
| 213 | display: inline-block; |
| 214 | background-color: #54a7ff; |
| 215 | background-image: linear-gradient(45deg, #004fff, transparent); |
| 216 | box-shadow: 0px 1px 4px #b4dbff; |
| 217 | color: #fff; |
| 218 | font-size: floor($font-size-base * 1.1); |
| 219 | font-weight: $body-font-weight-bold; |
| 220 | |
| 221 | } |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | .activities-index { |
| 226 | .activity-type-error { |
| 227 | .activity-column-name { |
| 228 | background-color: #ffe8e8; |
| 229 | |
| 230 | > div { |
| 231 | position: relative; |
| 232 | padding-left: 20px; |
| 233 | font-weight: $body-font-weight-bold; |
| 234 | color: #b80000; |
| 235 | |
| 236 | &:before { |
| 237 | color: #b80000; |
| 238 | @include latepointfont_admin("\e94e"); |
| 239 | position: absolute; |
| 240 | font-size: 14px; |
| 241 | left: 0px; |
| 242 | top: 50%; |
| 243 | transform: translateY(-50%); |
| 244 | } |
| 245 | } |
| 246 | } |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | .view-activity-link { |
| 251 | position: relative; |
| 252 | |
| 253 | &.os-loading { |
| 254 | color: transparent !important; |
| 255 | border-bottom-color: transparent !important; |
| 256 | |
| 257 | &:focus { |
| 258 | box-shadow: none; |
| 259 | outline: none; |
| 260 | } |
| 261 | |
| 262 | &:before { |
| 263 | @include loading-circle($brand-primary, 14px); |
| 264 | z-index: 9999; |
| 265 | } |
| 266 | } |
| 267 | } |