1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00
piwigo_ynh/sources/themes/default/fix-khtml.css
2014-07-06 13:21:10 +02:00

17 lines
514 B
CSS

/* Issue in Safari/Konqueror only */
/* If H2 has a 0 margin-top categoryActions doesn't float right but overwrites H2 */
.content>.titrePage>H2 {
margin: 1px 0 0 0; /* add an arbitrary margin-top */
}
.content>.titrePage {
position: relative;
top: -1px; /* move the container up by the same amount */
margin-bottom: 5px;
}
#menubar #menuTagCloud SPAN
{
display: inline-block;/* required for Safari 3.1 - otherwise overflows on the right */
}