CSS adaptations to match CKAN 2.3 (from 2.2.1)

This commit is contained in:
Guillaume Denis 2015-04-09 10:34:41 +02:00
parent 7e581dc9b5
commit d7bbbd1998
3 changed files with 31 additions and 6 deletions

View File

@ -43,7 +43,11 @@ div a[href^="/user/edit"],
}
.homepage [role="main"], body [role="main"] {
padding-top: 80px;
padding-top: 80px;
}
body [role="main"].second {
padding-top: 40px;
}
.toolbar .breadcrumb > li + li:before {
@ -360,6 +364,21 @@ h1.page-heading {
/* fix CKAN responsive issues */
@media (max-width: 767px) {
body {
padding-left: 0;
padding-right: 0;
}
.toolbar .breadcrumb, .toolbar .breadcrumb a {
color: #505050;
text-shadow: 0 1px 0 #ffffff;
}
.toolbar .breadcrumb .home {
display: inline-block;
}
}
.homepage.layout-1 .row1 .col2, .homepage.layout-1 .row2 .col2 {
position: relative;
}
@ -381,7 +400,7 @@ h1.page-heading {
}
@media (max-width: 767px) {
.row1 .col1 {
.row1 .col1, .row2 .col1 {
margin-bottom: 20px;
}
}
@ -410,11 +429,17 @@ h1.page-heading {
}
}
@media (min-width: 1199px) {
.row.wrapper {
background-position: 50px top;
}
}
@media (max-width: 979px) {
aside.secondary {
/*aside.secondary {
display :none;
}
.row.wrapper {
background: #fff;
}
}*/
}

View File

@ -14,7 +14,7 @@
</div>
</div>
</div>
<div role="main">
<div role="main" class="second">
<div class="container">
<div class="row row2">
<div class="span5 col1">

View File

@ -55,7 +55,7 @@
{% endblock %}
{% block primary %}
<div class="primary span12">
<div class="primary span9">
{#
The primary_content block can be used to add content to the page.
This is the main block that is likely to be used within a template.