debian-mirror-gitlab/app/assets/stylesheets/framework/tables.scss

45 lines
703 B
SCSS
Raw Normal View History

2015-11-26 14:37:03 +05:30
.table-holder {
margin: -$gl-padding;
margin-top: 0;
margin-bottom: 0;
}
2015-04-26 12:48:37 +05:30
table {
&.table {
2015-10-24 18:46:33 +05:30
.dropdown-menu a {
text-decoration: none;
}
.success,
.warning,
.danger,
.info {
color: #fff;
a:not(.btn) {
text-decoration: underline;
color: #fff;
}
}
2015-04-26 12:48:37 +05:30
tr {
td, th {
2015-11-26 14:37:03 +05:30
padding: 10px $gl-padding;
2015-04-26 12:48:37 +05:30
line-height: 20px;
vertical-align: middle;
}
2015-11-26 14:37:03 +05:30
2015-04-26 12:48:37 +05:30
th {
font-weight: normal;
font-size: 15px;
border-bottom: 1px solid $border-color !important;
}
2015-11-26 14:37:03 +05:30
2015-04-26 12:48:37 +05:30
td {
2015-10-24 18:46:33 +05:30
border-color: $table-border-color !important;
2015-04-26 12:48:37 +05:30
border-bottom: 1px solid;
}
}
}
}