Skip to content

Commit fd355c9

Browse files
GVodyanovst3iny
authored andcommitted
chore: migrate to nextcloud/vue 8
Signed-off-by: Grigory V <scratchx@gmx.com> Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
1 parent dd04772 commit fd355c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+13177
-25079
lines changed

css/app-navigation.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
}
152152

153153
.app-navigation-entry-wrapper.deleted {
154-
.app-navigation-entry__title {
154+
.app-navigation-entry__name {
155155
text-decoration: line-through;
156156
}
157157
}
@@ -163,7 +163,7 @@
163163
}
164164

165165
.app-navigation-entry-wrapper.disabled {
166-
.app-navigation-entry__title {
166+
.app-navigation-entry__name {
167167
color: var(--color-text-lighter) !important;
168168
}
169169
}
@@ -208,13 +208,13 @@
208208
}
209209

210210
.app-navigation-entry-new-calendar {
211-
.app-navigation-entry__title {
211+
.app-navigation-entry__name {
212212
color: var(--color-text-maxcontrast) !important;
213213
}
214214

215215
&:hover,
216216
&--open {
217-
.app-navigation-entry__title {
217+
.app-navigation-entry__name{
218218
color: var(--color-text-light) !important;
219219
}
220220
}

css/app-sidebar.scss

+60-48
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,9 @@
3838
}
3939

4040
/** Hide the submit button for the title, because it does not trigger a save */
41-
.app-sidebar-header__desc {
42-
.app-sidebar-header__maintitle-form {
43-
button {
44-
display: none;
45-
}
41+
.app-sidebar-header__mainname-form {
42+
button {
43+
display: none;
4644
}
4745
}
4846

@@ -141,7 +139,7 @@
141139
display: flex;
142140
align-items: center;
143141

144-
.multiselect {
142+
.v-select {
145143
width: 100%;
146144
min-width: 100px !important; // Set a lower min-width
147145
}
@@ -202,7 +200,7 @@
202200
&__label,
203201
&__end-type-select {
204202
display: block;
205-
min-width: 75px;
203+
min-width: 160px;
206204
width: 25%;
207205
}
208206

@@ -446,45 +444,6 @@
446444
}
447445
}
448446

449-
.resource-search__multiselect,
450-
.invitees-search__multiselect {
451-
width: 100%;
452-
453-
.resource-search-list-item,
454-
.invitees-search-list-item {
455-
display: flex;
456-
align-items: center;
457-
width: 100%;
458-
459-
// Account for avatar width (because it is position: relative)
460-
padding-right: 32px;
461-
462-
&__label {
463-
width: 100%;
464-
padding: 0 8px;
465-
466-
&__availability {
467-
color: var(--color-text-maxcontrast);
468-
}
469-
470-
div {
471-
overflow: hidden;
472-
text-overflow: ellipsis;
473-
white-space: nowrap;
474-
}
475-
476-
div:nth-child(1) {
477-
color: var(--color-main-text)
478-
}
479-
480-
div:nth-child(2) {
481-
color: var(--color-text-lighter);
482-
line-height: 1;
483-
}
484-
}
485-
}
486-
}
487-
488447
.resource-list-item,
489448
.invitees-list-item {
490449
display: flex;
@@ -585,6 +544,7 @@
585544
}
586545

587546
&__icon {
547+
flex-shrink: 0;
588548
margin-left: -5px;
589549
margin-right: 5px;
590550
}
@@ -594,7 +554,7 @@
594554

595555
textarea,
596556
input,
597-
div.multiselect {
557+
div.v-select {
598558
width: 100%;
599559
}
600560

@@ -639,9 +599,15 @@
639599

640600
.property-select,
641601
.property-select-multiple {
642-
.multiselect {
602+
align-items: center;
603+
604+
.v-select {
643605
min-width: unset !important;
644606
}
607+
608+
&__input {
609+
width: 100%;
610+
}
645611
}
646612

647613
.property-color {
@@ -808,6 +774,7 @@
808774
.calendar-picker-option {
809775
display: flex;
810776
align-items: center;
777+
overflow: hidden;
811778

812779
&__color-indicator {
813780
width: 12px;
@@ -822,6 +789,7 @@
822789
&__label {
823790
overflow: hidden;
824791
text-overflow: ellipsis;
792+
white-space: nowrap;
825793
flex-grow: 1;
826794
}
827795

@@ -843,6 +811,11 @@
843811
border: none;
844812
margin-right: 8px;
845813
}
814+
815+
.icon {
816+
margin-left: 4px;
817+
scale: 0.8;
818+
}
846819
}
847820

848821
.resource-list-button-group,
@@ -853,3 +826,42 @@
853826
align-items: center;
854827
margin-top: 20px;
855828
}
829+
830+
.resource-search-list-item,
831+
.invitees-search-list-item {
832+
display: flex;
833+
align-items: center;
834+
width: 100%;
835+
836+
// Account for avatar width (because it is position: relative)
837+
padding-right: 32px;
838+
839+
&__label {
840+
width: 100%;
841+
padding: 0 8px;
842+
843+
&__availability {
844+
color: var(--color-text-maxcontrast);
845+
}
846+
847+
div {
848+
overflow: hidden;
849+
text-overflow: ellipsis;
850+
white-space: nowrap;
851+
}
852+
853+
div:nth-child(1) {
854+
color: var(--color-main-text)
855+
}
856+
857+
div:nth-child(2) {
858+
color: var(--color-text-lighter);
859+
line-height: 1;
860+
}
861+
}
862+
}
863+
864+
.resource-search__multiselect,
865+
.invitees-search__multiselect {
866+
width: 100%;
867+
}

0 commit comments

Comments
 (0)