make some elements non-selectable

This commit is contained in:
Kiril Videlov 2024-01-22 16:16:17 +01:00 committed by Kiril Videlov
parent e2d1777a19
commit 8ac1367e78
6 changed files with 6 additions and 0 deletions

View File

@ -61,6 +61,7 @@
.viewport {
height: 100%;
width: 100%;
user-select: none;
}
.contents {
display: block;

View File

@ -78,6 +78,7 @@
overflow-x: scroll;
height: 100%;
width: 100%;
user-select: none;
}
.scroll-contents {
display: flex;

View File

@ -206,6 +206,7 @@
align-items: flex-start;
height: 100%;
padding: 0 var(--space-8);
user-select: none;
}
.loading {
display: flex;

View File

@ -278,6 +278,7 @@
.branch-card {
display: flex;
flex-direction: column;
user-select: none;
}
.branch-card__dropzone-wrapper {

View File

@ -271,6 +271,7 @@
border: 1px solid var(--clr-theme-container-outline-light);
overflow-x: auto;
overflow-y: hidden;
user-select: text;
}
.commit-modal__code-wrapper {

View File

@ -296,6 +296,7 @@
border: 1px solid var(--clr-theme-container-outline-light);
overflow-x: hidden;
transition: border-color var(--transition-fast);
user-select: text;
}
.hunk__inner_inner {
/* TODO: Rename this class */