Merge branch '26435-show-project-avatars-on-mobile' into 'master'

Display project avatars on Admin Area and Projects pages for mobile views

See merge request !8506
This commit is contained in:
Annabel Dunstone Gray 2017-01-10 22:45:19 +00:00
commit 65f2ceb0d0
3 changed files with 20 additions and 4 deletions

View File

@ -37,10 +37,6 @@
display: none;
}
.project-avatar {
display: none;
}
.project-home-panel {
padding-left: 0 !important;

View File

@ -587,11 +587,21 @@ pre.light-well {
.project-full-name {
@include str-truncated;
@media (max-width: $screen-xs-max) {
max-width: 50%;
}
}
.controls {
line-height: $list-text-height;
.badge {
@media (max-width: $screen-xs-max) {
display: none;
}
}
a:hover {
text-decoration: none;
}
@ -605,6 +615,12 @@ pre.light-well {
top: 2px;
}
}
.description p {
@media (max-width: $screen-xs-max) {
max-width: 50%;
}
}
}
.bottom {

View File

@ -0,0 +1,4 @@
---
title: Display project avatars on Admin Area and Projects pages for mobile views
merge_request:
author: Ryan Harris