diff options
author | flop25 <flop25@piwigo.org> | 2014-01-25 23:12:34 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2014-01-25 23:12:34 +0000 |
commit | 948adde84006257791e5e7239c2c159eeac0d872 (patch) | |
tree | 3991e82b9d38e3a42b7d2390a76e836dbf805a1d /themes/elegant/theme.css | |
parent | ed9bdd861baf6f4e6c6b9df39e70591e26b7b3ad (diff) |
bug:2700 implementation of jBreadCrumb
comments appreciated on the bugtracker
git-svn-id: http://piwigo.org/svn/trunk@26971 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/elegant/theme.css | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/themes/elegant/theme.css b/themes/elegant/theme.css index 83f130deb..2a37e54f4 100644 --- a/themes/elegant/theme.css +++ b/themes/elegant/theme.css @@ -273,3 +273,86 @@ a:hover { border-bottom: none;} #the_page .content .stuffs { margin: 0!important} .categoryActions .theme_menuf { display: none;} + +/* BreadCrumb */ +.browsePath +{ + margin: 0; + padding: 0; + float: left; + display: block; + height: 26px; + overflow: hidden; + width: 990px; + padding:5px; +} +.browsePath ul +{ + margin: 0; + padding: 0; + height: 26px; + display: block; +} +.browsePath ul li +{ + display: block; + float: left; + position: relative; + height: 26px; + overflow: hidden; + line-height: 26px; + margin: 0px; + font-size: .9167em; +} +.browsePath ul li a:before, .browsePath ul li.last:before +{ + content: "/"; + display: inline-block; + margin-left: 0.2em; + margin-right: 0.2em; + text-align: center; + text-decoration: inherit; + text-transform: none; + width: 1em; +} +.browsePath ul li div.chevronOverlay +{ + position: absolute; + right: 0; + top: 0; + z-index: 2; +} +.browsePath ul li span +{ + display: block; + overflow: hidden; +} +.browsePath ul li a +{ + display: block; + position: relative; + height: 26px; + line-height: 26px; + overflow: hidden; + float: left; +} +.browsePath ul li.first a +{ + height: 26px !important; + text-indent:-1000em; + width:26px; + padding: 0; + margin: 0; + overflow: hidden; + background:url(icon/icons_sprite.png) no-repeat -26px 0; +} +.browsePath ul li.first a:hover +{ + background-image:url(icon/icons_sprite-hover.png); +} +.browsePath ul li.last +{ + background: none; + margin-right: 0; + padding-right: 0; +} |