34 lines
776 B
CSS
34 lines
776 B
CSS
/*Style build-in commands*/
|
|
.abutton,
|
|
div.k-grid .k-grid-edit,
|
|
div.k-grid .k-grid-delete,
|
|
div.k-grid .k-grid-cancel,
|
|
div.k-grid .k-grid-update {
|
|
display:inline-block;
|
|
width:16px;
|
|
height:16px;
|
|
text-align:center;
|
|
text-indent:-444px;
|
|
min-width:0;
|
|
border:0;
|
|
}
|
|
/*Style custom buttons*/
|
|
.abutton.delete {
|
|
background: url('/Content/icons/delete.png');
|
|
}
|
|
|
|
.abutton.edit {
|
|
background: url('/Content/icons/edit.gif');
|
|
}
|
|
|
|
.abutton.update {
|
|
background: url('/Content/icons/update.png');
|
|
}
|
|
|
|
.abutton.cancel {
|
|
background: url('/Content/icons/cancel.png');
|
|
}
|
|
|
|
.abutton.create {
|
|
background: url('/Content/icons/add.png');
|
|
} |