Skip to content

Commit

Permalink
Merge pull request #142 from movableink/nicksteffens/sc-86341/color-a…
Browse files Browse the repository at this point in the history
…djustments

Nicksteffens/sc 86341/color adjustments
  • Loading branch information
nicksteffens authored Aug 10, 2023
2 parents 9ae1d42 + 8c2b328 commit 6683a3e
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion addon/components/fluid-date-input.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
(if
@hasWarning
"border-orange-400 focus:ring-orange-200"
"border-neutral-400 focus:border-blue-300 focus:ring-blue-200"
"border-neutral-300 focus:border-blue-300 focus:ring-blue-200"
)
)
as |borderStyle|
Expand Down
2 changes: 1 addition & 1 deletion addon/components/fluid-date-input/power-calendar-days.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
(if
day.isCurrentMonth
"border-white hover:border-blue-300"
"border-white hover:border-neutral-400 text-neutral-500"
"border-white hover:border-neutral-300 text-neutral-500"
)
)
)
Expand Down
2 changes: 1 addition & 1 deletion addon/components/fluid-select.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
defaultClass=(concat
"fluid-select__wrapper"
(if @dark " ember-basic-dropdown-content--dark")
" rounded border border-neutral-400"
" rounded border border-neutral-300"
)
)
trigger=(component
Expand Down
2 changes: 1 addition & 1 deletion addon/components/fluid-text-input.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
(if
@hasWarning
"border-orange-400 focus-within:ring-orange-200"
"border-neutral-400 focus-within:border-blue-300 focus-within:ring-blue-200"
"border-neutral-300 focus-within:border-blue-300 focus-within:ring-blue-200"
)
)
)
Expand Down
2 changes: 1 addition & 1 deletion app/styles/fluid/components/radio-block.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}

.radio-block {
@apply mb-6 border-solid border-2 border-neutral-400 rounded p-2 bg-neutral-100;
@apply mb-6 border-solid border-2 border-neutral-300 rounded p-2 bg-neutral-100;

overflow: hidden;

Expand Down
2 changes: 1 addition & 1 deletion app/styles/fluid/functional-components/fluid-input.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.fluid-input {
@apply border border-neutral-400 rounded-sm inline-block py-1 px-2 shadow-sm;
@apply border border-neutral-300 rounded-sm inline-block py-1 px-2 shadow-sm;
font-size: 16px;
color: theme('colors.neutral.700');
font-family: 'Open Sans';
Expand Down
4 changes: 2 additions & 2 deletions app/styles/fluid/functional-components/fluid-panel.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.fluid-panel {
@apply bg-neutral-50 border border-neutral-400 rounded p-4 mb-6 shadow-sm;
@apply bg-neutral-50 border border-neutral-300 rounded p-4 mb-6 shadow-sm;

overflow: hidden;

Expand All @@ -15,7 +15,7 @@
}

&__header + &__body {
@apply border-t border-neutral-400;
@apply border-t border-neutral-300;
}

&--dark {
Expand Down
4 changes: 2 additions & 2 deletions app/styles/fluid/semantic/layout.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.fluid {
.container {
@apply border-neutral-400;
@apply border-neutral-300;
@apply border;
@apply flex-col;
@apply flex;
Expand All @@ -19,7 +19,7 @@
@apply flex;
@apply flex-shrink-0;
@apply border-b;
@apply border-neutral-400;
@apply border-neutral-300;
@apply py-0;
@apply px-8;
@apply leading-3xl;
Expand Down
16 changes: 8 additions & 8 deletions tests/integration/components/expanding-list-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ module('Integration | component | fluid-lab/expanding-list', function (hooks) {
<FluidLab::ExpandingList as |list|>
<list.Header>
{{list.Toggle}}
<h5>
<h6>
Expanded w/toggle
</h5>
</h6>
</list.Header>
<list.Content>
<section data-test-expanded-with-toggle-content>
Expand All @@ -141,9 +141,9 @@ module('Integration | component | fluid-lab/expanding-list', function (hooks) {
<FluidLab::ExpandingList @expanded={{false}} as |list|>
<list.Header>
{{list.Toggle}}
<h5>
<h6>
Collapsed w/toggle
</h5>
</h6>
</list.Header>
<list.Content>
<section data-test-collapsed-with-toggle-content>
Expand All @@ -166,9 +166,9 @@ module('Integration | component | fluid-lab/expanding-list', function (hooks) {
</FluidLab::ExpandingList>
<FluidLab::ExpandingList @disabled={{true}} as |list|>
<list.Header>
<h5>
<h6>
Expanded w/o toggle
</h5>
</h6>
</list.Header>
<list.Content>
<section data-test-expanded-without-toggle-content>
Expand All @@ -192,9 +192,9 @@ module('Integration | component | fluid-lab/expanding-list', function (hooks) {
<FluidLab::ExpandingList @disabled={{true}} as |list|>
<list.Header>
{{list.Toggle}}
<h5>
<h6>
Disabled w/toggle
</h5>
</h6>
</list.Header>
<list.Content>
<section data-test-disabled-with-toggle-content>
Expand Down

0 comments on commit 6683a3e

Please sign in to comment.