refs #3302 fixed scss
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Alexandre Riera 2022-12-20 15:29:21 +01:00
parent 27e0c2d0be
commit c99bfef917
2 changed files with 10 additions and 4 deletions

View File

@ -16,7 +16,7 @@
<vn-tr> <vn-tr>
<vn-th field="creationDate">Date</vn-th> <vn-th field="creationDate">Date</vn-th>
<vn-th field="userFk" shrink>User</vn-th> <vn-th field="userFk" shrink>User</vn-th>
<vn-th field="changedModel" ng-if="$ctrl.showModelName">Model</vn-th> <vn-th field="changedModel" ng-if="$ctrl.showModelName" shrink>Model</vn-th>
<vn-th field="action" shrink>Action</vn-th> <vn-th field="action" shrink>Action</vn-th>
<vn-th field="changedModelValue" ng-if="$ctrl.showModelName">Name</vn-th> <vn-th field="changedModelValue" ng-if="$ctrl.showModelName">Name</vn-th>
<vn-th expand>Changes</vn-th> <vn-th expand>Changes</vn-th>
@ -36,10 +36,10 @@
<vn-td ng-if="$ctrl.showModelName"> <vn-td ng-if="$ctrl.showModelName">
{{::log.changedModel}} {{::log.changedModel}}
</vn-td> </vn-td>
<vn-td translate> <vn-td shrink translate>
{{::$ctrl.actionsText[log.action]}} {{::$ctrl.actionsText[log.action]}}
</vn-td> </vn-td>
<vn-td expand ng-if="$ctrl.showModelName"> <vn-td ng-if="$ctrl.showModelName">
{{::log.changedModelValue}} {{::log.changedModelValue}}
</vn-td> </vn-td>
<vn-td expand> <vn-td expand>

View File

@ -31,12 +31,18 @@ vn-log {
& > td { & > td {
padding: 2px; padding: 2px;
width: 33%;
} }
& > td.field, & > td.field,
& > th.field { & > th.field {
width: 20%;
color: gray; color: gray;
} }
& > td.before,
& > th.before,
& > td.after,
& > th.after {
width: 40%;
}
} }
} }
} }