Skip to content
Snippets Groups Projects
Commit 67bd0e38 authored by Lukáš Vlček's avatar Lukáš Vlček
Browse files

Re #11453 - design overview upraven

parent ecd33604
No related branches found
No related tags found
2 merge requests!59Konec 6. iterace,!56Re #11441 - oprava eventů v iframes, úpravy designu
Pipeline #10157 passed
......@@ -2,6 +2,7 @@
display: flex;
flex-wrap: nowrap;
flex-direction: row;
border-bottom: 1px dotted lightgray;
}
.dialog-container {
......
......@@ -3,7 +3,14 @@
flex-wrap: nowrap;
flex-direction: row;
border-bottom: 2px ridge #E8E8E8;
/*border-bottom: 2px ridge #E8E8E8;*/
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15) inset;
padding: 10px;
margin-left: -8px;
margin-right: -8px;
border-bottom: none !important;
background-color: #E4E4E4;
}
.component {
......@@ -80,7 +87,7 @@
height: 15px;
border-radius: 50%;
background-color: var(--st-info);
color: var(--st-black);
color: var(--st-white);
font-size: 10px;
text-align: center;
line-height: 15px;
......
......@@ -22,10 +22,20 @@
">
<!-- show only first 3 -->
<p *ngIf="j < 3">
<span style="text-transform: capitalize">{{ attribute }}: </span>
<span *ngIf="!attribute.startsWith('style')" class="icon" style="background-color: var(--st-attribute)">
A
</span>
<span *ngIf="attribute.startsWith('style')" class="icon" style="background-color: var(--st-style)">
S
</span>
<span style="text-transform: capitalize">{{ attribute.replace("style.", "") }}: </span>
<b>{{ finalState.selectedAttributes[attribute] }}</b>
</p>
</div>
<div *ngIf="Object.keys(finalState.selectedAttributes).length > 3">
+ {{Object.keys(finalState.selectedAttributes).length - 3}} more
</div>
</div>
<div class="component third-component">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment