No need for style

This commit is contained in:
Jan Kvetina 2022-02-28 20:03:37 +01:00
parent 526f335509
commit d229e81a59
2 changed files with 3 additions and 10 deletions

View File

@ -60,13 +60,6 @@ table.a-GV-table a span.fa:hover {
/* FIX SPACE IN GRID BUTTON WHE NO TEXT IS PRESENT */
span.a-Icon.fa.ICON_ONLY {
margin-right: 0;
}
/* CHECKBOX IN GRID + IN REPORT HEADER */
table.a-GV-table .apex-item-single-checkbox input:checked+.u-checkbox,
table.a-GV-table .apex-item-single-checkbox input:checked+label,

View File

@ -186,9 +186,9 @@ var fix_toolbar = function (region_id) {
for (var i = 0; i < action3.controls.length; i++) {
var button = action3.controls[i];
if (button.action == 'selection-add-row') {
button.icon = 'fa fa-plus ICON_ONLY';
button.iconBeforeLabel = true;
button.label = ' ';
button.icon = 'fa fa-plus';
button.iconOnly = true;
button.label = ' ';
break;
}
}