better feedback for new version notifier
This commit is contained in:
parent
d9fa39f1d4
commit
4d1d0a4566
|
@ -15,7 +15,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($param == 2) {
|
if ($param == 2) {
|
||||||
print check_for_update($link, false);
|
$msg = check_for_update($link, false);
|
||||||
|
|
||||||
|
if (!$msg) {
|
||||||
|
print _("You are running the latest version of Tiny Tiny RSS. The
|
||||||
|
fact that you are seeing this dialog is probably a bug.");
|
||||||
|
} else {
|
||||||
|
print $msg;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -274,6 +274,14 @@ span.contentPreview:hover {
|
||||||
background : white;
|
background : white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.infoBoxContents a {
|
||||||
|
color : gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.infoBoxContents a:hover {
|
||||||
|
color : black;
|
||||||
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
|
@ -489,6 +489,14 @@ div.infoBoxContents td {
|
||||||
font-size : small;
|
font-size : small;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.infoBoxContents a {
|
||||||
|
color : #4684ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.infoBoxContents a:hover {
|
||||||
|
color : black;
|
||||||
|
}
|
||||||
|
|
||||||
div.helpResponse h1, div.infoBoxContents h1 {
|
div.helpResponse h1, div.infoBoxContents h1 {
|
||||||
/* border-width : 0px 0px 1px 0px;
|
/* border-width : 0px 0px 1px 0px;
|
||||||
border-style : solid;
|
border-style : solid;
|
||||||
|
|
Loading…
Reference in New Issue