Skip to content

Commit

Permalink
Fix CSS errors
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
  • Loading branch information
MauricioFauth committed Dec 30, 2020
1 parent 73f85c6 commit 75486a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
10 changes: 5 additions & 5 deletions themes/bootstrap/scss/_common.scss
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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");
}
}

Expand Down
6 changes: 0 additions & 6 deletions themes/bootstrap/scss/_icons.scss
Expand Up @@ -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');
}
Expand Down
2 changes: 1 addition & 1 deletion themes/pmahomme/scss/_card.scss
Expand Up @@ -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;
}

Expand Down

0 comments on commit 75486a6

Please sign in to comment.