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

166 lines
2.7 KiB
SCSS
Raw Normal View History

2017-06-06 12:58:29 +00:00
@mixin flex-max-width($max) {
flex: 0 0 #{$max + '%'};
max-width: #{$max + '%'};
}
.gl-responsive-table-row-layout {
width: 100%;
@media (min-width: $screen-md-min) {
display: flex;
align-items: center;
& > &:not(:first-child) {
margin-top: $gl-padding;
}
}
}
2017-06-06 12:58:29 +00:00
.gl-responsive-table-row {
@extend .gl-responsive-table-row-layout;
2017-06-06 12:58:29 +00:00
margin-top: 10px;
border: 1px solid $border-color;
@media (min-width: $screen-md-min) {
margin: 0;
padding: $gl-padding 0;
2017-11-02 23:59:51 +00:00
border: 0;
&:not(:last-child) {
border-bottom: 1px solid $white-normal;
}
2017-06-06 12:58:29 +00:00
}
}
.gl-responsive-table-row-col-span {
flex-wrap: wrap;
}
2017-06-06 12:58:29 +00:00
.table-section {
white-space: nowrap;
2017-06-06 12:58:29 +00:00
$section-widths: 10 15 20 25 30 40 100;
@each $width in $section-widths {
&.section-#{$width} {
flex: 0 0 #{$width + '%'};
2017-06-06 12:58:29 +00:00
@media (min-width: $screen-md-min) {
max-width: #{$width + '%'};
2017-06-06 12:58:29 +00:00
}
}
}
2017-06-06 12:58:29 +00:00
@media (max-width: $screen-sm-max) {
display: flex;
align-self: stretch;
padding: 10px;
align-items: center;
min-height: 62px;
2017-06-06 12:58:29 +00:00
&:not(:first-child) {
border-top: 1px solid $white-normal;
2017-06-06 12:58:29 +00:00
}
}
&.section-wrap {
white-space: normal;
@media (max-width: $screen-sm-max) {
flex-wrap: wrap;
}
}
&.section-align-top {
align-self: flex-start;
}
}
.table-button-footer {
@media (min-width: $screen-md-min) {
text-align: right;
}
@media (max-width: $screen-sm-max) {
display: block;
align-self: stretch;
min-height: 0;
background-color: $gray-normal;
border-top: 1px solid $border-color;
.table-action-buttons {
display: flex;
.btn {
border-radius: 3px;
}
> .btn-group,
> .external-url,
> .btn {
flex: 1 1 28px;
&:not(:first-child) {
margin-left: 5px;
}
&:not(:last-child) {
margin-right: 5px;
}
}
.dropdown-new {
width: 100%;
}
.dropdown-menu {
min-width: initial;
}
}
2017-06-06 12:58:29 +00:00
}
}
.table-row-header {
font-size: 13px;
@media (max-width: $screen-sm-max) {
display: none;
}
}
.table-mobile-header {
2017-07-12 04:59:39 +00:00
@include flex-max-width(40);
2017-06-06 12:58:29 +00:00
color: $gl-text-color-secondary;
text-align: left;
2017-06-06 12:58:29 +00:00
@media (min-width: $screen-md-min) {
display: none;
}
}
.table-mobile-content {
@media (max-width: $screen-sm-max) {
@include flex-max-width(60);
text-align: right;
}
}
.flex-truncate-parent {
display: flex;
}
.flex-truncate-child {
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@media (min-width: $screen-md-min) {
flex: 0 0 90%;
}
2017-06-08 01:15:40 +00:00
.avatar {
float: none;
margin-right: 4px;
}
2017-06-06 12:58:29 +00:00
}