gitlab-org--gitlab-foss/app/assets/stylesheets/framework/tables.scss

45 lines
639 B
SCSS
Raw Normal View History

2015-10-19 05:19:45 -04:00
.table-holder {
margin: 0;
2015-10-19 05:19:45 -04:00
}
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 {
2015-10-19 05:19:45 -04:00
padding: 10px $gl-padding;
line-height: 20px;
vertical-align: middle;
}
2015-10-19 05:19:45 -04:00
th {
background-color: $background-color;
font-weight: normal;
border-bottom: none;
}
2015-10-19 05:19:45 -04:00
td {
2016-01-25 05:42:47 -05:00
border-color: $table-border-color;
}
}
}
}