Fix label color issue (#14387)

Signed-off-by: AllForNothing <sshijun@vmware.com>
This commit is contained in:
Will Sun 2021-03-08 16:10:19 +08:00 committed by GitHub
parent 4c47b1777e
commit f0dd9e5aeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 2 deletions

View File

@ -21,7 +21,7 @@
[class.borderSty]="i.color == '#FFFFFF'" [ngStyle]="{'background-color': i.color, 'color': i.textColor }">Aa</label>
</clr-dropdown-menu>
</clr-dropdown>
<input clrInput type="text" id="color" size="8" name="color" disabled [(ngModel)]="labelModel.color" #color="ngModel">
<input class="label-color-input" clrInput type="text" id="color" size="8" name="color" disabled [(ngModel)]="labelModel.color" #color="ngModel">
</label>
<label>
<label for="description">{{'LABEL.DESCRIPTION' | translate}}</label>

View File

@ -247,3 +247,7 @@ artifact-list-tab {
.nav-divider {
background-color: $nav-divider-bg-color;
}
.label-color-input {
color: $label-color-input !important;
}

View File

@ -39,5 +39,5 @@ $command-input-color: #eaedf0;
$command-input-bg-color: #2e4757;
$label-hover-bg-color: #28404d;
$nav-divider-bg-color: #fafafa;
$label-color-input: #ddd;
@import "./common.scss";

View File

@ -41,4 +41,5 @@ $command-input-color: none;
$command-input-bg-color: #ededed;
$label-hover-bg-color: #eee;
$nav-divider-bg-color: #000;
$label-color-input: #5d5d5d;
@import "./common.scss";