Moin,
für alle denen die Bilder in der neuen Arikel UI zu klein sind hier ein Tempermonkey script:
// ==UserScript==
// @name Plentymarkets - Größere Artikelbilder
// @namespace http://tampermonkey.net/
// @version 2.0
// @match ://pxxx.my.plentysystems.com/
// @grant GM_addStyle
// @run-at document-idle
// ==/UserScript==
(function() {
‚use strict‘;
GM_addStyle(`
.imageContainer {
width: 100px !important;
height: 100px !important;
}
.imageContainer img {
width: 100px !important;
height: 100px !important;
object-fit: contain !important;
}
.mat-mdc-cell.cdk-cell.mat-column-image {
height: 110px !important;
padding: 5px !important;
}
`);
})();
bei @match eure plenty URL eintragen.
Nutzung auf eigene Gefahr.
Schönes Wochenende ![]()
Gruß Marco
