cleans css format

This commit is contained in:
decabeza
2017-10-03 13:55:59 +02:00
parent 894bda92ba
commit d39c2c6e9e
3 changed files with 25 additions and 22 deletions

View File

@@ -343,11 +343,9 @@ a {
} }
.truncate-horizontal-text { .truncate-horizontal-text {
white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
-o-text-overflow: ellipsis; white-space: nowrap;
-ms-text-overflow: ellipsis;
} }
.align-top { .align-top {
@@ -633,7 +631,7 @@ header {
text-align: left; text-align: left;
@include breakpoint(medium) { @include breakpoint(medium) {
margin-right: rem-calc(24); margin-right: $line-height;
} }
&:hover { &:hover {
@@ -2183,9 +2181,10 @@ table {
} }
// 19. Recommended Section Home // 19. Recommended Section Home
// ----------- // ----------------------------
.home-page { .home-page {
.push { .push {
display: none; display: none;
} }
@@ -2219,7 +2218,7 @@ table {
.card-section { .card-section {
padding: $line-height 0; padding: $line-height 0;
max-width: 300px; max-width: rem-calc(300);
margin: 0 auto; margin: 0 auto;
p { p {
@@ -2229,10 +2228,10 @@ table {
} }
.orbit { .orbit {
height: 300px; height: rem-calc(300);
.orbit-wrapper { .orbit-wrapper {
max-height: 250px; max-height: rem-calc(250);
overflow: hidden; overflow: hidden;
position: relative; position: relative;
} }
@@ -2248,7 +2247,7 @@ table {
background: image-url('truncate.png'); background: image-url('truncate.png');
background-repeat: repeat-x; background-repeat: repeat-x;
bottom: 0; bottom: 0;
height: 20px; height: rem-calc(20);
position: absolute; position: absolute;
width: 100%; width: 100%;
} }
@@ -2269,21 +2268,21 @@ table {
.proposals-inner, .proposals-inner,
.budget-investments-inner { .budget-investments-inner {
background: #fff; background: #fff;
max-height: 350px; max-height: rem-calc(350);
@include breakpoint(small) { @include breakpoint(small) {
max-height: 400px; max-height: rem-calc(400);
} }
h4 { h4 {
margin-top: $line-height; margin-top: $line-height;
margin-bottom: 0; margin-bottom: 0;
font-size: rem-calc(18); font-size: rem-calc(18);
min-height: 50px; min-height: rem-calc(50);
} }
h5 { h5 {
font-size: rem-calc(14); font-size: $small-font-size;
text-align: left; text-align: left;
} }
} }
@@ -2291,20 +2290,20 @@ table {
.carousel-image { .carousel-image {
.card .orbit { .card .orbit {
height: 480px; height: rem-calc(480);
.orbit-wrapper { .orbit-wrapper {
max-height: 450px; max-height: rem-calc(450);
} }
} }
.debates-inner, .debates-inner,
.proposals-inner, .proposals-inner,
.budget-investments-inner { .budget-investments-inner {
max-height: 500px; max-height: rem-calc(500);
@include breakpoint(small) { @include breakpoint(small) {
max-height: 600px; max-height: rem-calc(600);
} }
} }
} }
@@ -2318,7 +2317,9 @@ table {
} }
} }
// 19. Documents // 20. Documents
// -------------
.documents-list { .documents-list {
table { table {

View File

@@ -2,7 +2,8 @@
// //
// 01. Logo // 01. Logo
// 02. Orbit bullets // 02. Orbit bullets
// // 03. Direct uploads
// ------------------
// 01. Logo // 01. Logo
// -------- // --------
@@ -34,6 +35,7 @@
// 02. Orbit bullet // 02. Orbit bullet
// ---------------- // ----------------
@mixin orbit-bullets { @mixin orbit-bullets {
@include disable-mouse-outline; @include disable-mouse-outline;
position: relative; position: relative;
@@ -59,8 +61,9 @@
} }
} }
// 02. Direct uploads // 03. Direct uploads
// ------------------ // ------------------
@mixin direct-uploads { @mixin direct-uploads {
.cached-image { .cached-image {
@@ -133,5 +136,4 @@
.loading-bar.no-transition { .loading-bar.no-transition {
transition: none; transition: none;
} }
} }

View File

@@ -825,7 +825,7 @@
background: image-url('truncate.png'); background: image-url('truncate.png');
background-repeat: repeat-x; background-repeat: repeat-x;
bottom: 0; bottom: 0;
height: 24px; height: rem-calc(24);
position: absolute; position: absolute;
width: 100%; width: 100%;
} }