From 69b0566a225a569c0e580c6c9c1ba3068b2db118 Mon Sep 17 00:00:00 2001 From: Hina Khadim Date: Fri, 6 Dec 2024 21:12:35 +0500 Subject: [PATCH] fix: add #767676 to grey color for improving readability --- .../sass/partials/lms/theme/_extras.scss | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/tutorindigo/templates/indigo/lms/static/sass/partials/lms/theme/_extras.scss b/tutorindigo/templates/indigo/lms/static/sass/partials/lms/theme/_extras.scss index 8bf9f7f93..09ac06e82 100644 --- a/tutorindigo/templates/indigo/lms/static/sass/partials/lms/theme/_extras.scss +++ b/tutorindigo/templates/indigo/lms/static/sass/partials/lms/theme/_extras.scss @@ -1336,6 +1336,7 @@ body.indigo-dark-theme { } .page-content-nav .nav-item { color: $text-color-d; + &.is-active{ border-color: $primary-d; } } .page-content-main { span.listing-count, span.listing-sort .field-label { @@ -1365,6 +1366,53 @@ body.indigo-dark-theme { color: $text-color-d; } } + + .listing-tools{ color: $text-color-d; } + .u-field-message { + .u-field-message-help, .u-field-message-notification{ + color: grey; + } + } + .team-profile{ + .page-content-secondary{ + color: grey; + } + } + + .card { + .card-type, .card-description{ + color: grey; + } + + .wrapper-card-meta{ + background: $primary-light-d; + .meta-detail{ color: $text-color-primary; } + } + + .card-actions .action-view{ + border-color: $primary-d; + color: $primary-d; + &:hover{ + background-color: $primary-d; + color: $primary-light-d; + } + } + } + + .btn-secondary,.btn-link, + .edit-members .action-remove-member { + color: $primary-d; + } + + .action-primary{ + background: $primary-d; + color: $primary-light-d; + } + + .teams-content #teams-message.wrapper-msg{ + background: $primary-light-d; + div.msg{ color: $text-color-d; } + } } } @import '../../../extra/footer';