Skip to content

Commit

Permalink
SSR-4153: Update the pre/next button color
Browse files Browse the repository at this point in the history
  • Loading branch information
h000780 committed Dec 16, 2024
1 parent a03146a commit 7ffe936
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 4 additions & 2 deletions src/tabs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ let exportTabs;
fill-rule="evenodd"
clip-rule="evenodd"
d="M1.99061 7.5L9 0.0604158L7.06632 0L0 7.5L7.06632 15L9 14.9396L1.99061 7.5Z"
fill="${this._isAtStart ? "GrayText" : "#333333"}"
fill="#000000"
opacity="${this._isAtStart ? 0.2 : 1}"
/>
</svg>
`;
Expand All @@ -233,7 +234,8 @@ let exportTabs;
fill-rule="evenodd"
clip-rule="evenodd"
d="M7.00939 7.5L0 0.0604158L1.93368 0L9 7.5L1.93368 15L0 14.9396L7.00939 7.5Z"
fill="${this._isAtEnd ? "GrayText" : "#333333"}"
fill="#000000"
opacity="${this._isAtEnd ? 0.2 : 1}"
/>
</svg>
`;
Expand Down
4 changes: 0 additions & 4 deletions src/tabs/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ export const TABS_CSS = `
visibility: hidden;
}
.kuc-tabs__group__tabs-container__tab-pre-button[disabled] {
border: none;
background-color: #d4d7d7;
cursor: not-allowed;
}
.kuc-tabs__group__tabs-container__tab-next-button {
Expand All @@ -76,8 +74,6 @@ export const TABS_CSS = `
visibility: hidden;
}
.kuc-tabs__group__tabs-container__tab-next-button[disabled] {
border: none;
background-color: #d4d7d7;
cursor: not-allowed;
}
.kuc-tabs__group__tabs-container__tab-list-container {
Expand Down

0 comments on commit 7ffe936

Please sign in to comment.