[fix] private icon not show

This commit is contained in:
Knah Tsaeb 2016-06-14 11:59:10 +02:00
parent 118f40d21e
commit 5ac350359c
2 changed files with 10 additions and 4 deletions

View File

@ -518,12 +518,15 @@ a, .linkdescription a {
}
#linklist li, #linklist li.private {
background: #fff;
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;
padding: .3em .3em .3em 32px;
}
#linklist li.publicLinkHightLight {

View File

@ -528,7 +528,10 @@ a, .linkdescription a {
#linklist li, #linklist li.private {
box-sizing: border-box;
background: #fff;
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;
@ -1286,4 +1289,4 @@ a:hover, .linkdescription a:hover, .linktitle a:hover, .linkWallabag a:hover, .l
position: relative;
width: calc(100% - 0.6em);
}
}
}