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

44 lines
633 B
SCSS
Raw Normal View History

2015-11-26 14:37:03 +05:30
.table-holder {
margin: 0;
2015-11-26 14:37:03 +05:30
}
2015-04-26 12:48:37 +05:30
table {
&.table {
2015-12-23 02:04:40 +05:30
margin-bottom: $gl-padding;
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 {
background-color: $background-color;
2015-04-26 12:48:37 +05:30
font-weight: normal;
2016-06-02 11:05:42 +05:30
border-bottom: none;
2015-04-26 12:48:37 +05:30
}
2015-11-26 14:37:03 +05:30
2015-04-26 12:48:37 +05:30
td {
2016-02-05 20:25:01 +05:30
border-color: $table-border-color;
2015-04-26 12:48:37 +05:30
}
}
}
}