diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index 5419b42dc22029391858e405c5717918ed156a6c..277334ac9f230db0570c3943435ec70a9060e834 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -808,26 +808,32 @@ class Pref_Prefs extends Handler_Protected {
 						<input disabled='1' dojoType='dijit.form.CheckBox' <?= $is_checked ?> type='checkbox'><?= htmlspecialchars($about[1]) ?>
 					</label>
 
+					<?php if (count($tmppluginhost->get_all($plugin)) > 0) {
+						if (in_array($name, $system_enabled)) { ?>
+							<button dojoType='dijit.form.Button' title="<?= __("Clear data") ?>"
+								onclick='Helpers.Plugins.clearPluginData("<?= htmlspecialchars($name) ?>")'>
+									<i class='material-icons'>clear</i></button>
+						<?php }
+					} ?>
+
+					<?php if ($about[4] ?? false) { ?>
+						<button dojoType='dijit.form.Button' class='alt-info' title="<?= __("More info...") ?>"
+								onclick='window.open("<?= htmlspecialchars($about[4]) ?>")'>
+									<i class='material-icons'>help</i></button>
+					<?php } ?>
+
 					<?php if ($_SESSION["access_level"] >= 10) { ?>
-						<button style="display : none"
+						<button style="display : none" class='alt-warning' title="<?= __("Update") ?>"
 								data-update-btn-for-plugin="<?= htmlspecialchars($name) ?>" dojoType='dijit.form.Button'
 								onclick='Helpers.Plugins.update("<?= htmlspecialchars($name) ?>")'>
 							<?= \Controls\icon("update") ?>
-							<?= __("Update") ?>
 						</button>
 					<?php } ?>
 
-					<?php if ($about[4] ?? false) { ?>
-						<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>
-					<?php } ?>
-
 					<?php if ($_SESSION["access_level"] >= 10 && $is_local) { ?>
-						<button dojoType='dijit.form.Button'
+						<button dojoType='dijit.form.Button' title="<?= __("Uninstall") ?>"
 								onclick='Helpers.Plugins.uninstall("<?= htmlspecialchars($name) ?>")'>
 							<?= \Controls\icon("delete") ?>
-							<?= __("Uninstall") ?>
 						</button>
 					<?php } ?>
 
@@ -876,34 +882,32 @@ class Pref_Prefs extends Handler_Protected {
 						</input>
 					</label>
 
-					<?php if ($_SESSION["access_level"] >= 10) { ?>
-						<button style="display : none"
-								data-update-btn-for-plugin="<?= htmlspecialchars($name) ?>" dojoType='dijit.form.Button'
-								onclick='Helpers.Plugins.update("<?= htmlspecialchars($name) ?>")'>
-							<?= \Controls\icon("update") ?>
-							<?= __("Update") ?>
-						</button>
-					<?php } ?>
-
 					<?php if (count($tmppluginhost->get_all($plugin)) > 0) {
 						if (in_array($name, $system_enabled) || in_array($name, $user_enabled)) { ?>
-							<button dojoType='dijit.form.Button'
+							<button dojoType='dijit.form.Button' title="<?= __("Clear data") ?>"
 								onclick='Helpers.Plugins.clearPluginData("<?= htmlspecialchars($name) ?>")'>
-									<i class='material-icons'>clear</i> <?= __("Clear data") ?></button>
+									<i class='material-icons'>clear</i></button>
 						<?php }
 					} ?>
 
 					<?php if ($about[4] ?? false) { ?>
-						<button dojoType='dijit.form.Button' class='alt-info'
+						<button dojoType='dijit.form.Button' class='alt-info' title="<?= __("More info...") ?>"
 								onclick='window.open("<?= htmlspecialchars($about[4]) ?>")'>
-									<i class='material-icons'>open_in_new</i> <?= __("More info...") ?></button>
+									<i class='material-icons'>help</i></button>
+					<?php } ?>
+
+					<?php if ($_SESSION["access_level"] >= 10) { ?>
+						<button style="display : none" class='alt-warning' title="<?= __("Update") ?>"
+								data-update-btn-for-plugin="<?= htmlspecialchars($name) ?>" dojoType='dijit.form.Button'
+								onclick='Helpers.Plugins.update("<?= htmlspecialchars($name) ?>")'>
+							<?= \Controls\icon("update") ?>
+						</button>
 					<?php } ?>
 
 					<?php if ($_SESSION["access_level"] >= 10 && $is_local) { ?>
-						<button dojoType='dijit.form.Button'
+						<button dojoType='dijit.form.Button' title="<?= __("Uninstall") ?>"
 								onclick='Helpers.Plugins.uninstall("<?= htmlspecialchars($name) ?>")'>
 							<?= \Controls\icon("delete") ?>
-							<?= __("Uninstall") ?>
 						</button>
 					<?php } ?>
 
@@ -986,7 +990,7 @@ class Pref_Prefs extends Handler_Protected {
 						<?= __("Enable selected plugins") ?>
 					</button>
 					<?php if ($_SESSION["access_level"] >= 10) { ?>
-						<button class="update-all-plugins-btn" style="display : none" dojoType='dijit.form.Button' onclick="Helpers.Plugins.update()">
+						<button class="update-all-plugins-btn alt-warning" style="display : none" dojoType='dijit.form.Button' onclick="Helpers.Plugins.update()">
 							<?= \Controls\icon("update") ?>
 							<?= __("Update local plugins") ?>
 						</button>
diff --git a/themes/compact.css b/themes/compact.css
index 1f9d457dcd660c6d96d0236a92849dd4fdd558fc..9656cd383d4a99a64dff936814865ae7f2c81737 100644
--- a/themes/compact.css
+++ b/themes/compact.css
@@ -1506,7 +1506,7 @@ body.ttrss_prefs fieldset.prefs .help-text-bottom {
   margin-top: 10px;
 }
 body.ttrss_prefs fieldset.plugin label.description {
-  width: 600px;
+  width: 550px;
   margin-right: 150px;
   display: inline-block;
 }
diff --git a/themes/compact_night.css b/themes/compact_night.css
index 8f2507f4fbad0fc9a76931080964cadd27b84241..987f98b1bcac29cfe5863abad1686b9ceccbcac6 100644
--- a/themes/compact_night.css
+++ b/themes/compact_night.css
@@ -1506,7 +1506,7 @@ body.ttrss_prefs fieldset.prefs .help-text-bottom {
   margin-top: 10px;
 }
 body.ttrss_prefs fieldset.plugin label.description {
-  width: 600px;
+  width: 550px;
   margin-right: 150px;
   display: inline-block;
 }
diff --git a/themes/light.css b/themes/light.css
index c1e5201d21673522cf5d9bdbe0dc4d5b900102a9..12ef7efd22697e64713c4daf4306dc2f2f77bc8a 100644
--- a/themes/light.css
+++ b/themes/light.css
@@ -1506,7 +1506,7 @@ body.ttrss_prefs fieldset.prefs .help-text-bottom {
   margin-top: 10px;
 }
 body.ttrss_prefs fieldset.plugin label.description {
-  width: 600px;
+  width: 550px;
   margin-right: 150px;
   display: inline-block;
 }
diff --git a/themes/light/prefs.less b/themes/light/prefs.less
index 5103883912c6325770f1dba6d36db935abf89203..3fe328ec555b6d8817a9ade975634f0294295a3e 100644
--- a/themes/light/prefs.less
+++ b/themes/light/prefs.less
@@ -96,7 +96,7 @@ body.ttrss_prefs {
 
 	fieldset.plugin {
 		label.description {
-			width : 600px;
+			width : 550px;
 			margin-right : 150px;
 			display : inline-block;
 
diff --git a/themes/night.css b/themes/night.css
index 1000586cfe69ed063482c6d6d48a1233f1340f0a..9a2ee53fa6524163d5013045ef8ffc9c80477c2b 100644
--- a/themes/night.css
+++ b/themes/night.css
@@ -1507,7 +1507,7 @@ body.ttrss_prefs fieldset.prefs .help-text-bottom {
   margin-top: 10px;
 }
 body.ttrss_prefs fieldset.plugin label.description {
-  width: 600px;
+  width: 550px;
   margin-right: 150px;
   display: inline-block;
 }
diff --git a/themes/night_blue.css b/themes/night_blue.css
index 4df5f54abf13148a8d2d368d03108802528e2b1d..80f173c7e1e2a1b84669a25041fd18c6d8a0bda3 100644
--- a/themes/night_blue.css
+++ b/themes/night_blue.css
@@ -1507,7 +1507,7 @@ body.ttrss_prefs fieldset.prefs .help-text-bottom {
   margin-top: 10px;
 }
 body.ttrss_prefs fieldset.plugin label.description {
-  width: 600px;
+  width: 550px;
   margin-right: 150px;
   display: inline-block;
 }