Merge pull request #517 from taigaio/issue/2868/team-table

Table team fixes in tablet screens
stable
David Barragán Merino 2015-06-16 09:54:14 +02:00
commit 0f7bc36713
2 changed files with 12 additions and 13 deletions

View File

@ -32,7 +32,8 @@
}
@mixin popover($width, $top: '', $left: '', $bottom: '', $right: '', $arrow-width: 0, $arrow-top: '', $arrow-left: '', $arrow-bottom: '', $arrow-height: 15px) {
@extend %text;
@extend %light;
@extend %small;
background: $blackish;
bottom: #{$bottom};
color: $white;

View File

@ -3,8 +3,8 @@
padding: .5rem;
}
.username {
flex: 3;
min-width: 300px;
flex-basis: 220px;
min-width: 25%;
}
.member-stats {
align-content: center;
@ -14,20 +14,18 @@
justify-content: flex-end;
}
.attribute {
@extend %light;
flex: 1;
position: relative;
text-align: center;
.icon,
.points {
@extend %xlarge;
color: $grayer;
&.top {
color: $fresh-taiga;
}
.icon {
@extend %larger;
color: $blackish;
}
.points {
@extend %title;
@extend %bold;
@extend %larger;
@extend %light;
color: $grayer;
}
.top {
color: $fresh-taiga;
@ -93,11 +91,11 @@
@extend %bold;
}
.position {
@extend %light;
color: $gray-light;
}
}
.popover {
@extend %small;
@include popover(100%, '', 0, 30px, '', 15px, '', 50%, -5px);
}
}