This commit is contained in:
Oscar Plaisant
2024-03-28 23:40:47 +01:00
parent 32037ae8e7
commit e5ada772ca
3475 changed files with 1433 additions and 69 deletions

View File

@@ -1,3 +0,0 @@
{
"enableFloatingToolBar": true
}

File diff suppressed because it is too large Load Diff

View File

@@ -1 +0,0 @@
{"id":"ob-table-enhancer","name":"Table Enhancer","version":"0.5.10","minAppVersion":"0.15.0","description":"Manipulate markdown tables without touching the source code in Obsidian.","author":"Stardust","authorUrl":"https://obsidian.md","fundingUrl":"https://github.com/Stardusten/ob-table-enhancer","isDesktopOnly":false}

View File

@@ -1,88 +0,0 @@
.ob-table-enhancer-row-bar {
display: flex;
position: absolute;
width: fit-content;
max-width: 3em;
flex-wrap: wrap;
transition: opacity 200ms ease-in-out;
}
.ob-table-enhancer-col-bar {
display: flex;
position: absolute;
height: fit-content;
padding-bottom: 3px;
transition: opacity 200ms ease-in-out;
}
.ob-table-enhancer-row-bar-button {
display: flex;
width: fit-content;
height: fit-content;
padding: 0 2px;
margin: 0;
filter: brightness(0.5);
transition: all 200ms ease-in-out;
}
.ob-table-enhancer-row-bar-button:hover, .ob-table-enhancer-col-bar-button:hover {
filter: brightness(1);
}
.ob-table-enhancer-col-bar-button {
display: flex;
width: fit-content;
height: fit-content;
padding: 5px 2px 0 0;
margin: 0;
filter: brightness(0.5);
transition: all 200ms ease-in-out;
}
div.ob-table-enhancer.button-menu {
display: flex;
flex-wrap: wrap;
max-width: 180px;
}
div.ob-table-enhancer.button-menu > button {
width: 30px;
height: 26px;
padding: 0;
}
.table-generator-container {
display: flex;
flex-flow: row wrap;
max-width: 150px;
align-content: flex-start;
padding-top: 5px;
padding-left: 3px;
}
.table-generator-grid {
width: 15px;
height: 15px;
background-color: var(--interactive-normal);
margin: 3px;
border-radius: 3px;
}
.table-generator-grid.select {
background-color: var(--interactive-accent);
opacity: 1;
}
.table-generator-counter {
display: block;
text-align: center;
}
.table-height-adjust th, .table-height-adjust tr {
/** 防止单元格太窄不方便点击 */
height: 1.5em !important;
}
body {
--layer-tooltip: 2000;
}