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

62 lines
860 B
SCSS
Raw Normal View History

2015-10-19 09:19:45 +00:00
.table-holder {
margin: 0;
2015-10-19 09:19:45 +00:00
}
table {
&.table {
margin-bottom: $gl-padding;
.dropdown-menu a {
text-decoration: none;
}
.success,
.warning,
.danger,
.info {
2016-11-30 13:25:25 +00:00
color: $white-light;
a:not(.btn) {
text-decoration: underline;
2016-11-30 13:25:25 +00:00
color: $white-light;
}
}
tr {
td,
th {
2015-10-19 09:19:45 +00:00
padding: 10px $gl-padding;
line-height: 20px;
vertical-align: middle;
}
2015-10-19 09:19:45 +00:00
th {
2016-12-12 22:26:21 +00:00
background-color: $gray-light;
font-weight: $gl-font-weight-normal;
2017-11-02 23:59:51 +00:00
border-bottom: 0;
2016-12-05 15:59:30 +00:00
&.wide {
width: 55%;
}
}
2015-10-19 09:19:45 +00:00
td {
2016-12-12 22:26:21 +00:00
border-color: $white-normal;
}
}
}
}
2016-12-05 15:59:30 +00:00
.responsive-table {
@media (max-width: $screen-sm-max) {
th {
width: 100%;
}
td {
width: 100%;
float: left;
}
}
}