Skip to content

Commit 35ccf25

Browse files
authored
fix(table): replace leftover global color token (#2415)
Replace leftover token values referencing a --spectrum-global token with the new token value.
1 parent 14d404b commit 35ccf25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/table/index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ governing permissions and limitations under the License.
802802
/********* SCROLLABLE *********/
803803
/* Wrapper that allows a scrollable body and sticky column header. */
804804
.spectrum-Table-scroller {
805-
--spectrum-table-header-background-color: var(--mod-table-header-background-color-scrollable, var(--spectrum-background-layer-1-color, var(--spectrum-global-color-gray-100)));
805+
--spectrum-table-header-background-color: var(--mod-table-header-background-color-scrollable, var(--spectrum-background-layer-1-color, var(--spectrum-gray-100)));
806806

807807
box-sizing: border-box;
808808
display: inline-block;
@@ -818,7 +818,7 @@ governing permissions and limitations under the License.
818818
var(--highcontrast-table-border-color, var(--mod-table-border-color, var(--spectrum-table-border-color)));
819819

820820
&.spectrum-Table--quiet {
821-
--mod-table-header-background-color--quiet: var(--mod-table-header-background-color-scrollable, var(--spectrum-background-layer-1-color, var(--spectrum-global-color-gray-100)));
821+
--mod-table-header-background-color--quiet: var(--mod-table-header-background-color-scrollable, var(--spectrum-background-layer-1-color, var(--spectrum-gray-100)));
822822
border-block-start: none;
823823
}
824824

0 commit comments

Comments
 (0)