Fix repo circle positioning by changing to absolute sizes everywhere
This commit is contained in:
parent
2113fcf54f
commit
1d51618c9d
2 changed files with 14 additions and 6 deletions
|
@ -15,14 +15,23 @@
|
|||
|
||||
.repo-circle.no-background {
|
||||
background: transparent;
|
||||
position: relative;
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
.repo-circle .fa-hdd {
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
.repo-circle.no-background .fa-hdd {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.repo-circle .fa-lock {
|
||||
position: absolute;
|
||||
bottom: -6px;
|
||||
right: 0px;
|
||||
bottom: -2px;
|
||||
right: -4px;
|
||||
background: rgb(253, 191, 191);
|
||||
width: 20px;
|
||||
display: inline-block;
|
||||
|
@ -30,11 +39,11 @@
|
|||
text-align: center;
|
||||
height: 20px;
|
||||
line-height: 21px;
|
||||
font-size: 16px;
|
||||
font-size: 16px !important;
|
||||
}
|
||||
|
||||
.repo-circle.no-background .fa-lock {
|
||||
bottom: 2px;
|
||||
bottom: -2px;
|
||||
right: -6px;
|
||||
color: #444;
|
||||
}
|
||||
|
@ -710,7 +719,6 @@ p.editable:hover i {
|
|||
}
|
||||
|
||||
.repo-listing i {
|
||||
font-size: 2em;
|
||||
color: #999;
|
||||
display: inline-block;
|
||||
margin-right: 6px;
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
<i class="fa fa-lock fa-lg" style="{{ repo.is_public ? 'visibility: hidden' : 'visibility: visible' }}" title="Private Repository"></i>
|
||||
<i class="fa fa-hdd fa-lg"></i>
|
||||
<i class="fa fa-hdd"></i>
|
||||
|
|
Reference in a new issue