diff --git a/packages/survey-creator-core/src/components/list.scss b/packages/survey-creator-core/src/components/list.scss index 61a34bbf0e..e0f3dcdac5 100644 --- a/packages/survey-creator-core/src/components/list.scss +++ b/packages/survey-creator-core/src/components/list.scss @@ -209,6 +209,7 @@ .svc-list__input { @include ctrDefaultFont; + background-color: transparent; color: var(--ctr-list-search-text-color, $foreground-dim); -webkit-appearance: none; -moz-appearance: none; diff --git a/packages/survey-creator-core/src/components/property-panel/property-panel.scss b/packages/survey-creator-core/src/components/property-panel/property-panel.scss index 2fd6fbe959..b2f960dacb 100644 --- a/packages/survey-creator-core/src/components/property-panel/property-panel.scss +++ b/packages/survey-creator-core/src/components/property-panel/property-panel.scss @@ -14,7 +14,6 @@ } .svc-property-grid-placeholder__header { display: flex; - width: var(--ctr-property-grid-placeholder-text-max-width, 256px); max-width: var(--ctr-property-grid-placeholder-text-max-width, 256px); flex-direction: column; justify-content: center; diff --git a/packages/survey-creator-core/src/components/side-bar/side-bar.scss b/packages/survey-creator-core/src/components/side-bar/side-bar.scss index 3584655645..5f93802809 100644 --- a/packages/survey-creator-core/src/components/side-bar/side-bar.scss +++ b/packages/survey-creator-core/src/components/side-bar/side-bar.scss @@ -133,8 +133,7 @@ $tabs-width: calc(var(--ctr-menu-toolbar-button-padding-left, 8px) + var(--ctr-m .svc-side-bar--flyout { .svc-side-bar__shadow { - background-color: $foreground-light; - opacity: 0.75; + background-color: var(--ctr-popup-haze-background-color, $background-semitransparent); position: absolute; top: 0; bottom: 0; diff --git a/packages/survey-creator-core/src/components/tabs/logic-ui.scss b/packages/survey-creator-core/src/components/tabs/logic-ui.scss index e16129d853..0fd82ca215 100644 --- a/packages/survey-creator-core/src/components/tabs/logic-ui.scss +++ b/packages/survey-creator-core/src/components/tabs/logic-ui.scss @@ -351,3 +351,9 @@ .svc-logic-tab__leave-apply-button { background-color: var(--ctr-button-background-color-danger, $red); } + +.svc-logic-question-value.sd-element--with-frame { + box-shadow: var(--lbr-question-panel-shadow-offset-x, 0px) var(--lbr-question-panel-shadow-offset-y, 1px) + var(--lbr-question-panel-shadow-blur, 2px) var(--lbr-question-panel-shadow-spread, 0px) + var(--lbr-question-panel-shadow-color, rgba(0, 0, 0, 0.15)); +} diff --git a/packages/survey-creator-core/src/property-grid-theme/blocks/spg-checkbox.scss b/packages/survey-creator-core/src/property-grid-theme/blocks/spg-checkbox.scss index 3148694b11..4150afb504 100644 --- a/packages/survey-creator-core/src/property-grid-theme/blocks/spg-checkbox.scss +++ b/packages/survey-creator-core/src/property-grid-theme/blocks/spg-checkbox.scss @@ -115,6 +115,7 @@ .spg-checkbox { .spg-question__description { padding: 0; + padding-top: var(--ctr-checkbox-description-text-margin-top, calcSize(0.75)); padding-inline-start: var(--ctr-checkbox-description-text-margin-left, calcSize(4)); color: var(--ctr-checkbox-description-text-color, $foreground-dim-light); }