Skip to content

Commit

Permalink
feat: ✨ table & bullet-threading
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenull committed Jan 27, 2022
1 parent 9e07afe commit 48751fa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/components/table.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ table th, table td {
padding: 0 10px;
}
.dark-theme {
& thead th {
td, tr {
border-bottom: 1px solid #5c5b5c;
}
thead th {
background-color: #383838;
}
& table th, & table td {
border-color: #282b2f;
table th, & table td {
border-color: #5c5b5c;
}
}
/* table */
Expand Down
5 changes: 5 additions & 0 deletions src/mix.less
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,9 @@ mark {
#date-time-picker .datepicker td.available:hover, #date-time-picker .datepicker th.available:hover {
background-color: var(--woz-button-bg-color);
color: #fff;
}

// bullet threading
.ls-block > div > div.items-center::before {
z-index: 2;
}
1 change: 1 addition & 0 deletions src/var/dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--ls-secondary-background-color: #2e3033;
--ls-tertiary-background-color: var(--ls-primary-background-color);
--ls-quaternary-background-color: #9b6802;
--ls-page-properties-background-color: var(--ls-secondary-background-color);

--ls-primary-text-color: @gray-300;
--ls-secondary-text-color: @gray-400;
Expand Down

0 comments on commit 48751fa

Please sign in to comment.