Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9592e002 authored by AVINASH GUSAIN's avatar AVINASH GUSAIN
Browse files

fix src

parent edb1a20b
Loading
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -314,7 +314,6 @@ export default {
	height: 16px;
	width: 16px;
}

.fullcalendar-widget{
	min-height: 500px;
	:deep(.fc-col-header-cell-cushion){
+0 −3
Original line number Diff line number Diff line
@@ -249,7 +249,6 @@ export default {
.attachments-input {
	display: none;
}

.attachments-summary {
	display:flex;
	align-items: center;
@@ -301,7 +300,6 @@ export default {
	margin-top: 1rem;
	text-align: center;
}

.button-group {
	display: flex;
	align-content: center;
@@ -311,7 +309,6 @@ export default {
		margin-right: 6px;
	}
}

.attachment-icon {
	width: 24px;
	height: 24px;
+0 −3
Original line number Diff line number Diff line
@@ -527,7 +527,6 @@ export default {
	display: block;
	height: 100%;
}

.modal__content {
	padding: 50px;
	//when the calendar is open, it's cut at the bottom, adding a margin fixes it
@@ -575,11 +574,9 @@ export default {
		}
	}
}

:deep(.vs__search ) {
	text-overflow: ellipsis;
}

:deep(.mx-input) {
	height: 38px !important;
}
+0 −1
Original line number Diff line number Diff line
@@ -254,7 +254,6 @@ export default {
.invitees-list-item {
	flex-wrap: wrap;
}

.invitees-list-item__actions {
	display: flex;
}
+1 −5
Original line number Diff line number Diff line
@@ -133,12 +133,8 @@ export default {
					promises.push(this.findAttendeesFromCircles(query))
				}

				const [contactsResults, davResults, circleResults] = await Promise.all(promises)
				const [contactsResults] = await Promise.all(promises)
				matches.push(...contactsResults)
				matches.push(...davResults)
				if (isCirclesEnabled) {
					matches.push(...circleResults)
				}

				// Source of the Regex: https://stackoverflow.com/a/46181
				// eslint-disable-next-line
Loading