mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Tootips added or episode status
This commit is contained in:
@@ -14,21 +14,24 @@ define(
|
|||||||
if (this.model) {
|
if (this.model) {
|
||||||
|
|
||||||
var icon;
|
var icon;
|
||||||
|
var tooltip;
|
||||||
|
|
||||||
if (this.model.get('episodeFile')) {
|
if (this.model.get('episodeFile')) {
|
||||||
icon = 'icon-ok';
|
icon = 'icon-ok';
|
||||||
|
tooltip = 'Episode downloaded';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (this.model.get('hasAired')) {
|
if (this.model.get('hasAired')) {
|
||||||
icon = 'icon-warning-sign';
|
icon = 'icon-warning-sign';
|
||||||
|
tooltip = 'Episode missing from disk';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
icon = 'icon-time';
|
icon = 'icon-time';
|
||||||
|
tooltip = 'Episode has not aired';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$el.html('<i class="{0}"/>'.format(icon));
|
this.$el.html('<i class="{0}" title="{1}"/>'.format(icon, tooltip));
|
||||||
}
|
}
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
2
UI/Content/Overrides/bootstrap.less
vendored
2
UI/Content/Overrides/bootstrap.less
vendored
@@ -1,6 +1,6 @@
|
|||||||
@import "../prefixer";
|
@import "../prefixer";
|
||||||
|
|
||||||
.label, .badge {
|
.label, .badge, i {
|
||||||
cursor : default;
|
cursor : default;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -3,7 +3,6 @@
|
|||||||
i {
|
i {
|
||||||
font-size : 16px;
|
font-size : 16px;
|
||||||
color : #595959;
|
color : #595959;
|
||||||
cursor : default;
|
|
||||||
}
|
}
|
||||||
.checkbox {
|
.checkbox {
|
||||||
width : 100px;
|
width : 100px;
|
||||||
|
Reference in New Issue
Block a user