Add new styles for admin tables

This commit is contained in:
decabeza
2020-03-16 12:54:00 +01:00
committed by Javi Martín
parent a45ab81885
commit 428c1695f2

View File

@@ -17,10 +17,15 @@
// ----------------- // -----------------
$admin-color: #245b80; $admin-color: #245b80;
$admin-text: #434d54;
$sidebar: #245b80; $sidebar: #245b80;
$sidebar-hover: #25597c; $sidebar-hover: #25597c;
$sidebar-active: #f4fcd0; $sidebar-active: #f4fcd0;
$table-border: 2px solid #d3d9dd;
$table-header: #ecf1f6;
.admin { .admin {
@include admin-layout; @include admin-layout;
@@ -199,27 +204,31 @@ $sidebar-active: #f4fcd0;
} }
} }
tr {
background: #fff;
border: 1px solid $border;
&:hover {
background: #f3f6f7;
}
}
table { table {
thead { thead {
color: #fff;
&,
tr {
border: 0;
}
th:first-of-type {
border-top-left-radius: rem-calc(8);
}
th:last-of-type {
border-top-right-radius: rem-calc(8);
}
} }
th { th {
background: $brand; background: $table-header;
color: #fff; color: $admin-text;
padding: $line-height / 2;
label { label {
color: #fff; color: $white;
} }
a { a {
@@ -228,6 +237,14 @@ $sidebar-active: #f4fcd0;
} }
} }
tr {
border: $table-border;
&:hover {
background: #f3f6f7;
}
}
.break { .break {
word-break: break-word; word-break: break-word;
} }