From 258e56c61d22ba4b18b6f4805025dd29f673e8f4 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Mon, 24 Oct 2022 12:06:41 +0300 Subject: [PATCH 1/3] fix --- client/res/templates/email/fields/subject/list-link.tpl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/client/res/templates/email/fields/subject/list-link.tpl b/client/res/templates/email/fields/subject/list-link.tpl index a4a1da126e..df2c573b3d 100644 --- a/client/res/templates/email/fields/subject/list-link.tpl +++ b/client/res/templates/email/fields/subject/list-link.tpl @@ -3,7 +3,10 @@ {{/if}} -{{#unless isRead}}{{/unless}} -{{value}} -{{#unless isRead}}{{/unless}} +{{value}} From 8aae2b18bab633ea82e5448c427286cb2162f5c2 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Mon, 24 Oct 2022 12:06:46 +0300 Subject: [PATCH 2/3] glass fix --- frontend/less/espo/custom.less | 18 +++++++++++------- frontend/less/glass/custom.less | 13 +++++++++++++ 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/frontend/less/espo/custom.less b/frontend/less/espo/custom.less index cb2369d4d1..d61a2f6120 100644 --- a/frontend/less/espo/custom.less +++ b/frontend/less/espo/custom.less @@ -2568,13 +2568,17 @@ table.table td.cell .html-container { padding: 2px 0; } -.list-group-side li.selected a.side-link, -.list-group-side li.selected a:hover.side-link, -.list-group-side li.selected a:active.side-link, -.list-group-side li.selected a:visited.side-link, -.list-group-side li.selected a:focus.side-link { - color: @brand-danger; - font-weight: 600; +.list-group-side li.selected { + a { + &.side-link, + &:hover.side-link, + &:active.side-link, + &:visited.side-link, + &:focus.side-link { + color: var(--brand-danger); + font-weight: 600; + } + } } .email-address-create-dropdown .btn { diff --git a/frontend/less/glass/custom.less b/frontend/less/glass/custom.less index b6d5cfcbe1..a269167f6b 100644 --- a/frontend/less/glass/custom.less +++ b/frontend/less/glass/custom.less @@ -261,3 +261,16 @@ select.form-control > option { background-color: transparent; } } + +.list-group-side li.selected { + a { + &.side-link, + &:hover.side-link, + &:active.side-link, + &:visited.side-link, + &:focus.side-link { + color: var(--state-danger-text); + font-weight: 600; + } + } +} From 5c44a374d59de2161049f992708cb4dc97ffbb0e Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Mon, 24 Oct 2022 12:13:46 +0300 Subject: [PATCH 3/3] glass table text bold 700 --- frontend/less/glass/custom.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/less/glass/custom.less b/frontend/less/glass/custom.less index a269167f6b..97c95d1c40 100644 --- a/frontend/less/glass/custom.less +++ b/frontend/less/glass/custom.less @@ -274,3 +274,9 @@ select.form-control > option { } } } + +.table { + .text-bold { + font-weight: 700; + } +}