Last active
April 24, 2018 20:34
-
-
Save ultim8k/7752eb1d4cf105e8c4b9332be80b6b06 to your computer and use it in GitHub Desktop.
apothema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Carousel missing left border | |
* Owl carousel removes the container element's left border to avoid having double borders on the left. | |
*/ | |
/* Force parent element to show left border */ | |
.owl-carousel { | |
border-left: 1px solid #e3e3e3 !important; | |
} | |
.owl-item.active { | |
border-left-color: white; | |
} | |
.owl-carousel:active .owl-item, | |
.owl-item.active+.owl-item { | |
border-left-color: #e3e3e3; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
| Product rating - unexpected 1px space on the right | |
| Simply adding pull-right to the col-md element fixes the problem because it forces the element to stick right. | |
--> | |
<div class="row"> | |
<div class="col-md-12"> | |
<div class="brand__box container-fluid"> | |
<div class="row"> | |
<div class="col-md-3 text-center Aligner"> | |
<div class="Aligner-item"> | |
product image | |
</div> | |
</div> | |
<div class="col-md-7"> | |
product description | |
</div> | |
<div class="col-md-2 reviews__rating filter-blue Aligner"> | |
<div class="text-center Aligner-item"> | |
<div class="reviews__rating__total">4,6</div> | |
<div class="star-ratings-sprite"><span style="width:52%" class="star-ratings-sprite-rating"></span></div> | |
<p><a href="#">(250)</a></p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment