summaryrefslogtreecommitdiff
path: root/classes/dlg.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-07 14:03:33 +0300
committerAndrew Dolgov <[email protected]>2018-12-07 14:03:33 +0300
commita68b15060195b42eea36f29d2837bb920e35f07a (patch)
treed7df0deae0b0b0d3974e66fd3c5abd6ead029b35 /classes/dlg.php
parente5dfc20939a74674fb01fa4688c7dbe1800bc22d (diff)
remove separate classes for various panels, unify under .panel
remove a few other unnecessary css classes/ids
Diffstat (limited to 'classes/dlg.php')
-rw-r--r--classes/dlg.php11
1 files changed, 4 insertions, 7 deletions
diff --git a/classes/dlg.php b/classes/dlg.php
index 7ac18bb90..ed0d16322 100644
--- a/classes/dlg.php
+++ b/classes/dlg.php
@@ -16,15 +16,12 @@ class Dlg extends Handler_Protected {
function importOpml() {
print __("If you have imported labels and/or filters, you might need to reload preferences to see your new data.") . "</p>";
- print "<div class=\"prefFeedOPMLHolder\">";
-
- print "<ul class='nomarks'>";
+ print "<div class='panel panel-scrollable'>";
$opml = new Opml($_REQUEST);
$opml->opml_import($_SESSION["uid"]);
- print "</ul>";
print "</div>";
print "<div align='center'>";
@@ -43,7 +40,7 @@ class Dlg extends Handler_Protected {
print __("Your Public OPML URL is:");
- print "<div class=\"tagCloudContainer\">";
+ print "<div class='panel'>";
print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
print "</div>";
@@ -94,7 +91,7 @@ class Dlg extends Handler_Protected {
}
function printTagCloud() {
- print "<div class=\"tagCloudContainer\">";
+ print "<div class='panel'>";
// from here: http://www.roscripts.com/Create_tag_cloud-71.html
@@ -170,7 +167,7 @@ class Dlg extends Handler_Protected {
print "<div>".T_sprintf("%s can be accessed via the following secret URL:", $feed_title)."</div>";
- print "<div class=\"tagCloudContainer\">";
+ print "<div class='panel'>";
print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
print "</div>";