new feature: close tabs from list

This commit is contained in:
nick comer
2024-05-05 20:38:01 -04:00
parent d390feeab7
commit adc84cf5db
5 changed files with 482 additions and 375 deletions

View File

@@ -132,20 +132,25 @@ table {
color-scheme: light dark;
}
html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*,
*:before,
*:after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
body {
width: 500px;
color: black;
font-family: system-ui;
font-size: 12px;
background-color: white;
}
.ht-tab:hover {
background-color: #efefef;
}
.ht-tab-location {
color: #e9e9e9;
}
@media (prefers-color-scheme: dark) {
@@ -157,16 +162,4 @@ body {
background-color: #2b2b2b;
color: #f2f2f2;
}
.ht-search-wrapper .ht-search-input {
background-color: #2b2b2b;
}
.ht-tab-location {
color: #e9e9e9;
}
.ht-tab:hover {
background-color: #4e4e4e;
}
}