mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 18:48:21 -07:00
Fixed broken user dl status (#1351)
* Fixed broken user dl status * Update viewtopic_torrent.tpl * Update displaying_torrent.php * Update displaying_torrent.php * Update displaying_torrent.php * Updated * Update CHANGELOG.md * Update CHANGELOG.md
This commit is contained in:
parent
15080b054d
commit
a8b8278352
9 changed files with 56 additions and 47 deletions
|
@ -23,11 +23,11 @@
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
.alert>p, .alert>ul {
|
||||
.alert > p, .alert > ul {
|
||||
margin: 0 0 1px 15px;
|
||||
}
|
||||
|
||||
.alert>p+p {
|
||||
.alert > p + p {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
|
@ -116,7 +116,7 @@
|
|||
.alert-success {
|
||||
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
||||
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
||||
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #b2dba1;
|
||||
}
|
||||
|
@ -124,7 +124,7 @@
|
|||
.alert-info {
|
||||
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
||||
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
||||
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #9acfea;
|
||||
}
|
||||
|
@ -132,7 +132,7 @@
|
|||
.alert-warning {
|
||||
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
||||
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
||||
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #f0d575;
|
||||
}
|
||||
|
@ -140,7 +140,7 @@
|
|||
.alert-danger {
|
||||
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
||||
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
||||
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
border-color: #dca7a7;
|
||||
}
|
||||
|
|
|
@ -537,7 +537,8 @@ input, textarea, select {
|
|||
font-family: Verdana, sans-serif;
|
||||
}
|
||||
|
||||
input.post, textarea.post {}
|
||||
input.post, textarea.post {
|
||||
}
|
||||
|
||||
select, input {
|
||||
font-size: 11px;
|
||||
|
@ -647,11 +648,12 @@ legend a {
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
fieldset>legend {
|
||||
fieldset > legend {
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.root_forum {}
|
||||
.root_forum {
|
||||
}
|
||||
|
||||
.has_sf {
|
||||
color: #333333;
|
||||
|
@ -693,7 +695,7 @@ textarea.editor {
|
|||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.fieldsets div>p {
|
||||
.fieldsets div > p {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
|
@ -701,11 +703,14 @@ textarea.editor {
|
|||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.fieldsets .radio {}
|
||||
.fieldsets .radio {
|
||||
}
|
||||
|
||||
.fieldsets .chbox {}
|
||||
.fieldsets .chbox {
|
||||
}
|
||||
|
||||
.fieldsets .input {}
|
||||
.fieldsets .input {
|
||||
}
|
||||
|
||||
table.my_downloads {
|
||||
margin-bottom: 2px;
|
||||
|
|
|
@ -613,8 +613,8 @@ table.peers td {
|
|||
.clients {
|
||||
width: auto;
|
||||
height: auto;
|
||||
display: inline!important;
|
||||
vertical-align:middle;
|
||||
display: inline !important;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.dl_list {
|
||||
|
|
|
@ -97,7 +97,8 @@
|
|||
font-size: 11px;
|
||||
}
|
||||
|
||||
#tr_main_cats {}
|
||||
#tr_main_cats {
|
||||
}
|
||||
|
||||
/* Main tracker categories list */
|
||||
#tr_main_cats ul {
|
||||
|
|
|
@ -43,7 +43,8 @@ body, th, td, font {
|
|||
position: relative;
|
||||
}
|
||||
|
||||
#sidebar1 {}
|
||||
#sidebar1 {
|
||||
}
|
||||
|
||||
#sidebar2 {
|
||||
padding: 0 3px 0 6px;
|
||||
|
@ -56,13 +57,15 @@ body, th, td, font {
|
|||
width: 210px;
|
||||
}
|
||||
|
||||
#sidebar2-wrap {}
|
||||
#sidebar2-wrap {
|
||||
}
|
||||
|
||||
#main_content {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
#main_content_wrap {}
|
||||
#main_content_wrap {
|
||||
}
|
||||
|
||||
#page_footer {
|
||||
clear: both;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue