Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: CREATOR: Ranking Items Wrap Issues #5782

Merged
merged 15 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
47489ab
work for the https://github.com/surveyjs/survey-library/issues/8680
dmitry-kurmanov Aug 14, 2024
860571d
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Aug 15, 2024
4c1318f
work for the https://github.com/surveyjs/survey-library/issues/8680
dmitry-kurmanov Aug 15, 2024
f3cf28b
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Aug 19, 2024
1fa7ee8
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Aug 20, 2024
8f9c22c
work for the https://github.com/surveyjs/survey-library/issues/8680
dmitry-kurmanov Aug 20, 2024
008e220
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Aug 26, 2024
0938728
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Aug 29, 2024
0f3a846
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Sep 16, 2024
7118329
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Sep 17, 2024
8efc8e5
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Sep 19, 2024
1efaa1b
work for https://github.com/surveyjs/survey-library/issues/8680
dmitry-kurmanov Sep 19, 2024
76a8855
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Sep 20, 2024
788350c
Merge branch 'master' into bug/library-8680-ranking-wrap-item-text
dmitry-kurmanov Sep 20, 2024
850b286
work for https://github.com/surveyjs/survey-library/issues/8680
dmitry-kurmanov Sep 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion packages/survey-creator-core/src/components/creator.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,22 @@ survey-creator,
}
}

survey-creator {
survey-creator,
.svc-creator {
.sv-drag-drop-choices-shortcut {
.sv-drag-drop-choices-shortcut__content {
background: var(--ctr-survey-radio-button-group-item-background-color-floating, $background);

.sd-item__decorator {}

.svc-item-value__item {
overflow: hidden;

.sv-string-viewer,
.sv-string-editor {
white-space: nowrap;
}
}
}
}
}
Expand Down
18 changes: 18 additions & 0 deletions packages/survey-creator-core/src/components/item-value.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
flex-shrink: 0;
min-width: 72px;
justify-content: flex-end;
align-self: flex-start;
}

.svc-item-value-controls__button {
Expand Down Expand Up @@ -198,6 +199,12 @@
}
}

.sv-drag-drop-choices-shortcut {
.sv-ranking-item__text {
overflow: hidden;
}
}

.svc-item-value--ghost {
.svc-item-value__ghost {
display: block;
Expand All @@ -206,6 +213,17 @@
.svc-item-value-controls {
visibility: hidden;
}

.svc-item-value__item {
display: none;
}

height: calcSize(6);

.sv-string-viewer,
.sv-string-editor {
white-space: unset;
}
}

.svc-item-value--movedown {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading