[fix] private icon not show

This commit is contained in:
Knah Tsaeb 2016-06-15 09:10:11 +02:00
parent c29027dd1a
commit e9cda12d81
2 changed files with 14 additions and 7 deletions

View File

@ -519,14 +519,18 @@ a, .linkdescription a {
#linklist li, #linklist li.private {
background-color: #fff;
background-image: url('../../images/private_16x16.png');
background-repeat: no-repeat;
background-position: 10px center;
border: 1px solid #cdcdcd;
border-radius: .3em;
clear: both;
margin: 1em 0;
padding: .3em .3em .3em 32px;
padding: .3em;
}
#linklist li.private {
background-image: url('../../images/private_16x16.png');
background-repeat: no-repeat;
background-position: 10px center;
padding: .3em .3em .3em 32px;
}
#linklist li.publicLinkHightLight {

View File

@ -529,9 +529,6 @@ a, .linkdescription a {
#linklist li, #linklist li.private {
box-sizing: border-box;
background-color: #fff;
background-image: url('../../images/private_16x16.png');
background-repeat: no-repeat;
background-position: 10px 10px;
border: 1px solid #cdcdcd;
border-radius: .3em;
flex: 0 0 auto;
@ -541,6 +538,12 @@ a, .linkdescription a {
width: calc(25% - .6em);
}
#linklist li.private {
background-image: url('../../images/private_16x16.png');
background-repeat: no-repeat;
background-position: 10px 10px;
}
#linklist li.publicLinkHightLight {
background: #ffffff;
}