Styling fixes

This commit is contained in:
psychedelicious 2022-10-31 23:11:51 +11:00
parent 881c69e905
commit 88203d8db2
6 changed files with 6 additions and 16 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -6,8 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InvokeAI - A Stable Diffusion Toolkit</title> <title>InvokeAI - A Stable Diffusion Toolkit</title>
<link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" /> <link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" />
<script type="module" crossorigin src="./assets/index.86b555db.js"></script> <script type="module" crossorigin src="./assets/index.1bbf045c.js"></script>
<link rel="stylesheet" href="./assets/index.0974fcda.css"> <link rel="stylesheet" href="./assets/index.519094b9.css">
</head> </head>
<body> <body>

View File

@ -373,8 +373,8 @@ export default function ImageGallery() {
</div> </div>
<div> <div>
<IAIPopover <IAIPopover
isLazy
trigger="hover" trigger="hover"
hasArrow={activeTabName === 'inpainting' ? false : true}
placement={'left'} placement={'left'}
triggerComponent={ triggerComponent={
<IAIIconButton <IAIIconButton

View File

@ -86,12 +86,3 @@
.inpainting-options-btn { .inpainting-options-btn {
min-height: 2rem; min-height: 2rem;
} }
// Overrides
.inpainting-workarea-overrides {
.image-gallery-wrapper {
.chakra-popover__popper {
inset: 0 auto auto -75px !important;
}
}
}

View File

@ -348,7 +348,6 @@ const InpaintingControls = () => {
tooltip="Mask Options" tooltip="Mask Options"
icon={<FaMask />} icon={<FaMask />}
cursor={'pointer'} cursor={'pointer'}
isDisabled={isMaskEmpty}
data-selected={maskOptionsOpen} data-selected={maskOptionsOpen}
/> />
} }