Skip to content

Commit

Permalink
[BUGFIX Gernott#280] fix broken Icon and Colour UI in screens smaller…
Browse files Browse the repository at this point in the history
… than 1920px width
  • Loading branch information
butu committed Apr 29, 2020
1 parent 594761a commit 6f1c219
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Resources/Private/Language/de.locallang.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -592,10 +592,10 @@
<target>Element-Key (Kleinbuchstaben)</target>
</trans-unit>
<trans-unit id="tx_mask.all.icon">
<target>FontAwesome-Icon</target>
<target>Icon</target>
</trans-unit>
<trans-unit id="tx_mask.all.color">
<target>Farbe (HEX-Code)</target>
<target>Farbe</target>
</trans-unit>
<trans-unit id="tx_mask.all.configure">
<target>Konfigurieren</target>
Expand Down
4 changes: 2 additions & 2 deletions Resources/Private/Language/locallang.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -585,10 +585,10 @@
<source>Element-key (unique, lowercase)</source>
</trans-unit>
<trans-unit id="tx_mask.all.icon">
<source>FontAwesome-Icon</source>
<source>Icon</source>
</trans-unit>
<trans-unit id="tx_mask.all.color">
<source>Colour (HEX-Code)</source>
<source>Colour</source>
</trans-unit>
<trans-unit id="tx_mask.all.configure">
<source>Configure</source>
Expand Down
13 changes: 11 additions & 2 deletions Resources/Public/Styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ ul.tx_mask_fieldtypes .tx_mask_fieldcontent_highlight {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
height: 32px;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
width: 100px;
width: 85px;
}

.icons-selector .selector-button {
Expand All @@ -298,7 +298,7 @@ ul.tx_mask_fieldtypes .tx_mask_fieldcontent_highlight {
float: left;
height: 100%;
text-align: center;
width: 60px;
width: 45px;
}

.icons-selector .selected-icon i {
Expand Down Expand Up @@ -847,6 +847,7 @@ img.brand-logo {
padding: 11px;
border: 1px dashed #bbb;
}

.icon-size-large .icon-unify {
font-size: 35px !important;
}
Expand Down Expand Up @@ -952,3 +953,11 @@ img.brand-logo {
.tx_mask_field_templates .mask_tooltip:hover .tooltiptext {
visibility: visible;
}

#meta_color {
min-width: auto !important;
}

.form-control-wrap {
max-width: none !important;
}

0 comments on commit 6f1c219

Please sign in to comment.