mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
feature(selection): prevent selection of non-text elements with CSS
This commit is contained in:
parent
36ae9e9437
commit
45b0b35a0f
@ -11,6 +11,10 @@ body {
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
position: relative;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
|
||||
a {
|
||||
@ -99,6 +103,10 @@ body {
|
||||
.etcd-popover-error .etcd-popover-content {
|
||||
color: #FF3C43;
|
||||
font-weight: bold;
|
||||
user-select: text;
|
||||
-webkit-user-select: text;
|
||||
-moz-user-select: text;
|
||||
-ms-user-select: text;
|
||||
}
|
||||
|
||||
.etcd-popover-notch {
|
||||
@ -194,6 +202,10 @@ body {
|
||||
padding-bottom: 6px;
|
||||
padding-left: 0px;
|
||||
vertical-align: text-top;
|
||||
user-select: text;
|
||||
-webkit-user-select: text;
|
||||
-moz-user-select: text;
|
||||
-ms-user-select: text;
|
||||
}
|
||||
|
||||
.etcd-body table .etcd-ttl-header {
|
||||
|
Loading…
x
Reference in New Issue
Block a user