2015-10-19 05:19:45 -04:00
|
|
|
.table-holder {
|
2016-01-13 08:37:25 -05:00
|
|
|
margin: 0;
|
2015-10-19 05:19:45 -04:00
|
|
|
}
|
|
|
|
|
2014-12-25 11:35:04 -05:00
|
|
|
table {
|
|
|
|
&.table {
|
2015-12-02 08:46:15 -05:00
|
|
|
margin-bottom: $gl-padding;
|
2016-01-13 08:37:25 -05:00
|
|
|
|
2015-10-13 04:55:06 -04:00
|
|
|
.dropdown-menu a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.success,
|
|
|
|
.warning,
|
|
|
|
.danger,
|
|
|
|
.info {
|
2016-11-30 08:25:25 -05:00
|
|
|
color: $white-light;
|
2015-10-13 04:55:06 -04:00
|
|
|
|
|
|
|
a:not(.btn) {
|
|
|
|
text-decoration: underline;
|
2016-11-30 08:25:25 -05:00
|
|
|
color: $white-light;
|
2015-10-13 04:55:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-25 11:35:04 -05:00
|
|
|
tr {
|
2016-10-24 16:22:06 -04:00
|
|
|
td,
|
|
|
|
th {
|
2015-10-19 05:19:45 -04:00
|
|
|
padding: 10px $gl-padding;
|
2014-12-25 11:35:04 -05:00
|
|
|
line-height: 20px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2015-10-19 05:19:45 -04:00
|
|
|
|
2014-12-25 11:35:04 -05:00
|
|
|
th {
|
2016-12-12 17:26:21 -05:00
|
|
|
background-color: $gray-light;
|
2017-08-24 10:13:24 -04:00
|
|
|
font-weight: $gl-font-weight-normal;
|
2017-11-02 19:59:51 -04:00
|
|
|
border-bottom: 0;
|
2016-12-05 10:59:30 -05:00
|
|
|
|
|
|
|
&.wide {
|
|
|
|
width: 55%;
|
|
|
|
}
|
2014-12-25 11:35:04 -05:00
|
|
|
}
|
2015-10-19 05:19:45 -04:00
|
|
|
|
2014-12-25 11:35:04 -05:00
|
|
|
td {
|
2016-12-12 17:26:21 -05:00
|
|
|
border-color: $white-normal;
|
2014-12-25 11:35:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-05 10:59:30 -05:00
|
|
|
|
|
|
|
.responsive-table {
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-down(sm) {
|
2016-12-05 10:59:30 -05:00
|
|
|
th {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
width: 100%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|