* Change icons size to 20px in the icon panel

Approved-by: Paulo Veiga
This commit is contained in:
Matias Arriola 2022-01-04 16:47:01 +00:00 committed by Paulo Veiga
parent 36aa4fc7ab
commit 5c5aefea64
2 changed files with 5 additions and 3 deletions

View File

@ -25,7 +25,8 @@ class IconPanel extends ToolbarPaneItem {
}
buildPanel() {
const content = $('<div class="toolbarPanel" id="IconsPanel"></div>').css({ width: 245, height: 245 });
const content = $('<div class="toolbarPanel" id="IconsPanel"></div>')
.css({ width: 295, height: 305 });
content.on('click', (event) => {
event.stopPropagation();
});

View File

@ -136,8 +136,8 @@ div.shareModalDialog {
}
.panelIcon {
width: 16px;
height: 16px;
width: 20px;
height: 20px;
margin-left: 4px;
margin-top: 3px;
cursor: pointer
@ -159,6 +159,7 @@ div.shareModalDialog {
background: #e4e2d2;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
border: 3px double #bebebe;
max-width: none;
}
.popoverGray.bottom .arrow:after {