mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
fix wired icon-sized in tree (by defaulting img in et2-image to width: 16px and not max-width: 100%)
This commit is contained in:
parent
e4b073dfa3
commit
3f80021c8e
@ -177,7 +177,7 @@ export class Et2Image extends Et2Widget(LitElement) implements et2_IDetachedDOM
|
|||||||
<img ${this.id ? html`id="${this.id}"` : ''}
|
<img ${this.id ? html`id="${this.id}"` : ''}
|
||||||
src="${url}"
|
src="${url}"
|
||||||
alt="${this.label}"
|
alt="${this.label}"
|
||||||
style="${this.height ? 'height: 100%; width: auto' : (this.width ? 'width: 100%; height: auto' : 'max-width: 100%; height: auto')}"
|
style="${this.height ? 'height: 100%; width: auto' : (this.width ? 'width: 100%; height: auto' : 'width: 16px; height: auto')}"
|
||||||
part="image"
|
part="image"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
title="${this.statustext || this.label}"
|
title="${this.statustext || this.label}"
|
||||||
|
@ -239,9 +239,10 @@ export class Et2Tree extends Et2WidgetWithSelectMixin(LitElement) implements Fin
|
|||||||
/* Stop icon from shrinking if there's not enough space */
|
/* Stop icon from shrinking if there's not enough space */
|
||||||
/* increase font size by 2px this was previously done in pixelegg css but document css can not reach shadow root*/
|
/* increase font size by 2px this was previously done in pixelegg css but document css can not reach shadow root*/
|
||||||
|
|
||||||
sl-tree-item sl-icon {
|
sl-tree-item et2-image {
|
||||||
flex: 0 0 1em;
|
flex: 0 0 1em;
|
||||||
font-size: calc(100% + 2px);
|
font-size: calc(100% + 2px);
|
||||||
|
padding-right: .4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
::part(label) {
|
::part(label) {
|
||||||
|
@ -6094,6 +6094,7 @@ table.egwGridView_grid img {
|
|||||||
}
|
}
|
||||||
table.egwGridView_grid et2-image {
|
table.egwGridView_grid et2-image {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
table.egwGridView_grid tbody {
|
table.egwGridView_grid tbody {
|
||||||
border-bottom: 1px solid #000000;
|
border-bottom: 1px solid #000000;
|
||||||
|
@ -6097,6 +6097,7 @@ table.egwGridView_grid img {
|
|||||||
}
|
}
|
||||||
table.egwGridView_grid et2-image {
|
table.egwGridView_grid et2-image {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
table.egwGridView_grid tbody {
|
table.egwGridView_grid tbody {
|
||||||
border-bottom: 1px solid #000000;
|
border-bottom: 1px solid #000000;
|
||||||
|
@ -6076,6 +6076,7 @@ table.egwGridView_grid img {
|
|||||||
}
|
}
|
||||||
table.egwGridView_grid et2-image {
|
table.egwGridView_grid et2-image {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
table.egwGridView_grid tbody {
|
table.egwGridView_grid tbody {
|
||||||
border-bottom: 1px solid #000000;
|
border-bottom: 1px solid #000000;
|
||||||
|
@ -6087,6 +6087,7 @@ table.egwGridView_grid img {
|
|||||||
}
|
}
|
||||||
table.egwGridView_grid et2-image {
|
table.egwGridView_grid et2-image {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
table.egwGridView_grid tbody {
|
table.egwGridView_grid tbody {
|
||||||
border-bottom: 1px solid #000000;
|
border-bottom: 1px solid #000000;
|
||||||
|
@ -178,7 +178,10 @@ table.egwGridView_grid
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
img{ .dimension_height_s;}
|
img{ .dimension_height_s;}
|
||||||
et2-image { width: 16px; }
|
et2-image {
|
||||||
|
width: 16px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
tbody {
|
tbody {
|
||||||
border-bottom: 1px solid @lightgray;
|
border-bottom: 1px solid @lightgray;
|
||||||
|
@ -6108,6 +6108,7 @@ table.egwGridView_grid img {
|
|||||||
}
|
}
|
||||||
table.egwGridView_grid et2-image {
|
table.egwGridView_grid et2-image {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
table.egwGridView_grid tbody {
|
table.egwGridView_grid tbody {
|
||||||
border-bottom: 1px solid #000000;
|
border-bottom: 1px solid #000000;
|
||||||
|
Loading…
Reference in New Issue
Block a user