related to #1498 icon margin adjustment for album action in tile mode

This commit is contained in:
Matthieu Leproux
2021-10-04 12:14:38 +02:00
parent c63c86cffc
commit 66a2d4d9ff
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -15,7 +15,7 @@ function setDisplayCompact() {
color : "#848484",
});
});
$(".categoryBox").removeClass("line_cat");
$(".categoryBox").removeClass("line_cat").removeClass("tile_cat");
$(".categoryBox").css({
minWidth: "230px",
maxWidth: "350px",
@@ -163,7 +163,7 @@ function setDisplayLine() {
});
/************************************/
$(".categoryBox").addClass("line_cat");
$(".categoryBox").addClass("line_cat").removeClass("tile_cat");
$(".categoryBox").css({
minWidth: "90%",
maxWidth: "100%",
@@ -287,7 +287,7 @@ function setDisplayTile() {
$(".addAlbum.input-mode form").css({
transitionDelay: "0s",
});
$(".categoryBox").removeClass("line_cat");
$(".categoryBox").removeClass("line_cat").addClass("tile_cat");
$(".categoryBox").css({
minWidth: "220px",
maxWidth: "280px",
+2 -2
View File
@@ -239,10 +239,10 @@ TABLE.languages TR TD { padding: 7px 20px; }
.albumActions a span, .albumActions span span{
margin: 10px;
}
.albumActions a span {
.tile_cat .albumActions a span {
margin-left: 20px;
}
.albumActions .iconLegend {
.tile_cat .albumActions .iconLegend {
margin-left: 0;
}
.addAlbum {