pref-prefs: fix markup
This commit is contained in:
parent
52d77dee62
commit
cbd119c7a3
|
@ -788,10 +788,10 @@ class Pref_Prefs extends Handler_Protected {
|
|||
<label class='checkbox plugin-desc' id='PLABEL-$name'>
|
||||
<input disabled='1'
|
||||
dojoType='dijit.form.CheckBox' $checked type='checkbox'>
|
||||
".htmlspecialchars($about[1]);
|
||||
".htmlspecialchars($about[1]). "</label>";
|
||||
|
||||
if (@$about[4]) {
|
||||
print "<button dojoType='dijit.form.Button' style='float : left' class='alt-info'
|
||||
print "<button dojoType='dijit.form.Button' class='alt-info'
|
||||
onclick='window.open(\"".htmlspecialchars($about[4])."\")'>
|
||||
<i class='material-icons'>open_in_new</i> ".__("More info...")."</button>";
|
||||
}
|
||||
|
|
|
@ -1463,7 +1463,7 @@ body.ttrss_prefs fieldset.prefs-set label:first-of-type {
|
|||
}
|
||||
body.ttrss_prefs fieldset.prefs-set label.plugin-desc {
|
||||
width: 600px;
|
||||
margin-right: 100px;
|
||||
margin-right: 150px;
|
||||
display: inline-block;
|
||||
}
|
||||
body.ttrss_prefs fieldset.prefs-set label.plugin-desc .dijitCheckBox {
|
||||
|
|
|
@ -87,7 +87,7 @@ body.ttrss_prefs {
|
|||
|
||||
label.plugin-desc {
|
||||
width : 600px;
|
||||
margin-right : 100px;
|
||||
margin-right : 150px;
|
||||
display : inline-block;
|
||||
|
||||
.dijitCheckBox {
|
||||
|
|
|
@ -5,7 +5,8 @@ class Search_Sphinx extends Plugin {
|
|||
return array(1.0,
|
||||
"Delegate searching for articles to Sphinx (don't forget to set options in config.php)",
|
||||
"hoelzro",
|
||||
true);
|
||||
true,
|
||||
"https://git.tt-rss.org/fox/tt-rss/wiki/SphinxSearch");
|
||||
}
|
||||
|
||||
function init($host) {
|
||||
|
@ -61,4 +62,4 @@ class Search_Sphinx extends Plugin {
|
|||
function api_version() {
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1464,7 +1464,7 @@ body.ttrss_prefs fieldset.prefs-set label:first-of-type {
|
|||
}
|
||||
body.ttrss_prefs fieldset.prefs-set label.plugin-desc {
|
||||
width: 600px;
|
||||
margin-right: 100px;
|
||||
margin-right: 150px;
|
||||
display: inline-block;
|
||||
}
|
||||
body.ttrss_prefs fieldset.prefs-set label.plugin-desc .dijitCheckBox {
|
||||
|
|
|
@ -1464,7 +1464,7 @@ body.ttrss_prefs fieldset.prefs-set label:first-of-type {
|
|||
}
|
||||
body.ttrss_prefs fieldset.prefs-set label.plugin-desc {
|
||||
width: 600px;
|
||||
margin-right: 100px;
|
||||
margin-right: 150px;
|
||||
display: inline-block;
|
||||
}
|
||||
body.ttrss_prefs fieldset.prefs-set label.plugin-desc .dijitCheckBox {
|
||||
|
|
Loading…
Reference in New Issue