Initial commit

This commit is contained in:
2025-09-27 16:58:33 -05:00
parent e2a64e0534
commit 30bd6dc740
5 changed files with 2629 additions and 135 deletions

View File

@@ -1,8 +1,14 @@
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
/* Pin button styles */
.tab-pin-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
margin-left: 6px;
opacity: var(--tab-pin-initial-opacity, 0.7);
cursor: pointer;
}
.workspace-tab-header:hover .tab-pin-toggle { opacity: var(--tab-pin-hover-opacity, 1); }
.tab-pin-toggle.is-pinned svg { transform: rotate(-35deg); }
.tab-pin-toggle:focus { outline: 2px solid var(--interactive-accent); outline-offset: 2px; }