Greg Sheremeta has uploaded a new change for review. Change subject: webadmin, userportal: fixed spacing for grids ......................................................................
webadmin, userportal: fixed spacing for grids CSS for first columns in all grids was broken such that left padding wasn't applied. Fixed. Also added a bit more padding between cells to prevent text in adjacent cells from being 0 pixels apart. Also noticed that icons in grids (comment icon, VM circle icon, etc.) were not centered. Fixed. Change-Id: Id5a759b8208b17bb9378a8b3f3362c20ca02add9 Bug-Url: https://bugzilla.redhat.com/1131975 Bug-Url: https://bugzilla.redhat.com/1127674 Signed-off-by: Greg Sheremeta <[email protected]> --- M frontend/webadmin/modules/gwt-common/src/main/resources/org/ovirt/engine/ui/common/css/TabCellTable.css 1 file changed, 13 insertions(+), 9 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/97/33297/1 diff --git a/frontend/webadmin/modules/gwt-common/src/main/resources/org/ovirt/engine/ui/common/css/TabCellTable.css b/frontend/webadmin/modules/gwt-common/src/main/resources/org/ovirt/engine/ui/common/css/TabCellTable.css index d1a506d..084f8e0 100644 --- a/frontend/webadmin/modules/gwt-common/src/main/resources/org/ovirt/engine/ui/common/css/TabCellTable.css +++ b/frontend/webadmin/modules/gwt-common/src/main/resources/org/ovirt/engine/ui/common/css/TabCellTable.css @@ -1,13 +1,6 @@ .cellTableWidget { } -.cellTableFirstColumn { - padding: 2px 15px; -} - -.cellTableLastColumn { -} - .cellTableFooter { } @@ -26,7 +19,7 @@ } .cellTableCell { - padding: 0px 3px 0px 0px; + padding: 0px 8px 0px 2px; height: 26px !important; border-top: 0px; border-bottom: 1px solid #EDEEF0; @@ -57,4 +50,15 @@ @sprite .cellTableLoading { gwt-image: 'cellTableLoading'; margin: 3px; -} \ No newline at end of file +} + +.cellTableFirstColumn { + padding-left: 3px; +} + +.cellTableLastColumn { +} + +.cellTableFirstColumnHeader { + padding-left: 4px; +} -- To view, visit http://gerrit.ovirt.org/33297 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id5a759b8208b17bb9378a8b3f3362c20ca02add9 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.5 Gerrit-Owner: Greg Sheremeta <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
