ui: datastore/content: improve action button layout
Fix font-size to 14px to improve font-awesome rendering, add some slight margin between the buttons so that they are not glued together, add a slight text-shadow on mouse over. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
137a6ebcad
commit
e373dcc564
|
@ -241,3 +241,15 @@ span.snapshot-comment-column {
|
|||
font-weight: bold;
|
||||
content: "V.";
|
||||
}
|
||||
|
||||
.x-action-col-icon {
|
||||
margin: 0 1px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.x-action-col-icon:before, .x-action-col-icon:after {
|
||||
font-size: 14px;
|
||||
}
|
||||
.x-action-col-icon:hover:before, .x-action-col-icon:hover:after {
|
||||
text-shadow: 1px 1px 1px #AAA;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
|
|
@ -595,7 +595,7 @@ Ext.define('PBS.DataStoreContent', {
|
|||
header: gettext('Actions'),
|
||||
xtype: 'actioncolumn',
|
||||
dataIndex: 'text',
|
||||
width: 120,
|
||||
width: 140,
|
||||
items: [
|
||||
{
|
||||
handler: 'onVerify',
|
||||
|
|
Loading…
Reference in New Issue