style: optimize table styles in dark mode

This commit is contained in:
开源海哥 2023-12-07 14:57:36 +08:00
parent f54152ad5b
commit 2ea5f12c7b
2 changed files with 25 additions and 14 deletions

View File

@ -117,7 +117,7 @@
td,
th {
border: 2px solid #ced4da;
border: 2px solid var(--aie-content-table-border-color);
box-sizing: border-box;
min-width: 1em;
padding: 3px 5px;
@ -130,13 +130,13 @@
}
th {
background-color: #f1f3f5;
background-color: var(--aie-content-table-th-bg-color);
font-weight: bold;
text-align: left;
}
.selectedCell:after {
background: rgba(200, 200, 255, 0.4);
background: var(--aie-content-table-selected-bg-color);
content: "";
left: 0;
right: 0;
@ -148,13 +148,13 @@
}
.column-resize-handle {
background-color: #adf;
background-color: var(--aie-content-table-handler-color);
bottom: -2px;
position: absolute;
right: -2px;
pointer-events: none;
top: 0;
width: 4px;
width: 3px;
}
p {
@ -174,10 +174,10 @@
text-align: center;
}
span[data-type="mention"]{
border: 1px solid #cccccc;
border-radius: 5px;
padding: 0 3px;
span[data-type="mention"] {
border: 1px solid #cccccc;
border-radius: 5px;
padding: 0 3px;
}
p.is-editor-empty:first-child::before {
@ -188,20 +188,23 @@
pointer-events: none;
}
div{
&.container-wrapper{
div {
&.container-wrapper {
margin: 1rem 0;
padding: 0 1rem;
border: 1px solid var(--aie-container-border);
border-radius: 3px;
}
&.info{
&.info {
background: var(--aie-content-container-info-color);
}
&.warning{
&.warning {
background: var(--aie-content-container-warning-color);
}
&.danger{
&.danger {
background: var(--aie-content-container-danger-color);;
}
}

View File

@ -32,6 +32,10 @@
--aie-content-container-info-color: #eff1f3;
--aie-content-container-warning-color: #fcf5e4;
--aie-content-container-danger-color: #ffe7ea;
--aie-content-table-th-bg-color: #efefef;
--aie-content-table-selected-bg-color: rgba(200,200,255,0.3);
--aie-content-table-border-color: #ced4da;
--aie-content-table-handler-color: #adf;
}
@ -68,4 +72,8 @@
--aie-content-container-info-color: #2a2c30;
--aie-content-container-warning-color: #40361d;
--aie-content-container-danger-color: #46222a;
--aie-content-table-th-bg-color: #2c2c2c;
--aie-content-table-selected-bg-color: rgba(200,200,255,0.2);
--aie-content-table-border-color: #353535;
--aie-content-table-handler-color: #566a77;
}