feature(selection): prevent selection of non-text elements with CSS

release-0.4
Rob Szumski 2013-10-15 22:01:45 -07:00 committed by Brandon Philips
parent 98d1209ca2
commit 59b2eb4618
1 changed files with 12 additions and 0 deletions

View File

@ -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 {