Disable text selection on tab bar and block headers (#38)

This commit is contained in:
Evan Simkowitz 2024-06-11 14:33:24 -07:00 committed by GitHub
parent 4293c749c4
commit 525f20ba81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
background-color: var(--panel-bg-color); background-color: var(--panel-bg-color);
user-select: none;
.block-header-text { .block-header-text {
padding: 0 5px; padding: 0 5px;

View File

@ -46,6 +46,7 @@
height: 32px; height: 32px;
border-bottom: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
flex-shrink: 0; flex-shrink: 0;
user-select: none;
.tab { .tab {
display: flex; display: flex;