mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:25:55 +00:00
css: insensitive -> text-muted
This commit is contained in:
@@ -1487,7 +1487,7 @@ class Pref_Feeds extends Handler_Protected {
|
||||
"onclick=\"CommonDialogs.editFeed(".$line["id"].")\">".
|
||||
htmlspecialchars($line["title"])."</a>";
|
||||
|
||||
print "</td><td class='insensitive' align='right'>";
|
||||
print "</td><td class='text-muted' align='right'>";
|
||||
print make_local_datetime($line['last_article'], false);
|
||||
print "</td>";
|
||||
print "</tr>";
|
||||
@@ -1544,7 +1544,7 @@ class Pref_Feeds extends Handler_Protected {
|
||||
"onclick=\"CommonDialogs.editFeed(".$line["id"].")\">".
|
||||
htmlspecialchars($line["title"])."</a>: ";
|
||||
|
||||
print "<span class=\"insensitive\">";
|
||||
print "<span class=\"text-muted\">";
|
||||
print htmlspecialchars($line["last_error"]);
|
||||
print "</span>";
|
||||
|
||||
|
||||
@@ -148,7 +148,7 @@ class Pref_Filters extends Handler_Protected {
|
||||
|
||||
$tmp = "<li><span class='title'>" . $line["title"] . "</span><br/>" .
|
||||
"<span class='feed'>" . $line['feed_title'] . "</span>, <span class='date'>" . mb_substr($line["date_entered"], 0, 16) . "</span>" .
|
||||
"<div class='preview insensitive'>" . $content_preview . "</div>" .
|
||||
"<div class='preview text-muted'>" . $content_preview . "</div>" .
|
||||
"</li>";
|
||||
|
||||
array_push($rv, $tmp);
|
||||
|
||||
@@ -685,7 +685,7 @@ class Pref_Prefs extends Handler_Protected {
|
||||
}
|
||||
|
||||
if ($item['help_text'])
|
||||
print "<div class='help-text insensitive'><label for='CB_$pref_name'>".$item['help_text']."</label></div>";
|
||||
print "<div class='help-text text-muted'><label for='CB_$pref_name'>".$item['help_text']."</label></div>";
|
||||
|
||||
print "</fieldset>";
|
||||
}
|
||||
@@ -785,7 +785,7 @@ class Pref_Prefs extends Handler_Protected {
|
||||
|
||||
print "<fieldset class='prefs plugin'>
|
||||
<label>$name:</label>
|
||||
<label class='checkbox description insensitive' id='PLABEL-$name'>
|
||||
<label class='checkbox description text-muted' id='PLABEL-$name'>
|
||||
<input disabled='1'
|
||||
dojoType='dijit.form.CheckBox' $checked type='checkbox'>
|
||||
".htmlspecialchars($about[1]). "</label>";
|
||||
@@ -824,7 +824,7 @@ class Pref_Prefs extends Handler_Protected {
|
||||
|
||||
print "<fieldset class='prefs plugin'>
|
||||
<label>$name:</label>
|
||||
<label class='checkbox description insensitive' id='PLABEL-$name'>
|
||||
<label class='checkbox description text-muted' id='PLABEL-$name'>
|
||||
<input name='plugins[]' value='$name' dojoType='dijit.form.CheckBox' $checked $disabled type='checkbox'>
|
||||
".htmlspecialchars($about[1])."</label>";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user