Skip to content
Snippets Groups Projects
Verified Commit 189e5508 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: add part attribute to field-set and remove min-with from the datatable

parent e2cac22c
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<li><a href="https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/285">Issue #285</a></li> <li><a href="https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/285">Issue #285</a></li>
<li><a href="/">Back to overview</a></li> <li><a href="/">Back to overview</a></li>
</ul> </ul>
<main> <main style="width: 300px">
<monster-datasource-rest id="ds277" <monster-datasource-rest id="ds277"
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
overflow-y: visible; overflow-y: visible;
padding: 20px; padding: 20px;
box-sizing: border-box; box-sizing: border-box;
min-width: fit-content;
@mixin text; @mixin text;
& .bar { & .bar {
......
This diff is collapsed.
...@@ -404,18 +404,18 @@ function getTemplate() { ...@@ -404,18 +404,18 @@ function getTemplate() {
// language=HTML // language=HTML
return ` return `
<div data-monster-role="control" part="control"> <div data-monster-role="control" part="control">
<div data-monster-role="header"> <div data-monster-role="header" part="header">
<div data-monster-replace="path:labels.title" data-monster-role="title"></div> <div data-monster-replace="path:labels.title" data-monster-role="title" part="title"></div>
<div data-monster-role="extended-switch"> <div data-monster-role="extended-switch" part="extended-switch">
<label data-monster-replace="path:labels.toggleSwitchLabel"></label> <label data-monster-replace="path:labels.toggleSwitchLabel"></label>
<monster-toggle-switch></monster-toggle-switch> <monster-toggle-switch></monster-toggle-switch>
</div> </div>
</div> </div>
<div data-monster-role="container"> <div data-monster-role="container" part="container">
<div class="collapse-alignment"> <div class="collapse-alignment" part="content">
<slot part="content"></slot> <slot part="content"></slot>
</div> </div>
<monster-collapse data-monster-role="collapse"> <monster-collapse data-monster-role="collapse" part="collapse">
<slot name="extended" part="extended"></slot> <slot name="extended" part="extended"></slot>
</monster-collapse> </monster-collapse>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment