mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-03-11 13:23:06 +01:00
Add webkit-prefixed user-select attributes (#41)
It turns out that WebKit uses its own prefix for user-select so I'm adding this everywhere we currently define user-select, as well as a few new places
This commit is contained in:
parent
9809414eb0
commit
8b61c4d62b
@ -31,13 +31,12 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
background-color: var(--panel-bg-color);
|
background-color: var(--panel-bg-color);
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
.block-header-text {
|
.block-header-text {
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
user-select: none;
|
|
||||||
cursor: default;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.close-button {
|
.close-button {
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
cursor: col-resize;
|
cursor: col-resize;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
touch-action: none;
|
touch-action: none;
|
||||||
width: 2px;
|
width: 2px;
|
||||||
background: linear-gradient(var(--border-color), var(--border-color)) no-repeat center/2px 100%;
|
background: linear-gradient(var(--border-color), var(--border-color)) no-repeat center/2px 100%;
|
||||||
|
@ -46,8 +46,6 @@
|
|||||||
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;
|
|
||||||
cursor: default;
|
|
||||||
|
|
||||||
.tab {
|
.tab {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -57,6 +55,8 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-right: 1px solid var(--border-color);
|
border-right: 1px solid var(--border-color);
|
||||||
|
user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
@ -51,6 +51,8 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10000px;
|
top: 10000px;
|
||||||
white-space: nowrap !important;
|
white-space: nowrap !important;
|
||||||
|
user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user