Fix CSS errors

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2020-12-30 15:27:42 -03:00
parent 73f85c6304
commit 75486a6a62
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8
3 changed files with 6 additions and 12 deletions

View File

@ -68,7 +68,7 @@ textarea {
border: #aaa solid 1px;
padding: 0.5em;
background: #eee;
text-shadow: 1px 1px 2px #fff inset;
text-shadow: 1px 1px 2px #fff;
box-shadow: 1px 1px 2px #fff inset;
}
@ -3040,21 +3040,21 @@ th {
}
&.headerSortUp .sorticon {
background-image: url("../img/s_desc.png");
background-image: url("../img/sort-desc.svg");
}
&.headerSortDown {
&:hover .sorticon {
background-image: url("../img/s_desc.png");
background-image: url("../img/sort-desc.svg");
}
.sorticon {
background-image: url("../img/s_asc.png");
background-image: url("../img/sort-asc.svg");
}
}
&.headerSortUp:hover .sorticon {
background-image: url("../img/s_asc.png");
background-image: url("../img/sort-asc.svg");
}
}

View File

@ -134,12 +134,6 @@
background-image: url('../img/index-plus.svg');
}
.ic_b_info {
background-image: url('../img/b_info.png');
width: 11px;
height: 11px;
}
.ic_b_inline_edit {
background-image: url('../img/b_inline_edit.png');
}

View File

@ -9,7 +9,7 @@
.card,
.card-footer {
text-shadow: 1px 1px 2px #fff inset;
text-shadow: 1px 1px 2px #fff;
box-shadow: 1px 1px 2px #fff inset;
}