Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#1212] Huge budget will go to next line. #1238

Merged
merged 1 commit into from
Feb 26, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions akvo/rsr/static/rsr/v3/css/src/library.scss
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ $width-large: 1200px;
@else if $width == tablets {
@media only screen and (max-width: $width-middle) { @content; }
}
@else if $width == bigTablets {
@media only screen and (max-width: $width-large) { @content; }
}

}

/* Placeholder
Expand Down
5 changes: 3 additions & 2 deletions akvo/rsr/static/rsr/v3/css/src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -850,9 +850,10 @@ h4.detailedInfo {
@media only screen and (max-width: 768px) {
.main-list li dl.dl-horizontal dd {
margin-left: 100px; } }
@media only screen and (min-width: 768px) and (max-width: 1024px) {
@media only screen and (max-width: 1200px) {
.main-list li dl.dl-horizontal dd {
margin-left: 80px; } }
margin-left: 0px;
display: block; } }
.main-list .excerpt {
overflow: hidden;
text-overflow: ellipsis;
Expand Down
10 changes: 4 additions & 6 deletions akvo/rsr/static/rsr/v3/css/src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -974,12 +974,10 @@ h4.detailedInfo {
dd {
@include responsive(small-max-screens) {
margin-left: 100px;
}
@include responsive(ipadAir) {
margin-left: 80px;
}
@include responsive(bigTablets) {
margin-left: 80px;
}
@include responsive(wide-max-screens) {
margin-left: 0px;
display: block;
}
}
}
Expand Down