SPR-904: forms - cursor for "search button" in table search

This commit is contained in:
Silke Pisulla 2017-03-20 13:16:59 +01:00
commit 5b65a7c080

View file

@ -10,9 +10,16 @@
padding-bottom: @link-height; padding-bottom: @link-height;
margin-bottom: @grid; margin-bottom: @grid;
table th input:focus { // search button in table (f.i. "All products")
width: 100%; table th input {
box-sizing: border-box; &:not(:focus) {
cursor: pointer;
}
&:focus {
width: 100%;
box-sizing: border-box;
}
} }
.table { .table {
@ -31,6 +38,7 @@
} }
} }
} }
#plugin__struct_output{ #plugin__struct_output{
margin-right: 0; margin-right: 0;
} }
@ -41,6 +49,7 @@
margin-top: 1.5rem; margin-top: 1.5rem;
} }
} }
textarea + .struct_entry_form { textarea + .struct_entry_form {
margin-top: -.5rem; margin-top: -.5rem;
} }