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

1672 by Inlead: Carousel makeover. #261

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions ding2.make
Expand Up @@ -475,6 +475,12 @@ libraries[psr7][download][type] = "git"
libraries[psr7][download][url] = "git@github.com:guzzle/psr7.git"
libraries[psr7][destination] = "libraries"

libraries[slick][download][type] = "git"
libraries[slick][download][url] = "git@github.com:kenwheeler/slick.git"
libraries[slick][download][branch] = "master"
libraries[slick][directory_name] = "slick"
libraries[slick][destination] = "libraries"

libraries[ting-client][download][type] = "git"
libraries[ting-client][download][url] = "http://github.com/ding2/ting-client.git"
libraries[ting-client][download][branch] = "master"
Expand Down
1 change: 1 addition & 0 deletions modules/ting_search_carousel/.gitignore
@@ -0,0 +1 @@
.sass-cache/
20 changes: 13 additions & 7 deletions modules/ting_search_carousel/css/ting_search_carousel.css
Expand Up @@ -2,10 +2,12 @@
ting search carousel styling
========================================================================== */
.rs-carousel,
.rs-carousel-mask,
.rs-carousel-runner {
position: relative;
}

.rs-carousel-mask,
.rs-carousel-runner {
overflow: hidden;
}
Expand Down Expand Up @@ -68,18 +70,22 @@ rs-carousel-runner {
width: 220px;
}

.rs-carousel-items ul {
.rs-carousel-mask,
.rs-carousel-mask ul {
display: inline-block;
vertical-align: top;
}

.rs-carousel-items ul {
.rs-carousel-mask {
width: 100%;
}

.rs-carousel-mask ul {
margin: 0;
padding: 0;
list-style: none;
}

.rs-carousel-items li {
.rs-carousel-mask li {
float: left;
width: 100px;
text-align: center;
Expand All @@ -98,18 +104,18 @@ rs-carousel-runner {

/* Carousel tabs
========================================================================== */
.rs-carousel-tabs ul {
.rs-carousel-tabs .ting-search-carousel-tabs ul {
margin: 0;
position: relative;
text-align: center;
}

.rs-carousel-tabs ul li {
.rs-carousel-tabs .ting-search-carousel-tabs ul li {
display: table-cell;
vertical-align: top;
text-align: center;
}

.rs-carousel-tabs ul li.active a {
.rs-carousel-tabs .ting-search-carousel-tabs ul li.active a {
position: relative;
}