Fix table cells spacing

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2022-05-14 15:07:04 -03:00
parent 9f076774e5
commit e54f7697a6
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8
7 changed files with 12 additions and 22 deletions

View File

@ -1011,10 +1011,6 @@ select.invalid_value,
overflow: hidden;
}
#tablestructure tbody label {
margin: 0.3rem 0;
}
#structure-action-links a {
margin-right: 1em;
}

View File

@ -1187,10 +1187,6 @@ input {
overflow: hidden;
}
#tablestructure tbody label {
margin: 0.3rem 0;
}
#structure-action-links a {
margin-right: 1em;
}

View File

@ -183,8 +183,10 @@ $headings-font-weight: normal;
// Tables
$table-cell-padding: 0.6em;
$table-cell-padding-sm: $table-cell-padding;
$table-cell-padding-y: 0.6em;
$table-cell-padding-x: 0.6em;
$table-cell-padding-y-sm: $table-cell-padding-y;
$table-cell-padding-x-sm: $table-cell-padding-x;
$table-bg: $bg-two;
$table-head-bg: #fff;
$table-head-color: $th-color;

View File

@ -1011,10 +1011,6 @@ select.invalid_value,
vertical-align: middle;
}
#tablestructure tbody label {
margin: 0.3rem 0;
}
#structure-action-links a {
margin-right: 1em;
}

View File

@ -82,8 +82,10 @@ $headings-font-weight: bold;
// Tables
$table-cell-padding: 0.1em 0.5em;
$table-cell-padding-sm: $table-cell-padding;
$table-cell-padding-y: 0.1em;
$table-cell-padding-x: 0.5em;
$table-cell-padding-y-sm: $table-cell-padding-y;
$table-cell-padding-x-sm: $table-cell-padding-x;
$table-bg: $bg-one;
$table-striped-order: even;
$table-striped-bg: $bg-two;

View File

@ -1197,10 +1197,6 @@ input#import_merge {
overflow: hidden;
}
#tablestructure tbody label {
margin: 0.3rem 0;
}
#structure-action-links a {
margin-right: 1em;
}

View File

@ -76,8 +76,10 @@ $h3-font-size: 1rem;
// Tables
$table-cell-padding: 0.1em 0.3em;
$table-cell-padding-sm: $table-cell-padding;
$table-cell-padding-y: 0.1em;
$table-cell-padding-x: 0.3em;
$table-cell-padding-y-sm: $table-cell-padding-y;
$table-cell-padding-x-sm: $table-cell-padding-x;
$table-bg: #fff;
$table-head-bg: #fff;
$table-head-color: $th-color;