Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
e920641
Added restriction, at least 1 nodequeue must be created to be visible.
impara Jan 29, 2013
c03bf2f
Converted ui-tabs triangle image to css to use inherited color from t…
impara Mar 26, 2013
e1fc116
Removed selected tab triangle image because it had been converted to …
impara Apr 5, 2013
1531d4a
Allow having no link.
runephilosof Oct 7, 2013
a34f66f
Make it pretty when there is no link
impara Oct 7, 2013
2ae0d3c
upgraded to features 7.x-2.0-beta2
runephilosof Nov 25, 2013
b7b4228
Insert descriptions and prettify labels.
runephilosof Nov 26, 2013
42917c4
Add possibility to link to external and add anchor to internal.
runephilosof Nov 26, 2013
c78d551
Don't double encode titles
runephilosof Nov 29, 2013
cf51a9c
Proper naming of the subqueues
runephilosof Nov 29, 2013
996ea83
Fixed styles:
Nov 29, 2013
6b12214
Increment version
runephilosof Dec 9, 2013
ff43bac
only change top and bottom padding.
runephilosof Dec 9, 2013
a0f27f7
font-size lowered on tabroll
Dec 3, 2013
72dde94
name the field group properly
runephilosof Dec 10, 2013
31e59d3
Merge branch '7.x-1.x' of github.com:odensecentralbibliotek/ding_tabr…
runephilosof Dec 10, 2013
ccb6c74
Merge branch '7.x-1.x' of github.com:odensecentralbibliotek/ding_tabr…
runephilosof Jan 9, 2014
92b605f
code style change
runephilosof Jan 9, 2014
541d3d7
Add label for image style.
runephilosof Jan 9, 2014
8bc9194
add anchor and external to municipality/library view
runephilosof Jan 29, 2014
9b1e0ef
Fixed target _blank on external link.
impara Apr 30, 2014
efa29ed
Fixed target _blank on external link for libraries
impara May 2, 2014
78e8137
Fixed libraries decode entities
impara May 6, 2014
5c5de59
updated to v 1.1
impara Jun 20, 2014
6d39b6e
Check if field_ding_tabroll_external exists to remove undefined notice.
impara Nov 7, 2014
e707f04
Resized image width to 98%
impara Nov 10, 2014
68f9292
Resized image width to 97%
impara Nov 10, 2014
fa38e25
Views/link field relationship seems to have issues. Reads internal l…
Memleakz Dec 1, 2014
90739c7
Removed entity ref from view to fix external link not showing.
impara Mar 5, 2015
0651e90
add jquery rotate
Memleakz Oct 28, 2015
f47dafd
Merge https://github.com/odensecentralbibliotek/ding_tabroll into 7.x…
Memleakz Oct 28, 2015
b8ed874
rotate fix tabroll
impara Oct 29, 2015
6760eab
Added image source field support for OC
Memleakz Nov 5, 2015
75aede0
save
Memleakz Nov 5, 2015
5a8e1b1
Merge pull request #1 from odensecentralbibliotek/tabroll_image_sourc…
Memleakz Nov 5, 2015
5d04fc9
font size change.
Memleakz Nov 5, 2015
adf904b
harden js
Memleakz Nov 23, 2016
e9e1c79
Removed the extra space in link id name.
impara Dec 1, 2016
afff662
Linked lead to content
impara Dec 6, 2016
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
68 changes: 51 additions & 17 deletions css/ding_tabroll.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,57 +7,72 @@
max-width: 1260px;
overflow: hidden;
margin-bottom: 15px;
padding-bottom: 0;
padding-top: 0;
}

#featured ul.ui-tabs-nav {
list-style: none outside none;
margin: 0;
padding: 0;
position: absolute;
top: 0;
width: 30%;
width: 32%;
z-index: 20;
border: 0 none;
font-family: inherit;
right: 0;
bottom: -1px;
float: left;
font-size: 13px;
line-height: 1.3;
outline: 0 none;
text-decoration: none;
}

#featured ul.ui-tabs-nav li {
border: 0 none;
border: 0;
color: #666666;
border-right: 1px solid #666;
white-space: normal;
width: 100%;
top: 0;
}

#featured ul.ui-tabs-nav li.ui-tabs-nav-item:first-child a{
border-radius: 0;
border-top-right-radius: 4px !important;
}

#featured .ui-tabs-nav li.ui-tabs-selected {
border-bottom-color: #FFFFFF;
background: url("../images/tab-active.png") no-repeat scroll left top transparent;
margin-left: -12px;
padding-left: 12px;
#featured ul.ui-tabs-nav li.ui-tabs-nav-item:last-child a {
border-bottom: 0;
border-radius: 0;
border-bottom-right-radius: 4px !important;
}

#featured .ui-tabs-nav li.ui-tabs-active {
position: relative;
}
#featured .ui-tabs-nav li.ui-tabs-active:after {
right: 100%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none;
}
#featured .ui-tabs-nav li.ui-tabs-active:after {
border-color: rgba(153, 215, 219, 0); border-right-color: inherit; border-width: 24px; top: 50%; margin-top: -24px;
}

#featured li.ui-tabs-nav-item a {
color: #FFFFFF;
display: block;
line-height: 17px;
overflow: hidden;
padding: 5px 5px 0 20px;
padding: 5px 5px 0 15px;
background: none repeat scroll 0 0 #999999;
border-bottom: 1px solid #fff;
font-weight: normal;
height: 42px;
text-transform: uppercase;
min-width: 90%;
font-size: 12px;
float: none;
}

#featured ul.ui-tabs-nav li.ui-tabs-selected a {
background: none repeat scroll 0 0 #99D7DB;
#featured ul.ui-tabs-nav li.ui-tabs-active a {
color: #fff;
height: 43px;
overflow: hidden;
Expand All @@ -71,13 +86,13 @@
left:0;
width: 70%
}
#featured a img {
width: 100%
#featured img {
width: 97%
}
#featured .ui-tabs-panel .info {
background: url("../images/bluegbg-75.png") repeat scroll 0 0 transparent;
bottom: 0;
height: 90px;
height: 100px;
left: 0;
position: absolute;
width: 70%;
Expand All @@ -86,6 +101,11 @@

#featured .ui-tabs-panel .info h3 {
margin: 10px 10px 0 20px;
color: #FFFFFF;
font-size: 16px;
font-weight: bold;
line-height: 20px;
text-transform: uppercase;
}

#featured .ui-tabs-panel .info h3 a {
Expand All @@ -102,6 +122,11 @@
width: 90%;
}

#featured .ui-tabs-panel .info p a {
color: white;
text-decoration: none;
}

#featured .ui-tabs-hide {
display: none;
}
Expand All @@ -123,3 +148,12 @@
.node-eresource .field-link span, .node-eresource .field-ding-eresource-availabilit span {
font-weight: normal;
}
.tabroll-photo-copyright
{
bottom: -2px;
left: 20px;
position: absolute;
color: white;
font-size: 8px;
z-index: 11;
}
Loading