small color fixes

This commit is contained in:
Alireza Ahmadi
2023-12-08 11:19:22 +01:00
parent 046be5dd0f
commit fd82e701b6
2 changed files with 2 additions and 2 deletions

View File

@@ -139,7 +139,7 @@ function userExpiryColor(threshold, client, isDark = false) {
case now < expiry - threshold:
return "#0e49b5";
case now < expiry:
return "#ffa031";
return "#f37b24";
default:
return "#e04141";
}

View File

@@ -19,7 +19,7 @@
:overlay-class-name="themeSwitcher.currentTheme"
ok-text='{{ i18n "reset"}}'
cancel-text='{{ i18n "cancel"}}'>
<a-icon slot="icon" type="question-circle-o" style="color: blue"></a-icon>
<a-icon slot="icon" type="question-circle-o" :style="themeSwitcher.isDarkTheme ? 'color: #3c89e8' : 'color: blue'"></a-icon>
<a-icon style="font-size: 24px; cursor: pointer;" class="normal-icon" type="retweet" v-if="client.email.length > 0"></a-icon>
</a-popconfirm>
</a-tooltip>