Full opacity option for .small-label

This commit is contained in:
Adina Țeudan 2023-03-22 12:37:49 +02:00
parent 03421b43d9
commit 9eecf327c2
3 changed files with 5 additions and 6 deletions

View File

@ -97,7 +97,10 @@ pre {
font-size: 11px;
line-height: 14px;
font-weight: initial;
@extend .text-muted;
&:not(.full-opacity) {
@extend .text-muted;
}
}
.link-action {

View File

@ -1,6 +1,6 @@
<div *ngIf="helpModeService.isHelpModeActive$ | async">
<div class="help-mode-border"></div>
<div class="bottom small-label">
<div class="bottom small-label full-opacity">
<strong>{{ 'help-mode.bottom-text' | translate }}</strong>
<a (click)="helpModeService.openHelpModeDialog()" *ngIf="(helpModeService.helpModeDialogIsOpened$ | async) === false">
{{ 'help-mode.instructions' | translate }}

View File

@ -15,10 +15,6 @@
justify-content: center;
}
.small-label {
opacity: 1;
}
.bottom {
position: fixed;
height: 30px;