ui: datastore: use simple V. for verify action button
Choosing a good icon is hard here, while the magnifying glass is somewhat relatable, it reminds to much of a "Search" function, which can be quite confusing here. So use a simple "V.", even if it's probably also not to ideal.. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
b4b14dc16e
commit
db67e4fe06
|
@ -520,7 +520,7 @@ Ext.define('PBS.DataStoreContent', {
|
|||
{
|
||||
handler: 'onVerify',
|
||||
tooltip: gettext('Verify'),
|
||||
getClass: (v, m, rec) => rec.data.leaf ? 'pmx-hidden' : 'fa fa-search',
|
||||
getClass: (v, m, rec) => rec.data.leaf ? 'pmx-hidden' : 'pve-icon-verify-lettering',
|
||||
isDisabled: (v, r, c, i, rec) => !!rec.data.leaf,
|
||||
},
|
||||
{
|
||||
|
|
|
@ -224,3 +224,9 @@ p.logs {
|
|||
.x-action-col-icon.critical:before {
|
||||
color: #FF6C59;
|
||||
}
|
||||
|
||||
.pve-icon-verify-lettering:after {
|
||||
color: #464d4d;
|
||||
font-weight: bold;
|
||||
content: "V.";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue