add ics export support
This commit is contained in:
@@ -1,6 +1,26 @@
|
||||
html {
|
||||
--bg-color: white;
|
||||
--text-color: black;
|
||||
--table-bg: #f9f9f9;
|
||||
--border-color: #ddd;
|
||||
--header-bg: #e0e0e0;
|
||||
--highlight-color: #ffff99;
|
||||
--worker-bg: #f0f0f0;
|
||||
}
|
||||
|
||||
/* color: red; */
|
||||
html.dark-mode {
|
||||
--bg-color: #121212;
|
||||
--text-color: #e0e0e0;
|
||||
--table-bg: #1e1e1e;
|
||||
--border-color: #333;
|
||||
--header-bg: #2a2a2a;
|
||||
--highlight-color: #333300;
|
||||
--worker-bg: #2a2a2a;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--bg-color);
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
table {
|
||||
@@ -14,7 +34,8 @@ table {
|
||||
position: relative; */
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
|
||||
background-color: var(--table-bg);
|
||||
border: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
#main-table {
|
||||
@@ -72,12 +93,12 @@ th {
|
||||
}
|
||||
|
||||
.table-div tr:hover {
|
||||
background-color: lightblue;
|
||||
background-color: var(--highlight-color);
|
||||
}
|
||||
|
||||
.table-div tr:hover .unavailable {
|
||||
|
||||
background-color: lightgray;
|
||||
background-color: var(--worker-bg);
|
||||
}
|
||||
|
||||
.Sat {
|
||||
|
||||
Reference in New Issue
Block a user