remove dialogNotice; tweak dialog appearance a bit

This commit is contained in:
Andrew Dolgov 2013-03-28 14:01:25 +04:00
parent 0f2c475539
commit fcef9eeae0
6 changed files with 28 additions and 21 deletions

View file

@ -29,6 +29,10 @@ class Backend extends Handler {
array_push($omap[$action], $sequence); array_push($omap[$action], $sequence);
} }
print_notice("<a target=\"_blank\" href=\"http://tt-rss.org/wiki/InterfaceTips\">".
__("Other interface tips are available in the Tiny Tiny RSS wiki.") .
"</a>");
print "<ul class='helpKbList' id='helpKbList'>"; print "<ul class='helpKbList' id='helpKbList'>";
print "<h2>" . __("Keyboard Shortcuts") . "</h2>"; print "<h2>" . __("Keyboard Shortcuts") . "</h2>";
@ -79,10 +83,6 @@ class Backend extends Handler {
} }
print "</ul>"; print "</ul>";
print "<p><a target=\"_blank\" href=\"http://tt-rss.org/wiki/InterfaceTips\">".
__("Other interface tips are available in the Tiny Tiny RSS wiki.") .
"</a></p>";
} }
function help() { function help() {

View file

@ -557,7 +557,7 @@ class Dlg extends Handler_Protected {
$url_path = htmlspecialchars($this->params[2]) . "&key=" . $key; $url_path = htmlspecialchars($this->params[2]) . "&key=" . $key;
print "<div class=\"dialogNotice\">" . __("You can view this feed as RSS using the following URL:") . "</div>"; print "<h2>".__("You can view this feed as RSS using the following URL:")."</h2>";
print "<div class=\"tagCloudContainer\">"; print "<div class=\"tagCloudContainer\">";
print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>"; print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
@ -628,9 +628,7 @@ class Dlg extends Handler_Protected {
$value = str_replace("<br/>", "\n", $value); $value = str_replace("<br/>", "\n", $value);
print "<div class=\"dialogNotice\">"; print_notice(T_sprintf("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">This file</a> can be used as a baseline.", "tt-rss.css"));
print T_sprintf("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">This file</a> can be used as a baseline.", "tt-rss.css");
print "</div>";
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">"; print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">"; print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";

View file

@ -739,7 +739,9 @@ class Pref_Feeds extends Handler_Protected {
$feed_ids = db_escape_string($this->link, $_REQUEST["ids"]); $feed_ids = db_escape_string($this->link, $_REQUEST["ids"]);
print "<div class=\"dialogNotice\">" . __("Enable the options you wish to apply using checkboxes on the right:") . "</div>"; print_notice("Enable the options you wish to apply using checkboxes on the right:");
print "<p>";
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"ids\" value=\"$feed_ids\">"; print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"ids\" value=\"$feed_ids\">";
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">"; print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
@ -1520,7 +1522,7 @@ class Pref_Feeds extends Handler_Protected {
GROUP BY ttrss_feeds.title, ttrss_feeds.id, ttrss_feeds.site_url, ttrss_feeds.feed_url GROUP BY ttrss_feeds.title, ttrss_feeds.id, ttrss_feeds.site_url, ttrss_feeds.feed_url
ORDER BY last_article"); ORDER BY last_article");
print "<div class=\"dialogNotice\">" . __("These feeds have not been updated with new content for 3 months (oldest first):") . "</div>"; print "<h2" .__("These feeds have not been updated with new content for 3 months (oldest first):") . "</h2>";
print "<div dojoType=\"dijit.Toolbar\">"; print "<div dojoType=\"dijit.Toolbar\">";
print "<div dojoType=\"dijit.form.DropDownButton\">". print "<div dojoType=\"dijit.form.DropDownButton\">".
@ -1586,7 +1588,8 @@ class Pref_Feeds extends Handler_Protected {
} }
function feedsWithErrors() { function feedsWithErrors() {
print "<div class=\"dialogNotice\">" . __("These feeds have not been updated because of errors:") . "</div>"; print "<h2>" . __("These feeds have not been updated because of errors:") .
"</h2>";
$result = db_query($this->link, "SELECT id,title,feed_url,last_error,site_url $result = db_query($this->link, "SELECT id,title,feed_url,last_error,site_url
FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]); FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);

View file

@ -2894,19 +2894,19 @@
function format_warning($msg, $id = "") { function format_warning($msg, $id = "") {
global $link; global $link;
return "<div class=\"warning\" id=\"$id\"> return "<div class=\"warning\" id=\"$id\">
<img src=\"images/sign_excl.svg\">$msg</div>"; <img src=\"images/sign_excl.svg\"><div class='inner'>$msg</div></div>";
} }
function format_notice($msg, $id = "") { function format_notice($msg, $id = "") {
global $link; global $link;
return "<div class=\"notice\" id=\"$id\"> return "<div class=\"notice\" id=\"$id\">
<img src=\"images/sign_info.svg\">$msg</div>"; <img src=\"images/sign_info.svg\"><div class='inner'>$msg</div></div>";
} }
function format_error($msg, $id = "") { function format_error($msg, $id = "") {
global $link; global $link;
return "<div class=\"error\" id=\"$id\"> return "<div class=\"error\" id=\"$id\">
<img src=\"images/sign_excl.svg\">$msg</div>"; <img src=\"images/sign_excl.svg\"><div class='inner'>$msg</div></div>";
} }
function print_notice($msg) { function print_notice($msg) {

View file

@ -46,7 +46,7 @@ class Share extends Plugin {
AND owner_uid = " . $_SESSION['uid']); AND owner_uid = " . $_SESSION['uid']);
} }
print __("You can share this article by the following unique URL:"); print "<h2>". __("You can share this article by the following unique URL:") . "</h2>";
$url_path = get_self_url_prefix(); $url_path = get_self_url_prefix();
$url_path .= "/public.php?op=share&key=$uuid"; $url_path .= "/public.php?op=share&key=$uuid";

View file

@ -299,11 +299,15 @@ div.filterTestHolder {
div.notice, div.warning, div.error { div.notice, div.warning, div.error {
padding : 4px 10px 4px 4px; padding : 4px 10px 4px 4px;
display : inline-block; display : inline-block;
margin : 2px 0px 2px 0px; margin : 2px 0px 4px 0px;
font-size : 12px; font-size : 12px;
box-shadow : 0px 0px 2px #ccc; box-shadow : 0px 0px 2px #ccc;
} }
div.notice div.inner, div.warning div.inner, div.error div.inner {
vertical-align : middle;
}
div.notice { div.notice {
background : #ecf4ff; background : #ecf4ff;
} }
@ -318,6 +322,7 @@ div.error {
div.warning img, div.notice img, div.error img { div.warning img, div.notice img, div.error img {
margin-right : 4px; margin-right : 4px;
float : left;
vertical-align : middle; vertical-align : middle;
} }
@ -899,6 +904,12 @@ img.feedIcon, img.tinyFeedIcon {
border : 1px solid #c0c0c0; border : 1px solid #c0c0c0;
} }
.dijitDialog h2 {
margin-top : 0px;
margin-bottom : 4px;
border-width : 0px;
}
.player { .player {
display : inline-block; display : inline-block;
color : gray; color : gray;
@ -930,11 +941,6 @@ img.feedIcon, img.tinyFeedIcon {
color : gray; color : gray;
} }
div.dialogNotice {
margin-bottom : 5px;
color : gray;
}
ul#filterDlg_Matches, ul#filterDlg_Actions { ul#filterDlg_Matches, ul#filterDlg_Actions {
max-height : 100px; max-height : 100px;
overflow : auto; overflow : auto;