-
Notifications
You must be signed in to change notification settings - Fork 592
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
Pro 6822 color picker broken #4809
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,7 @@ export default { | |
} | ||
|
||
.apos-color__input { | ||
width: 100%; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixes the rgba inputs not wanting to respect the flexed parent size |
||
padding: 0; | ||
border: 0; | ||
outline: none; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.apos-schema { | ||
padding-top: $spacing-base; | ||
padding-bottom: $spacing-base; | ||
padding-top: $spacing-base * 2; | ||
padding-bottom: $spacing-base * 2; | ||
} | ||
|
||
:deep(.apos-field--array.apos-field--error-duplicate) { | ||
|
@@ -253,9 +253,7 @@ | |
} | ||
|
||
.apos-input-array-inline-body { | ||
overflow: hidden; | ||
max-height: 999px; | ||
padding: $spacing-base 0; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove the padding here to add it above to |
||
transition: all 400ms ease; | ||
|
||
&.collapse-enter-from, | ||
|
@@ -265,6 +263,7 @@ | |
|
||
&.collapse-enter-active, | ||
&.collapse-leave-active { | ||
overflow: hidden; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We only need the overflow hidden during the animation. This way it's not the case when opened and the color picker can overflow. |
||
transition: max-height 400ms ease; | ||
} | ||
} | ||
|
@@ -307,7 +306,6 @@ | |
@include apos-transition(); | ||
|
||
& { | ||
overflow: hidden; | ||
padding: 0; | ||
border: 1px solid var(--a-base-9); | ||
outline: 1px solid transparent; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just making in more readable