diff options
Diffstat (limited to 'less')
| -rw-r--r-- | less/alerts.less | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/less/alerts.less b/less/alerts.less index 04b3f46b4..7f627fadf 100644 --- a/less/alerts.less +++ b/less/alerts.less @@ -24,6 +24,12 @@ hr { border-top-color: darken(@state-warning-border, 5%); } + // Inherit color for immediate links and bolden them some + > a, + > p > a { + font-weight: 500; + color: darken(@state-warning-text, 10%); + } } // Adjust close link position @@ -45,6 +51,10 @@ hr { border-top-color: darken(@state-success-border, 5%); } + > a, + > p > a { + color: darken(@state-success-text, 10%); + } } .alert-danger, .alert-error { @@ -54,6 +64,10 @@ hr { border-top-color: darken(@state-error-border, 5%); } + > a, + > p > a { + color: darken(@state-error-text, 10%); + } } .alert-info { background-color: @state-info-background; @@ -62,6 +76,10 @@ hr { border-top-color: darken(@state-info-border, 5%); } + > a, + > p > a { + color: darken(@state-info-text, 10%); + } } // Block alerts |
