diff --git a/css/app-sidebar.scss b/css/app-sidebar.scss index 89b79288c1..ad6a5f6ce3 100644 --- a/css/app-sidebar.scss +++ b/css/app-sidebar.scss @@ -37,13 +37,14 @@ } } - /** Hide the submit button for the title, because it does not trigger a save */ - .app-sidebar-header__desc { - .app-sidebar-header__maintitle-form { - button { - display: none; - } - } + // We use our custom header layout for the sidebar editor + .app-sidebar-header__info { + display: none !important; + } + + .app-sidebar-header__description { + // Close button should be aligned with calendar picker (header) + padding-top: 5px; } .editor-invitee-list-empty-message, @@ -237,10 +238,12 @@ } &__time-pickers { + flex-wrap: wrap; justify-content: space-between; + gap: 5px; .mx-datepicker { - width: 49%; + flex: 1 auto; .mx-input-append { background-color: transparent !important; @@ -248,16 +251,24 @@ } &--readonly { + justify-content: start; + .property-title-time-picker-read-only-wrapper { display: flex; align-items: center; - width: 50%; - margin: 3px 3px 3px 0; padding: 8px 7px; background-color: var(--color-main-background); color: var(--color-main-text); outline: none; + &--start-date { + padding-right: 0; + } + + &--end-date { + padding-left: 0; + } + &__icon { margin-left: 8px; height: 16px; @@ -277,24 +288,16 @@ } } - @media screen and (max-width: 1500px) { - &__time-pickers { - display: block; - } - - .mx-datepicker { - width: 100%; - } + &__all-day { + padding-left: 3px; + margin-top: 5px; - .property-title-time-picker-read-only-wrapper { - width: 100%; + // Reduce the height just a little bit (from 44px) to save some space + .checkbox-radio-switch__label { + min-height: 32px; } } - &__all-day { - justify-content: flex-start; - } - .datetime-picker-inline-icon { margin-top: 17px; opacity: .3; @@ -423,7 +426,6 @@ &__summary { display: flex; align-items: center; - margin-bottom: 5px; &__icon { width: 34px; @@ -434,7 +436,7 @@ &__content { flex: 1 auto; - padding: 0 7px; + padding: 8px 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; @@ -560,7 +562,6 @@ display: flex; width: 100%; align-items: flex-start; - margin-bottom: 5px; &__icon, &__info { @@ -608,7 +609,6 @@ div { width: calc(100% - 8px); /* for typical (thin) scrollbar size */ white-space: pre-line; - margin: 3px 3px 3px 0; padding: 8px 7px; background-color: var(--color-main-background); color: var(--color-main-text); @@ -617,26 +617,31 @@ word-break: break-word; /* allows breaking on long URLs */ max-height: 30vh; } - - a.linkified { - text-decoration: underline; - - &::after { - content: ' ↗'; - } - } } &--readonly-calendar-picker { - div.calendar-picker-option { - margin: 3px 3px 3px 0; padding: 8px 7px; } } } } + .property-text, + .property-select, + .property-color, + .property-select-multiple, + .property-title, + .property-repeat, + .resource-capacity, + .resource-room-type { + margin-bottom: 5px; + + &--readonly { + margin-bottom: 0; + } + } + .property-select, .property-select-multiple { .multiselect { @@ -645,21 +650,38 @@ } .property-color { - &__input { display: flex; + gap: 5px; + margin-bottom: 5px; + + &--readonly { + // Align with other (text based) fields + margin: 3px 0 3px 7px; + } } &__color-preview { - border-radius: var(--border-radius); - height: 34px !important; - width: 34px !important; - margin: 0; + $size: 44px; + width: $size !important; + height: $size !important; + border-radius: $size; } } .property-text { + &__icon { + align-self: flex-start; + padding-top: 4px; + } + &__input { + &--readonly { + // Reduce line height but still keep first row aligned to the icon + line-height: 1; + padding-top: calc(var(--default-line-height) / 2 - 0.5lh); + } + textarea { resize: none; } @@ -692,27 +714,24 @@ } .property-title { - &__input, - &__input input { - font-size: 20px; + input { + font-weight: bold; } } - .resource-room-type { - margin-bottom: 5px; + // Normalize gaps between all properties. We use outer margins between each row so a padding + // around inputs (from core) is not required. + .property-title, + .property-title-time-picker { + input { + margin: 0; + } } - .illustration-header { - max-height: 150px; - height: 150px; - width: 100%; + .resource-room-type { + margin-bottom: 5px; } - .illustration-header svg { - width: 100%; - height: 150px; - padding: 8px 8px 0 8px; - } } .timezone-popover-wrapper { @@ -739,29 +758,23 @@ text-align: left; max-width: 480px; width: 480px; - padding: 5px 8px; + padding: 5px 10px 10px 10px; .empty-content { margin-top: 0 !important; padding: 50px 0; } - .illustration-header { - height: 100px; - overflow: hidden; - margin-bottom: 5px; - background-color: var(--color-background-dark); - // There is probably a more elegant solution for this - margin: -5px 0 5px -8px; - width: 496px; - border-top-left-radius: var(--border-radius); - border-top-right-radius: var(--border-radius); - } - .property-title-time-picker { margin-bottom: 12px; } + .event-popover__invitees { + .avatar-participation-status__text { + bottom: 22px; + } + } + .event-popover__buttons { margin-top: 8px; } @@ -851,5 +864,10 @@ display: flex; justify-content: space-between; align-items: center; - margin-top: 20px; + + // Only apply the margin if at least one button is being rendered + &:not(:empty) { + margin-top: 20px; + } } + diff --git a/css/props-linkify-links.scss b/css/props-linkify-links.scss index 42e94ac831..9599139475 100644 --- a/css/props-linkify-links.scss +++ b/css/props-linkify-links.scss @@ -8,7 +8,6 @@ cursor: text; width: 100% !important; box-sizing: border-box; - margin-top: 1px !important; padding: 12px; white-space: pre-line; overflow: auto; @@ -19,7 +18,14 @@ max-height: 16em; max-height: calc(100vh - 500px); - a.linkified::after { - content: ' ↗'; + a.linkified { + text-decoration: underline; + + // Prevent misalignment when a linkified line starts with a link, e.g. in the location field + margin: 0; + + &::after { + content: ' ↗'; + } } } diff --git a/img/illustrations/a_day_at_the_park.svg b/img/illustrations/a_day_at_the_park.svg deleted file mode 100644 index 8e1c7a16bf..0000000000 --- a/img/illustrations/a_day_at_the_park.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/a_moment_to_relax.svg b/img/illustrations/a_moment_to_relax.svg deleted file mode 100644 index 2f36d92e35..0000000000 --- a/img/illustrations/a_moment_to_relax.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/adventure.svg b/img/illustrations/adventure.svg deleted file mode 100644 index d9eda74504..0000000000 --- a/img/illustrations/adventure.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/art_lover.svg b/img/illustrations/art_lover.svg deleted file mode 100644 index 90bf26c6fe..0000000000 --- a/img/illustrations/art_lover.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/art_museum.svg b/img/illustrations/art_museum.svg deleted file mode 100644 index 25077fce14..0000000000 --- a/img/illustrations/art_museum.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/awards.svg b/img/illustrations/awards.svg deleted file mode 100644 index 280335f1f1..0000000000 --- a/img/illustrations/awards.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/barbecue.svg b/img/illustrations/barbecue.svg deleted file mode 100644 index c7b1c03a42..0000000000 --- a/img/illustrations/barbecue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/barber.svg b/img/illustrations/barber.svg deleted file mode 100644 index 8c211fc76f..0000000000 --- a/img/illustrations/barber.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/basketball.svg b/img/illustrations/basketball.svg deleted file mode 100644 index 975cfd3a37..0000000000 --- a/img/illustrations/basketball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/bicycle.svg b/img/illustrations/bicycle.svg deleted file mode 100644 index 2fb3927a0f..0000000000 --- a/img/illustrations/bicycle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/biking.svg b/img/illustrations/biking.svg deleted file mode 100644 index e59dd7b5c3..0000000000 --- a/img/illustrations/biking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/birthday_cake.svg b/img/illustrations/birthday_cake.svg deleted file mode 100644 index 71841b509b..0000000000 --- a/img/illustrations/birthday_cake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/business_plan.svg b/img/illustrations/business_plan.svg deleted file mode 100644 index fd9a9fc987..0000000000 --- a/img/illustrations/business_plan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/calendar.svg b/img/illustrations/calendar.svg deleted file mode 100644 index 69e73896e3..0000000000 --- a/img/illustrations/calendar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/calling.svg b/img/illustrations/calling.svg deleted file mode 100644 index 5b34585e76..0000000000 --- a/img/illustrations/calling.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/camera.svg b/img/illustrations/camera.svg deleted file mode 100644 index 8a815bbba5..0000000000 --- a/img/illustrations/camera.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/camping.svg b/img/illustrations/camping.svg deleted file mode 100644 index 2cc9d0e6ef..0000000000 --- a/img/illustrations/camping.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/candidate.svg b/img/illustrations/candidate.svg deleted file mode 100644 index 22305edf60..0000000000 --- a/img/illustrations/candidate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/celebration.svg b/img/illustrations/celebration.svg deleted file mode 100644 index f0fcc804ad..0000000000 --- a/img/illustrations/celebration.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/certification.svg b/img/illustrations/certification.svg deleted file mode 100644 index 93cc8481f5..0000000000 --- a/img/illustrations/certification.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/charts.svg b/img/illustrations/charts.svg deleted file mode 100644 index cada5e9071..0000000000 --- a/img/illustrations/charts.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/christmas_tree.svg b/img/illustrations/christmas_tree.svg deleted file mode 100644 index b65ac709b1..0000000000 --- a/img/illustrations/christmas_tree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/city_driver.svg b/img/illustrations/city_driver.svg deleted file mode 100644 index df0984e9cb..0000000000 --- a/img/illustrations/city_driver.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/collab.svg b/img/illustrations/collab.svg deleted file mode 100644 index ea442bd3c3..0000000000 --- a/img/illustrations/collab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/compose_music.svg b/img/illustrations/compose_music.svg deleted file mode 100644 index bd519efba0..0000000000 --- a/img/illustrations/compose_music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/conference_call.svg b/img/illustrations/conference_call.svg deleted file mode 100644 index 3ffa168bef..0000000000 --- a/img/illustrations/conference_call.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/conference_speaker.svg b/img/illustrations/conference_speaker.svg deleted file mode 100644 index 243dcc1e8f..0000000000 --- a/img/illustrations/conference_speaker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/creation_process.svg b/img/illustrations/creation_process.svg deleted file mode 100644 index 5ac5d16122..0000000000 --- a/img/illustrations/creation_process.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/dinner.svg b/img/illustrations/dinner.svg deleted file mode 100644 index 2d8b1f46cf..0000000000 --- a/img/illustrations/dinner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/doctors.svg b/img/illustrations/doctors.svg deleted file mode 100644 index a95573e25a..0000000000 --- a/img/illustrations/doctors.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/dog_walking.svg b/img/illustrations/dog_walking.svg deleted file mode 100644 index 278040b5ed..0000000000 --- a/img/illustrations/dog_walking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/eating_together.svg b/img/illustrations/eating_together.svg deleted file mode 100644 index f7ef6ff8cb..0000000000 --- a/img/illustrations/eating_together.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/electric_car.svg b/img/illustrations/electric_car.svg deleted file mode 100644 index a025c6f594..0000000000 --- a/img/illustrations/electric_car.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/empty_cart.svg b/img/illustrations/empty_cart.svg deleted file mode 100644 index 243ab0ce0a..0000000000 --- a/img/illustrations/empty_cart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/exams.svg b/img/illustrations/exams.svg deleted file mode 100644 index 0ebe66bcb8..0000000000 --- a/img/illustrations/exams.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/exploring.svg b/img/illustrations/exploring.svg deleted file mode 100644 index 316f39fdb8..0000000000 --- a/img/illustrations/exploring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/farm_girl.svg b/img/illustrations/farm_girl.svg deleted file mode 100644 index 10d11772f8..0000000000 --- a/img/illustrations/farm_girl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/finish_line_katerina_limpitsouni.svg b/img/illustrations/finish_line_katerina_limpitsouni.svg deleted file mode 100644 index 424af49a5b..0000000000 --- a/img/illustrations/finish_line_katerina_limpitsouni.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/fireworks.svg b/img/illustrations/fireworks.svg deleted file mode 100644 index 1e92b7146a..0000000000 --- a/img/illustrations/fireworks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/fishing.svg b/img/illustrations/fishing.svg deleted file mode 100644 index ee0eece499..0000000000 --- a/img/illustrations/fishing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/gaming.svg b/img/illustrations/gaming.svg deleted file mode 100644 index 2d5741007c..0000000000 --- a/img/illustrations/gaming.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/gardening.svg b/img/illustrations/gardening.svg deleted file mode 100644 index 06500219bb..0000000000 --- a/img/illustrations/gardening.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/gift.svg b/img/illustrations/gift.svg deleted file mode 100644 index 05f0bb506a..0000000000 --- a/img/illustrations/gift.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/goal.svg b/img/illustrations/goal.svg deleted file mode 100644 index 23bd579822..0000000000 --- a/img/illustrations/goal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/golf.svg b/img/illustrations/golf.svg deleted file mode 100644 index 274a2d03aa..0000000000 --- a/img/illustrations/golf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/graduation.svg b/img/illustrations/graduation.svg deleted file mode 100644 index 3f7deee267..0000000000 --- a/img/illustrations/graduation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/greek_freak.svg b/img/illustrations/greek_freak.svg deleted file mode 100644 index ca7ed02062..0000000000 --- a/img/illustrations/greek_freak.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/hiking.svg b/img/illustrations/hiking.svg deleted file mode 100644 index 832b08e7ff..0000000000 --- a/img/illustrations/hiking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/home_run.svg b/img/illustrations/home_run.svg deleted file mode 100644 index 3fa49ca921..0000000000 --- a/img/illustrations/home_run.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/in_the_office.svg b/img/illustrations/in_the_office.svg deleted file mode 100644 index bcf774002e..0000000000 --- a/img/illustrations/in_the_office.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/interview.svg b/img/illustrations/interview.svg deleted file mode 100644 index ac685505e7..0000000000 --- a/img/illustrations/interview.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/into_the_night.svg b/img/illustrations/into_the_night.svg deleted file mode 100644 index 66559eabc4..0000000000 --- a/img/illustrations/into_the_night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/journey.svg b/img/illustrations/journey.svg deleted file mode 100644 index 84eabfdc86..0000000000 --- a/img/illustrations/journey.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/medicine.svg b/img/illustrations/medicine.svg deleted file mode 100644 index fd92d7fdd4..0000000000 --- a/img/illustrations/medicine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/meditation.svg b/img/illustrations/meditation.svg deleted file mode 100644 index 603d354ee6..0000000000 --- a/img/illustrations/meditation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/meeting.svg b/img/illustrations/meeting.svg deleted file mode 100644 index bbb5cb6fb5..0000000000 --- a/img/illustrations/meeting.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/movie_night.svg b/img/illustrations/movie_night.svg deleted file mode 100644 index 70e458cabb..0000000000 --- a/img/illustrations/movie_night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/newsletter.svg b/img/illustrations/newsletter.svg deleted file mode 100644 index 7a8332c399..0000000000 --- a/img/illustrations/newsletter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/no_data.svg b/img/illustrations/no_data.svg deleted file mode 100644 index eba7afa902..0000000000 --- a/img/illustrations/no_data.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/old_day.svg b/img/illustrations/old_day.svg deleted file mode 100644 index ef3a4ff7a2..0000000000 --- a/img/illustrations/old_day.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/outdoor_adventure.svg b/img/illustrations/outdoor_adventure.svg deleted file mode 100644 index 5a42d3aa28..0000000000 --- a/img/illustrations/outdoor_adventure.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/party.svg b/img/illustrations/party.svg deleted file mode 100644 index 14c63a130e..0000000000 --- a/img/illustrations/party.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/pay_online.svg b/img/illustrations/pay_online.svg deleted file mode 100644 index 162e816a5d..0000000000 --- a/img/illustrations/pay_online.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/personal_finance.svg b/img/illustrations/personal_finance.svg deleted file mode 100644 index 48f6b4f2fa..0000000000 --- a/img/illustrations/personal_finance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/personal_trainer.svg b/img/illustrations/personal_trainer.svg deleted file mode 100644 index a569fc5554..0000000000 --- a/img/illustrations/personal_trainer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/photo_session.svg b/img/illustrations/photo_session.svg deleted file mode 100644 index 74fb30d00c..0000000000 --- a/img/illustrations/photo_session.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/pilates.svg b/img/illustrations/pilates.svg deleted file mode 100644 index 6679d81064..0000000000 --- a/img/illustrations/pilates.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/pizza_sharing.svg b/img/illustrations/pizza_sharing.svg deleted file mode 100644 index 3b8546e99d..0000000000 --- a/img/illustrations/pizza_sharing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/podcast.svg b/img/illustrations/podcast.svg deleted file mode 100644 index c2ecf94ef4..0000000000 --- a/img/illustrations/podcast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/presentation.svg b/img/illustrations/presentation.svg deleted file mode 100644 index c4859f4c65..0000000000 --- a/img/illustrations/presentation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/professor.svg b/img/illustrations/professor.svg deleted file mode 100644 index 6676cbbdcd..0000000000 --- a/img/illustrations/professor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/relaxation.svg b/img/illustrations/relaxation.svg deleted file mode 100644 index 597ed0bde3..0000000000 --- a/img/illustrations/relaxation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/reviewed_docs.svg b/img/illustrations/reviewed_docs.svg deleted file mode 100644 index 1025f9681b..0000000000 --- a/img/illustrations/reviewed_docs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/skateboard.svg b/img/illustrations/skateboard.svg deleted file mode 100644 index b5c203dc54..0000000000 --- a/img/illustrations/skateboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/studying.svg b/img/illustrations/studying.svg deleted file mode 100644 index b6019add60..0000000000 --- a/img/illustrations/studying.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/subway.svg b/img/illustrations/subway.svg deleted file mode 100644 index 1f46d9907f..0000000000 --- a/img/illustrations/subway.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/sunlight.svg b/img/illustrations/sunlight.svg deleted file mode 100644 index bb694b18c5..0000000000 --- a/img/illustrations/sunlight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/teaching.svg b/img/illustrations/teaching.svg deleted file mode 100644 index 7d896561d3..0000000000 --- a/img/illustrations/teaching.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/travel_plans.svg b/img/illustrations/travel_plans.svg deleted file mode 100644 index a38f3d420a..0000000000 --- a/img/illustrations/travel_plans.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/travelers.svg b/img/illustrations/travelers.svg deleted file mode 100644 index 51ce8dfa2b..0000000000 --- a/img/illustrations/travelers.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/voting.svg b/img/illustrations/voting.svg deleted file mode 100644 index 05a940b963..0000000000 --- a/img/illustrations/voting.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/wedding.svg b/img/illustrations/wedding.svg deleted file mode 100644 index 9aed8ea552..0000000000 --- a/img/illustrations/wedding.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/window_shopping.svg b/img/illustrations/window_shopping.svg deleted file mode 100644 index 21e5e26bc3..0000000000 --- a/img/illustrations/window_shopping.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/wine_tasting.svg b/img/illustrations/wine_tasting.svg deleted file mode 100644 index 46acb67117..0000000000 --- a/img/illustrations/wine_tasting.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/working_out.svg b/img/illustrations/working_out.svg deleted file mode 100644 index 298f9d6431..0000000000 --- a/img/illustrations/working_out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/illustrations/working_remotely.svg b/img/illustrations/working_remotely.svg deleted file mode 100644 index d3727f5254..0000000000 --- a/img/illustrations/working_remotely.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/components/Editor/Attachments/AttachmentsList.vue b/src/components/Editor/Attachments/AttachmentsList.vue index c95d82ba7e..d5ba4a18c2 100644 --- a/src/components/Editor/Attachments/AttachmentsList.vue +++ b/src/components/Editor/Attachments/AttachmentsList.vue @@ -8,10 +8,10 @@