mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-04 15:12:23 -05:00
Fix for sickragetv/sickrage-issues#322
Darker color for sickragetv/sickrage-issues#322
This commit is contained in:
parent
8b84e4f4bc
commit
2830b9d83e
@ -561,6 +561,16 @@ home.tmpl
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.progress-100 {
|
||||
background-image: -moz-linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: -webkit-linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: -o-linear-gradient(#395f07, #2a4705) !important;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.progress-80 {
|
||||
background-image: -moz-linear-gradient(#a6cf41, #5b990d) !important;
|
||||
background-image: linear-gradient(#a6cf41, #5b990d) !important;
|
||||
@ -3061,4 +3071,4 @@ jquery.confirm.css
|
||||
|
||||
#confirmBox .red:hover {
|
||||
background-color: #A13331;
|
||||
}
|
||||
}
|
||||
|
@ -543,6 +543,16 @@ home.tmpl
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.progress-100 {
|
||||
background-image: -moz-linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: -webkit-linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: -o-linear-gradient(#395f07, #2a4705) !important;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.progress-80 {
|
||||
background-image: -moz-linear-gradient(#a6cf41, #5b990d) !important;
|
||||
background-image: linear-gradient(#a6cf41, #5b990d) !important;
|
||||
@ -2998,4 +3008,4 @@ jquery.confirm.css
|
||||
|
||||
#confirmBox .red:hover {
|
||||
background-color: #A13331;
|
||||
}
|
||||
}
|
||||
|
@ -557,6 +557,16 @@ home.tmpl
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.progress-100 {
|
||||
background-image: -moz-linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: -webkit-linear-gradient(#395f07, #2a4705) !important;
|
||||
background-image: -o-linear-gradient(#395f07, #2a4705) !important;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.progress-80 {
|
||||
background-image: -moz-linear-gradient(#a6cf41, #5b990d) !important;
|
||||
background-image: linear-gradient(#a6cf41, #5b990d) !important;
|
||||
@ -3203,4 +3213,4 @@ login.css
|
||||
font-size: 25px;
|
||||
padding: 20px;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
|
@ -364,7 +364,10 @@ $myShowList.sort(lambda x, y: cmp(x.name, y.name))
|
||||
}
|
||||
if (classvalue>80) {
|
||||
classtoadd = "progress-80"
|
||||
}
|
||||
}
|
||||
if (classvalue==100) {
|
||||
classtoadd = "progress-100"
|
||||
}
|
||||
\$("\#progressbar$curShow.indexerid > .ui-progressbar-value").addClass(classtoadd);
|
||||
});
|
||||
//-->
|
||||
@ -595,6 +598,9 @@ $myShowList.sort(lambda x, y: cmp(x.name, y.name))
|
||||
if (classvalue>80) {
|
||||
classtoadd = "progress-80"
|
||||
}
|
||||
if (classvalue==100) {
|
||||
classtoadd = "progress-100"
|
||||
}
|
||||
\$("\#progressbar$curShow.indexerid > .ui-progressbar-value").addClass(classtoadd);
|
||||
});
|
||||
//-->
|
||||
|
Loading…
Reference in New Issue
Block a user