Skip to content

Commit

Permalink
Merge pull request #218 from soee/changeBaseStyles
Browse files Browse the repository at this point in the history
BUGFIX: Resolve layout issues with textboxes in modals and button icon alignment
  • Loading branch information
Sebobo authored Nov 3, 2023
2 parents d47c5ed + 24768d8 commit 27fb982
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Configuration/Settings.Neos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Neos:
description: 'Flowpack.Media.Ui:Main:module.description'
icon: 'fas fa-image'
privilegeTarget: 'Flowpack.Media.Ui:ManageAssets'
mainStylesheet: 'Lite'
mainStylesheet: 'Minimal'
position: 'before media'
additionalResources:
javaScripts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@
:global(body > [class*="_selectBox__contents_"]) {
z-index: 99999;
}

:global([class*="_dropDown__btn"]) {
padding-left: 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@
position: relative;
}

.assetsFilter summary {
.assetsFilter > summary {
background-color: var(--theme-colors-captionBackground);
padding: 0 1em;
cursor: pointer;
list-style-type: none;
}

.assetsFilter summary:hover {
background-color: var(--theme-colors-PrimaryBlue);
}

.assetsFilter > summary {
list-style-type: none;
}

.assetsFilter[open] > summary::-webkit-details-marker {
.assetsFilter > summary::-webkit-details-marker {
display: none;
}

Expand Down

0 comments on commit 27fb982

Please sign in to comment.