Fixes #1398 Fixed dot size of plugin manager when in line display

Now the size of the dots to display the plugin informations is the same size in compact display and in tile display.
This commit is contained in:
Matthieu Leproux
2021-05-06 09:25:56 +02:00
parent 4b6c64be3b
commit c38ceb9b7f
2 changed files with 0 additions and 9 deletions

View File

@@ -4,8 +4,6 @@ function setDisplayCompact() {
$(".pluginActions").show();
$(".pluginActionsSmallIcons").hide();
$(".PluginOptionsIcons a").removeClass("biggerIcon");
$(".pluginActionsSmallIcons a").removeClass("biggerIcon");
$(".pluginMiniBoxNameCell").removeClass("pluginMiniBoxNameCellCompact");
normalTitle();
@@ -17,9 +15,6 @@ function setDisplayTile() {
$(".pluginActions").hide();
$(".pluginActionsSmallIcons").show();
$(".PluginOptionsIcons a").addClass("biggerIcon");
$(".pluginActionsSmallIcons a").addClass("biggerIcon");
$(".pluginMiniBoxNameCell").addClass("pluginMiniBoxNameCellCompact");
reduceTitle()

View File

@@ -461,10 +461,6 @@ jQuery(".pluginMiniBox").each(function(index){
transition: 0.2s;
}
.biggerIcon {
transform: scale(1.5) !important;
}
.pluginActionsSmallIcons {
position: absolute;
right: 20px;