mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 04:10:44 -03:30
Merge pull request #93 from jaredevantabor/new-row-styling
changed the styling on the rows
This commit is contained in:
commit
b7ea9edc52
@ -234,7 +234,7 @@ export function JobsListController ($rootScope, $log, $scope, $compile, $routePa
|
||||
page_row = Math.max($('.page-row:eq(0)').outerHeight(), 33);
|
||||
header = Math.max($('#completed_jobs_table thead').height(), 24);
|
||||
height = Math.floor(available_height / 2) - header - page_row - search_row - 30;
|
||||
row_height = (docw < 1350) ? 47 : 27;
|
||||
row_height = (docw < 1350) ? 47 : 44;
|
||||
max_rows = Math.floor(height / row_height);
|
||||
max_rows = (max_rows < 5) ? 5 : max_rows;
|
||||
}
|
||||
|
||||
@ -172,8 +172,7 @@ a:focus {
|
||||
/* List Actions column */
|
||||
.actions {
|
||||
a {
|
||||
font-size: 14px;
|
||||
margin-right: 12px;
|
||||
font-size: 18px;
|
||||
}
|
||||
a:last-child {
|
||||
margin-right: 0;
|
||||
@ -1032,10 +1031,21 @@ input[type="checkbox"].checkbox-no-label {
|
||||
/* Less padding on .table-condensed */
|
||||
.table-condensed>tbody>tr>td,
|
||||
.table-condensed>thead>tr>th {
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding: 0.5em 0.6em;
|
||||
}
|
||||
|
||||
.table > tbody > tr > td{
|
||||
padding: 0.5em 0.6em;
|
||||
&.actions{
|
||||
padding: 0px;
|
||||
> a {
|
||||
padding: 0.5em 0.6em;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Table info rows */
|
||||
|
||||
.loading-info {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user