From 75486a6a62721e0e01e663d75133bb59f5f7e508 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Wed, 30 Dec 2020 15:27:42 -0300 Subject: [PATCH] Fix CSS errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MaurĂ­cio Meneghini Fauth --- themes/bootstrap/scss/_common.scss | 10 +++++----- themes/bootstrap/scss/_icons.scss | 6 ------ themes/pmahomme/scss/_card.scss | 2 +- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/themes/bootstrap/scss/_common.scss b/themes/bootstrap/scss/_common.scss index edff2cb4b7..718706a1e2 100644 --- a/themes/bootstrap/scss/_common.scss +++ b/themes/bootstrap/scss/_common.scss @@ -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"); } } diff --git a/themes/bootstrap/scss/_icons.scss b/themes/bootstrap/scss/_icons.scss index ae9933633d..800e30db8d 100644 --- a/themes/bootstrap/scss/_icons.scss +++ b/themes/bootstrap/scss/_icons.scss @@ -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'); } diff --git a/themes/pmahomme/scss/_card.scss b/themes/pmahomme/scss/_card.scss index a23c12c5a8..e71d96cd22 100644 --- a/themes/pmahomme/scss/_card.scss +++ b/themes/pmahomme/scss/_card.scss @@ -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; }