diff --git a/projects/common/components/compound-elements/cloze/cloze-child-elements/drop-list-simple.component.ts b/projects/common/components/compound-elements/cloze/cloze-child-elements/drop-list-simple.component.ts index 3c456500bf96c4afdfeebd9bdfa9c536d568a251..345dde6e89f53a485663e4de52d867c22767dc8d 100644 --- a/projects/common/components/compound-elements/cloze/cloze-child-elements/drop-list-simple.component.ts +++ b/projects/common/components/compound-elements/cloze/cloze-child-elements/drop-list-simple.component.ts @@ -81,7 +81,7 @@ import { DropListComponent } from 'common/components/input-elements/drop-list.co '.item:active {cursor: grabbing}', '.errors {box-sizing: border-box; border: 2px solid #f44336 !important;}', '.error-message {font-size: 75%; margin-top: 10px;}', - '.cdk-drag-preview {padding: 8px 20px; border-radius: 10px; box-shadow: 2px 2px 5px black;}', + '.cdk-drag-preview {padding: 8px 20px; border-radius: 5px; box-shadow: 2px 2px 5px black;}', '.drag-placeholder {box-sizing: border-box; border-radius: 5px; background-color: lightgrey; border: dotted 3px #999;}', '.drag-placeholder {transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);}', '.cdk-drag-animating {transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);}', diff --git a/projects/common/components/input-elements/drop-list.component.ts b/projects/common/components/input-elements/drop-list.component.ts index 80b1dfdc1fdc064d36f7d2c193d0fb42ec414ce2..cbcdc31f5180ece5209eb4c8b75bf3641663c4f1 100644 --- a/projects/common/components/input-elements/drop-list.component.ts +++ b/projects/common/components/input-elements/drop-list.component.ts @@ -116,9 +116,9 @@ import { FormElementComponent } from '../../directives/form-element-component.di `, styles: [ '.list-container {width: 100%; height: 100%;}', - '.list {border-radius: 10px; width: calc(100% - 6px);}', + '.list {border-radius: 5px; width: calc(100% - 6px);}', '.list {height: calc(100% - 6px); margin-top: 3px; margin-left: 3px;}', - '.text-item {border-radius: 10px; padding: 10px;}', + '.text-item {border-radius: 5px; padding: 10px;}', '.item {cursor: grab}', '.item:active {cursor: grabbing}', '.copyOnDrop .item {transform: none !important}', @@ -126,7 +126,7 @@ import { FormElementComponent } from '../../directives/form-element-component.di '.horizontal-orientation.item:not(:last-child) {margin-right: 5px}', '.errors {outline: 2px solid #f44336 !important;}', '.error-message {font-size: 75%; margin-top: 10px;}', - '.cdk-drag-preview {padding: 8px 20px; border-radius: 10px; z-index: 5; box-shadow: 2px 2px 5px black;}', + '.cdk-drag-preview {padding: 8px 20px; border-radius: 5px; z-index: 5; box-shadow: 2px 2px 5px black;}', '.drag-placeholder {box-sizing: border-box; border-radius: 5px; background-color: lightgrey; border: dotted 3px #999;}', '.drag-placeholder {transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);}', '.cdk-drag-animating {transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);}',