Skip to content

Commit

Permalink
fix: adjust table even row bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 committed Aug 4, 2021
1 parent 8174d6b commit b8ed200
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/_blocks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ a:hover > .bullet-container .bullet {
transform: scale(1);
}

// hovering block indicator
.block-content-wrapper > div > .block-content {
& > span > span > :first-child {
position: relative;
Expand Down
2 changes: 2 additions & 0 deletions src/_theme_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ html[data-theme="dark"] {
--ls-tertiary-background-color: #38434c;
--ls-quaternary-background-color: #404b55;

--ls-table-tr-even-background-color: var(--ls-secondary-background-color);

--ls-primary-text-color: rgb(235, 235, 235);
--ls-secondary-text-color: rgb(200, 200, 200);

Expand Down
3 changes: 3 additions & 0 deletions src/_theme_light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ html[data-theme="light"] {
--ls-secondary-background-color: #f8f9fa;
--ls-tertiary-background-color: #e9ecef;
--ls-quaternary-background-color: #dee2e6;

--ls-table-tr-even-background-color: var(--ls-secondary-background-color);

--color-level-4: #ced4da;
--color-level-5: #adb5bd;

Expand Down

0 comments on commit b8ed200

Please sign in to comment.