Merge pull request #684 from influxdata/fix-input-text-selection

Fix Input Text Selection
pull/10616/head
Alex Paxton 2016-12-13 13:22:04 -08:00 committed by GitHub
commit 3c51c6e503
1 changed files with 24 additions and 0 deletions

View File

@ -110,6 +110,15 @@
&:-ms-input-placeholder { color: $g10-wolf; }
&:-moz-placeholder { color: $g10-wolf; }
&::selection {
background-color: $c-laser;
color: $g20-white;
}
&::-moz-selection {
background-color: $c-laser;
color: $g20-white;
}
&:hover {
border-color: $g6-smoke !important;
}
@ -134,6 +143,21 @@
.form-group-submit {
margin-top: 30px;
}
textarea {
&::-webkit-input-placeholder { color: $g10-wolf; }
&::-moz-placeholder { color: $g10-wolf; }
&:-ms-input-placeholder { color: $g10-wolf; }
&:-moz-placeholder { color: $g10-wolf; }
&::selection {
background-color: $c-laser;
color: $g20-white;
}
&::-moz-selection {
background-color: $c-laser;
color: $g20-white;
}
}