more theme-related updates
This commit is contained in:
parent
0b68215ca6
commit
2bf88d9ff6
18
backend.php
18
backend.php
|
@ -1390,7 +1390,7 @@
|
||||||
|
|
||||||
print "<table width='100%'>";
|
print "<table width='100%'>";
|
||||||
|
|
||||||
$row_class = "odd";
|
# $row_class = "odd";
|
||||||
|
|
||||||
print "<tr class='$row_class'><td>Title:</td>";
|
print "<tr class='$row_class'><td>Title:</td>";
|
||||||
print "<td><input id=\"iedit_title\" value=\"$title\"></td></tr>";
|
print "<td><input id=\"iedit_title\" value=\"$title\"></td></tr>";
|
||||||
|
@ -1398,7 +1398,7 @@
|
||||||
$feed_url = db_fetch_result($result, 0, "feed_url");
|
$feed_url = db_fetch_result($result, 0, "feed_url");
|
||||||
$feed_url = htmlspecialchars(db_unescape_string(db_fetch_result($result,
|
$feed_url = htmlspecialchars(db_unescape_string(db_fetch_result($result,
|
||||||
0, "feed_url")));
|
0, "feed_url")));
|
||||||
$row_class = toggleEvenOdd($row_class);
|
# $row_class = toggleEvenOdd($row_class);
|
||||||
|
|
||||||
print "<tr class='$row_class'><td>Feed URL:</td>";
|
print "<tr class='$row_class'><td>Feed URL:</td>";
|
||||||
print "<td><input id=\"iedit_link\" value=\"$feed_url\"></td></tr>";
|
print "<td><input id=\"iedit_link\" value=\"$feed_url\"></td></tr>";
|
||||||
|
@ -1407,7 +1407,7 @@
|
||||||
|
|
||||||
$cat_id = db_fetch_result($result, 0, "cat_id");
|
$cat_id = db_fetch_result($result, 0, "cat_id");
|
||||||
|
|
||||||
$row_class = toggleEvenOdd($row_class);
|
# $row_class = toggleEvenOdd($row_class);
|
||||||
|
|
||||||
print "<tr class='$row_class'><td>Category:</td>";
|
print "<tr class='$row_class'><td>Category:</td>";
|
||||||
print "<td>";
|
print "<td>";
|
||||||
|
@ -1437,7 +1437,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
$update_interval = db_fetch_result($result, 0, "update_interval");
|
$update_interval = db_fetch_result($result, 0, "update_interval");
|
||||||
$row_class = toggleEvenOdd($row_class);
|
# $row_class = toggleEvenOdd($row_class);
|
||||||
|
|
||||||
print "<tr class='$row_class'><td>Update Interval:</td>";
|
print "<tr class='$row_class'><td>Update Interval:</td>";
|
||||||
// print "<td><input id=\"iedit_updintl\"
|
// print "<td><input id=\"iedit_updintl\"
|
||||||
|
@ -1461,7 +1461,7 @@
|
||||||
|
|
||||||
print "</td>";
|
print "</td>";
|
||||||
|
|
||||||
$row_class = toggleEvenOdd($row_class);
|
# $row_class = toggleEvenOdd($row_class);
|
||||||
print "<tr class='$row_class'><td>Link to:</td>";
|
print "<tr class='$row_class'><td>Link to:</td>";
|
||||||
|
|
||||||
$tmp_result = db_query($link, "SELECT COUNT(id) AS count
|
$tmp_result = db_query($link, "SELECT COUNT(id) AS count
|
||||||
|
@ -1509,7 +1509,7 @@
|
||||||
print "</td></tr>";
|
print "</td></tr>";
|
||||||
|
|
||||||
$purge_interval = db_fetch_result($result, 0, "purge_interval");
|
$purge_interval = db_fetch_result($result, 0, "purge_interval");
|
||||||
$row_class = toggleEvenOdd($row_class);
|
# $row_class = toggleEvenOdd($row_class);
|
||||||
|
|
||||||
print "<tr class='$row_class'><td>Purge Days:</td>";
|
print "<tr class='$row_class'><td>Purge Days:</td>";
|
||||||
// print "<td><input id=\"iedit_purgintl\"
|
// print "<td><input id=\"iedit_purgintl\"
|
||||||
|
@ -1535,21 +1535,21 @@
|
||||||
|
|
||||||
// print "<tr><td colspan=\"2\"><b>Authentication</b></td></tr>";
|
// print "<tr><td colspan=\"2\"><b>Authentication</b></td></tr>";
|
||||||
|
|
||||||
$row_class = toggleEvenOdd($row_class);
|
# $row_class = toggleEvenOdd($row_class);
|
||||||
$auth_login = db_fetch_result($result, 0, "auth_login");
|
$auth_login = db_fetch_result($result, 0, "auth_login");
|
||||||
|
|
||||||
print "<tr class='$row_class'><td>Login:</td>";
|
print "<tr class='$row_class'><td>Login:</td>";
|
||||||
print "<td><input id=\"iedit_login\"
|
print "<td><input id=\"iedit_login\"
|
||||||
value=\"$auth_login\"></td></tr>";
|
value=\"$auth_login\"></td></tr>";
|
||||||
|
|
||||||
$row_class = toggleEvenOdd($row_class);
|
# $row_class = toggleEvenOdd($row_class);
|
||||||
$auth_pass = db_fetch_result($result, 0, "auth_pass");
|
$auth_pass = db_fetch_result($result, 0, "auth_pass");
|
||||||
|
|
||||||
print "<tr class='$row_class'><td>Password:</td>";
|
print "<tr class='$row_class'><td>Password:</td>";
|
||||||
print "<td><input type=\"password\" id=\"iedit_pass\"
|
print "<td><input type=\"password\" id=\"iedit_pass\"
|
||||||
value=\"$auth_pass\"></td></tr>";
|
value=\"$auth_pass\"></td></tr>";
|
||||||
|
|
||||||
$row_class = toggleEvenOdd($row_class);
|
# $row_class = toggleEvenOdd($row_class);
|
||||||
$private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
|
$private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
|
||||||
|
|
||||||
if ($private) {
|
if ($private) {
|
||||||
|
|
37
tt-rss.css
37
tt-rss.css
|
@ -128,9 +128,6 @@ table.main td.prefContent {
|
||||||
} */
|
} */
|
||||||
|
|
||||||
div.postReply {
|
div.postReply {
|
||||||
/* background-image : url("images/vgrad_light_rev.png");
|
|
||||||
background-position : top left;
|
|
||||||
background-repeat : repeat-x; */
|
|
||||||
height : 100%;
|
height : 100%;
|
||||||
padding : 10px;
|
padding : 10px;
|
||||||
}
|
}
|
||||||
|
@ -376,7 +373,7 @@ td.notifyBox {
|
||||||
}
|
}
|
||||||
|
|
||||||
#dispSwitch a:hover {
|
#dispSwitch a:hover {
|
||||||
color : #5050aa;
|
color : #4684ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.expPane {
|
div.expPane {
|
||||||
|
@ -546,7 +543,7 @@ a.helpLink {
|
||||||
}
|
}
|
||||||
|
|
||||||
a.helpLink:hover {
|
a.helpLink:hover {
|
||||||
color : #5050aa;
|
color : #4684ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.helpResponse {
|
div.helpResponse {
|
||||||
|
@ -569,15 +566,12 @@ div.helpResponse {
|
||||||
|
|
||||||
#userDlg {
|
#userDlg {
|
||||||
padding : 15px;
|
padding : 15px;
|
||||||
border : 1px solid #c0c0c0;
|
border : 1px solid #88b0f0;
|
||||||
font-size : small;
|
font-size : small;
|
||||||
position : relative;
|
position : relative;
|
||||||
bottom : 2px;
|
bottom : 2px;
|
||||||
right : 2px;
|
right : 2px;
|
||||||
background-color : white;
|
background-color : #ecf4ff;
|
||||||
background-image : url("images/vgrad_light_rev2.png");
|
|
||||||
background-position : top left;
|
|
||||||
background-repeat : repeat-x;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#qafInput {
|
#qafInput {
|
||||||
|
@ -592,7 +586,7 @@ div.helpResponse {
|
||||||
position : relative;
|
position : relative;
|
||||||
bottom : 2px;
|
bottom : 2px;
|
||||||
right : 2px;
|
right : 2px;
|
||||||
background-color : white;
|
background-color : #ecf4ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
#infoBoxShadow {
|
#infoBoxShadow {
|
||||||
|
@ -719,7 +713,7 @@ div.prefHelp, td.prefHelp {
|
||||||
|
|
||||||
td.welcomePrompt {
|
td.welcomePrompt {
|
||||||
font-size : x-small;
|
font-size : x-small;
|
||||||
color : gray;
|
color : #4684ff;
|
||||||
text-align : right;
|
text-align : right;
|
||||||
padding-right : 10px;
|
padding-right : 10px;
|
||||||
|
|
||||||
|
@ -732,14 +726,11 @@ td.httpWelcomePrompt {
|
||||||
}
|
}
|
||||||
|
|
||||||
table.loginForm {
|
table.loginForm {
|
||||||
background-image : url("images/vgrad_light_rev.png");
|
background-color : #ecf4ff;
|
||||||
background-color : white;
|
|
||||||
background-position : top left;
|
|
||||||
background-repeat : repeat-x;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table.innerLoginForm {
|
table.innerLoginForm {
|
||||||
border : 1px solid #f0f0f0;
|
border : 1px solid #88b0f0;
|
||||||
padding : 50px;
|
padding : 50px;
|
||||||
background-color : white;
|
background-color : white;
|
||||||
}
|
}
|
||||||
|
@ -828,7 +819,7 @@ span.contentPreview {
|
||||||
}
|
}
|
||||||
|
|
||||||
span.contentPreview:hover {
|
span.contentPreview:hover {
|
||||||
color : #5050aa;
|
color : #4684ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.headlinesList td.hlMarkedPic {
|
table.headlinesList td.hlMarkedPic {
|
||||||
|
@ -964,7 +955,7 @@ div.cdmHeader, div.cdmHeader a {
|
||||||
}
|
}
|
||||||
|
|
||||||
div.cdmHeader a:hover {
|
div.cdmHeader a:hover {
|
||||||
color : #5050aa;
|
color : #4684ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.cdmContent {
|
div.cdmContent {
|
||||||
|
@ -982,7 +973,7 @@ img.closeButton {
|
||||||
|
|
||||||
span.groupPrompt {
|
span.groupPrompt {
|
||||||
font-size : x-small;
|
font-size : x-small;
|
||||||
color : #505050;
|
color : #4684ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.userFeedList {
|
ul.userFeedList {
|
||||||
|
@ -990,6 +981,7 @@ ul.userFeedList {
|
||||||
overflow : auto;
|
overflow : auto;
|
||||||
list-style-type : none;
|
list-style-type : none;
|
||||||
border : 1px solid #88b0f0;
|
border : 1px solid #88b0f0;
|
||||||
|
background-color : white;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* #browseBigFeedList li.oddSelected {
|
/* #browseBigFeedList li.oddSelected {
|
||||||
|
@ -1005,6 +997,7 @@ ul.browseFeedList {
|
||||||
margin : 0px 0px 5px 0px;
|
margin : 0px 0px 5px 0px;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
border : 1px solid #88b0f0;
|
border : 1px solid #88b0f0;
|
||||||
|
background-color : white;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.browseFeedList li {
|
ul.browseFeedList li {
|
||||||
|
@ -1052,7 +1045,7 @@ div.browserFeedInfo div.detailsPart {
|
||||||
}
|
}
|
||||||
|
|
||||||
div.cdmContent a {
|
div.cdmContent a {
|
||||||
color : #5050aa;
|
color : #4684ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.cdmContent a:hover {
|
div.cdmContent a:hover {
|
||||||
|
@ -1065,7 +1058,7 @@ a.cdmToggleLink {
|
||||||
}
|
}
|
||||||
|
|
||||||
a.cdmToggleLink:hover {
|
a.cdmToggleLink:hover {
|
||||||
color : #5050aa;
|
color : #4684ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.noborder {
|
.noborder {
|
||||||
|
|
Loading…
Reference in New Issue