update
This commit is contained in:
3
.obsidian/plugins/ob-table-enhancer/data.json
vendored
Normal file
3
.obsidian/plugins/ob-table-enhancer/data.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"enableFloatingToolBar": true
|
||||
}
|
1778
.obsidian/plugins/ob-table-enhancer/main.js
vendored
Normal file
1778
.obsidian/plugins/ob-table-enhancer/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
.obsidian/plugins/ob-table-enhancer/manifest.json
vendored
Normal file
1
.obsidian/plugins/ob-table-enhancer/manifest.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"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}
|
88
.obsidian/plugins/ob-table-enhancer/styles.css
vendored
Normal file
88
.obsidian/plugins/ob-table-enhancer/styles.css
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
.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;
|
||||
}
|
Reference in New Issue
Block a user