Styling improvements for password input fields in backgrid.

pull/3/head
Khushboo Vashi 2016-11-15 09:55:32 +00:00 committed by Dave Page
parent 7ce04bbaea
commit 12d75e0a51
1 changed files with 23 additions and 0 deletions

View File

@ -1427,3 +1427,26 @@ table.backgrid {
.help-block {
white-space: normal;
}
.backgrid td.editor input[type=password] {
display: block;
width: 100%;
height: 100%;
padding: 0 5px;
margin: 0;
background-color: transparent;
border: 0;
outline: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
}
.backgrid td.editor input[type=password]::-ms-clear {
display: none;
}