Conflicts:
wolnelektury/static/js/search.js
/* Logo font */
@font-face {
/* IE version */
- font-family: WL-Logo;
- src: url(/static/fonts/WL.eot);
+ font-family: WL-Nav;
+ src: url(/static/fonts/WL-Nav.eot);
}
@font-face {
font-family: WL-Nav;
/*line-height: 1.4em;*/
}
-
+a img {
+ border: 0;
+}
a {
color: #1199a2; /* #01adba; */
text-decoration: none;
padding: 0;
margin: 0;
font-size: 1.1em;
+ column-width: 12em;
-moz-column-width: 12em;
+ -webkit-column-width: 12em;
width: 48em;
}
.hidden-box li {
padding-top:3em;
background: #fff;
}
-}
+
+ /* just on search page */
+ .top-tag-list {
+ margin-top: 2.2em;
+ margin-bottom: 1.6em;
++}
}
});
});
+ $('body').click(function(e) {
+ if ($current == null) return;
+ var p = $(e.target);
+ while (p.length) {
+ if (p == $current)
+ return;
+ if (p.hasClass('hidden-box-trigger'))
+ return;
+ p = p.parent();
+ }
+ $current.hide('fast');
+ $current = null;
+ });
})();
+
return false;
});
+ $(function(){
+ $("#search").search();});
});
})(jQuery)