gitlab-org--gitlab-foss/app/assets/stylesheets/framework/tables.scss
Dmitriy Zaporozhets 606e09c141
Fix table borders
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-05-02 19:52:46 +02:00

43 lines
633 B
SCSS

.table-holder {
margin: 0;
}
table {
&.table {
margin-bottom: $gl-padding;
.dropdown-menu a {
text-decoration: none;
}
.success,
.warning,
.danger,
.info {
color: #fff;
a:not(.btn) {
text-decoration: underline;
color: #fff;
}
}
tr {
td, th {
padding: 10px $gl-padding;
line-height: 20px;
vertical-align: middle;
}
th {
background-color: $background-color;
font-weight: normal;
border-bottom: none;
}
td {
border-color: $table-border-color;
}
}
}
}