mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-20 01:02:48 +00:00
Resize dropdown button
This commit is contained in:
@@ -202,14 +202,14 @@ const MetadataEditor = createClass({
|
|||||||
|
|
||||||
if(this.props.metadata.renderer == 'legacy') {
|
if(this.props.metadata.renderer == 'legacy') {
|
||||||
dropdown =
|
dropdown =
|
||||||
<Nav.dropdown className='disabled' trigger='disabled'>
|
<Nav.dropdown className='disabled value' trigger='disabled'>
|
||||||
<div>
|
<div>
|
||||||
{`Themes are not supported in the Legacy Renderer`} <i className='fas fa-caret-down'></i>
|
{`Themes are not supported in the Legacy Renderer`} <i className='fas fa-caret-down'></i>
|
||||||
</div>
|
</div>
|
||||||
</Nav.dropdown>;
|
</Nav.dropdown>;
|
||||||
} else {
|
} else {
|
||||||
dropdown =
|
dropdown =
|
||||||
<Nav.dropdown trigger='click'>
|
<Nav.dropdown className='value' trigger='click'>
|
||||||
<div>
|
<div>
|
||||||
{`${_.upperFirst(currentTheme.renderer)} : ${currentTheme.name}`} <i className='fas fa-caret-down'></i>
|
{`${_.upperFirst(currentTheme.renderer)} : ${currentTheme.name}`} <i className='fas fa-caret-down'></i>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -35,7 +35,6 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex: 5 0 200px;
|
flex: 5 0 200px;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
|
|
||||||
}
|
}
|
||||||
.field{
|
.field{
|
||||||
display : flex;
|
display : flex;
|
||||||
@@ -159,7 +158,6 @@
|
|||||||
font-size : 13.33px;
|
font-size : 13.33px;
|
||||||
.navDropdownContainer {
|
.navDropdownContainer {
|
||||||
background-color : white;
|
background-color : white;
|
||||||
width : 100%;
|
|
||||||
position : relative;
|
position : relative;
|
||||||
z-index : 500;
|
z-index : 500;
|
||||||
&.disabled {
|
&.disabled {
|
||||||
@@ -191,25 +189,25 @@
|
|||||||
overflow : visible;
|
overflow : visible;
|
||||||
background-color : white;
|
background-color : white;
|
||||||
.preview {
|
.preview {
|
||||||
display: flex;
|
display : flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background: #ccc;
|
background : #ccc;
|
||||||
border-radius: 5px;
|
border-radius : 5px;
|
||||||
box-shadow: 0 0 5px black;
|
box-shadow : 0 0 5px black;
|
||||||
width: 200px;
|
width : 200px;
|
||||||
color:black;
|
color :black;
|
||||||
position: absolute;
|
position : absolute;
|
||||||
top: 0;
|
top : 0;
|
||||||
right: 0;
|
right : 0;
|
||||||
opacity: 0;
|
opacity : 0;
|
||||||
transition: opacity 250ms ease;
|
transition : opacity 250ms ease;
|
||||||
z-index: 1;
|
z-index : 1;
|
||||||
overflow:hidden;
|
overflow :hidden;
|
||||||
h6 {
|
h6 {
|
||||||
font-weight: 900;
|
font-weight : 900;
|
||||||
padding-inline:1em;
|
padding-inline:1em;
|
||||||
padding-block:.5em;
|
padding-block :.5em;
|
||||||
border-bottom:2px solid hsl(0,0%,40%);
|
border-bottom :2px solid hsl(0,0%,40%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|||||||
Reference in New Issue
Block a user