2023-05-13 12:57:32 +00:00
|
|
|
|
/* temporary fix to load default gradio font in frontend instead of backend */
|
|
|
|
|
|
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap');
|
2022-10-08 21:03:00 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* general gradio fixes */
|
2023-01-20 07:18:41 +00:00
|
|
|
|
|
2023-03-21 03:49:19 +00:00
|
|
|
|
:root, .dark{
|
2023-03-20 13:09:36 +00:00
|
|
|
|
--checkbox-label-gap: 0.25em 0.1em;
|
|
|
|
|
--section-header-text-size: 12pt;
|
2023-03-21 03:49:19 +00:00
|
|
|
|
--block-background-fill: transparent;
|
2022-10-10 18:34:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-25 19:52:06 +00:00
|
|
|
|
.block.padded:not(.gradio-accordion) {
|
2023-03-21 05:18:14 +00:00
|
|
|
|
padding: 0 !important;
|
2023-01-20 07:18:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
div.gradio-container{
|
|
|
|
|
max-width: unset !important;
|
2022-10-10 18:34:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.hidden{
|
|
|
|
|
display: none;
|
2022-10-10 18:34:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.compact{
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
padding: 0 !important;
|
2023-03-19 06:05:01 +00:00
|
|
|
|
}
|
2022-09-17 04:49:31 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
div.form{
|
|
|
|
|
border-width: 0;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
gap: 0.5em;
|
2022-09-27 21:02:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.block.gradio-dropdown,
|
|
|
|
|
.block.gradio-slider,
|
|
|
|
|
.block.gradio-checkbox,
|
|
|
|
|
.block.gradio-textbox,
|
|
|
|
|
.block.gradio-radio,
|
|
|
|
|
.block.gradio-checkboxgroup,
|
2023-03-21 05:18:14 +00:00
|
|
|
|
.block.gradio-number,
|
|
|
|
|
.block.gradio-colorpicker
|
2023-03-20 13:09:36 +00:00
|
|
|
|
{
|
|
|
|
|
border-width: 0 !important;
|
|
|
|
|
box-shadow: none !important;
|
2022-09-17 04:49:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.gap.compact{
|
|
|
|
|
padding: 0;
|
2023-03-21 05:18:14 +00:00
|
|
|
|
gap: 0.2em 0;
|
2022-10-19 09:01:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
div.compact{
|
2023-03-21 05:18:14 +00:00
|
|
|
|
gap: 1em;
|
2022-09-17 04:49:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 05:18:14 +00:00
|
|
|
|
.gradio-dropdown label span:not(.has-info),
|
|
|
|
|
.gradio-textbox label span:not(.has-info),
|
|
|
|
|
.gradio-number label span:not(.has-info)
|
|
|
|
|
{
|
2023-03-20 13:09:36 +00:00
|
|
|
|
margin-bottom: 0;
|
2022-09-11 15:48:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 04:30:38 +00:00
|
|
|
|
.gradio-dropdown ul.options{
|
|
|
|
|
z-index: 3000;
|
|
|
|
|
min-width: fit-content;
|
|
|
|
|
max-width: inherit;
|
|
|
|
|
white-space: nowrap;
|
2023-03-25 19:52:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gradio-dropdown ul.options li.item {
|
2023-03-27 04:30:38 +00:00
|
|
|
|
padding: 0.05em 0;
|
2023-03-25 19:52:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gradio-dropdown ul.options li.item.selected {
|
2023-03-27 04:30:38 +00:00
|
|
|
|
background-color: var(--neutral-100);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dark .gradio-dropdown ul.options li.item.selected {
|
|
|
|
|
background-color: var(--neutral-900);
|
2023-03-25 19:52:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.gradio-dropdown div.wrap.wrap.wrap.wrap{
|
|
|
|
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
2022-09-17 16:27:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 03:31:56 +00:00
|
|
|
|
.gradio-dropdown:not(.multiselect) .wrap-inner.wrap-inner.wrap-inner{
|
2023-03-21 05:49:08 +00:00
|
|
|
|
flex-wrap: unset;
|
2023-01-26 21:25:48 +00:00
|
|
|
|
}
|
2023-03-21 05:49:08 +00:00
|
|
|
|
|
|
|
|
|
.gradio-dropdown .single-select{
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
2023-01-26 21:25:48 +00:00
|
|
|
|
}
|
2023-03-21 05:49:08 +00:00
|
|
|
|
|
2023-03-21 05:18:14 +00:00
|
|
|
|
.gradio-dropdown .token-remove.remove-all.remove-all{
|
|
|
|
|
display: none;
|
2022-09-17 15:58:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 05:18:14 +00:00
|
|
|
|
.gradio-dropdown.multiselect .token-remove.remove-all.remove-all{
|
|
|
|
|
display: flex;
|
2022-09-17 15:58:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.gradio-slider input[type="number"]{
|
|
|
|
|
width: 6em;
|
2022-09-17 15:58:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.block.gradio-checkbox {
|
|
|
|
|
margin: 0.75em 1.5em 0 0;
|
2022-09-16 19:20:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 03:49:19 +00:00
|
|
|
|
.gradio-html div.wrap{
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
div.gradio-html.min{
|
|
|
|
|
min-height: 0;
|
2022-09-28 08:31:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 05:18:14 +00:00
|
|
|
|
.block.gradio-gallery{
|
|
|
|
|
background: var(--input-background-fill);
|
2022-09-16 19:20:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 05:18:14 +00:00
|
|
|
|
.gradio-container .prose a, .gradio-container .prose a:visited{
|
|
|
|
|
color: unset;
|
|
|
|
|
text-decoration: none;
|
2022-09-16 19:20:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-08 13:46:35 +00:00
|
|
|
|
a{
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2023-03-21 05:18:14 +00:00
|
|
|
|
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* general styled components */
|
2022-09-16 19:20:56 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.gradio-button.tool{
|
|
|
|
|
max-width: 2.2em;
|
|
|
|
|
min-width: 2.2em !important;
|
|
|
|
|
height: 2.4em;
|
|
|
|
|
align-self: end;
|
|
|
|
|
line-height: 1em;
|
|
|
|
|
border-radius: 0.5em;
|
2022-09-16 19:20:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 05:05:55 +00:00
|
|
|
|
.gradio-button.secondary-down{
|
|
|
|
|
background: var(--button-secondary-background-fill);
|
|
|
|
|
color: var(--button-secondary-text-color);
|
|
|
|
|
}
|
|
|
|
|
.gradio-button.secondary-down, .gradio-button.secondary-down:hover{
|
|
|
|
|
box-shadow: 1px 1px 1px rgba(0,0,0,0.25) inset, 0px 0px 3px rgba(0,0,0,0.15) inset;
|
|
|
|
|
}
|
|
|
|
|
.gradio-button.secondary-down:hover{
|
|
|
|
|
background: var(--button-secondary-background-fill-hover);
|
|
|
|
|
color: var(--button-secondary-text-color-hover);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.checkboxes-row{
|
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
margin-left: 0em;
|
2022-09-16 19:20:56 +00:00
|
|
|
|
}
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.checkboxes-row > div{
|
|
|
|
|
flex: 0;
|
|
|
|
|
white-space: nowrap;
|
2022-09-16 19:20:56 +00:00
|
|
|
|
min-width: auto;
|
2022-09-09 14:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 05:49:08 +00:00
|
|
|
|
button.custom-button{
|
|
|
|
|
border-radius: var(--button-large-radius);
|
|
|
|
|
padding: var(--button-large-padding);
|
|
|
|
|
font-weight: var(--button-large-text-weight);
|
|
|
|
|
border: var(--button-border-width) solid var(--button-secondary-border-color);
|
|
|
|
|
background: var(--button-secondary-background-fill);
|
|
|
|
|
color: var(--button-secondary-text-color);
|
|
|
|
|
font-size: var(--button-large-text-size);
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
transition: var(--button-transition);
|
|
|
|
|
box-shadow: var(--button-shadow);
|
|
|
|
|
text-align: center;
|
2022-09-09 14:54:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-23 19:49:21 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* txt2img/img2img specific */
|
2022-09-14 14:56:21 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.block.token-counter{
|
|
|
|
|
position: absolute;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
right: 1em;
|
2022-10-15 11:22:30 +00:00
|
|
|
|
min-width: 0 !important;
|
2023-03-20 13:09:36 +00:00
|
|
|
|
width: auto;
|
|
|
|
|
z-index: 100;
|
2023-03-21 03:49:19 +00:00
|
|
|
|
top: -0.75em;
|
2022-10-05 18:50:10 +00:00
|
|
|
|
}
|
2022-09-09 14:54:04 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.block.token-counter span{
|
|
|
|
|
background: var(--input-background-fill) !important;
|
|
|
|
|
box-shadow: 0 0 0.0 0.3em rgba(192,192,192,0.15), inset 0 0 0.6em rgba(192,192,192,0.075);
|
|
|
|
|
border: 2px solid rgba(192,192,192,0.4) !important;
|
|
|
|
|
border-radius: 0.4em;
|
2022-09-14 14:56:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.block.token-counter.error span{
|
|
|
|
|
box-shadow: 0 0 0.0 0.3em rgba(255,0,0,0.15), inset 0 0 0.6em rgba(255,0,0,0.075);
|
|
|
|
|
border: 2px solid rgba(255,0,0,0.4) !important;
|
2022-09-14 14:56:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.block.token-counter div{
|
|
|
|
|
display: inline;
|
2023-01-21 05:36:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.block.token-counter span{
|
|
|
|
|
padding: 0.1em 0.75em;
|
2023-01-21 05:36:07 +00:00
|
|
|
|
}
|
2023-01-28 15:08:38 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
[id$=_subseed_show]{
|
|
|
|
|
min-width: auto !important;
|
|
|
|
|
flex-grow: 0 !important;
|
|
|
|
|
display: flex;
|
2022-09-05 20:08:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
[id$=_subseed_show] label{
|
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
align-self: end;
|
2023-01-21 06:48:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 05:07:25 +00:00
|
|
|
|
.html-log .comments{
|
|
|
|
|
padding-top: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 05:41:22 +00:00
|
|
|
|
.html-log .comments:empty{
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 05:07:25 +00:00
|
|
|
|
.html-log .performance {
|
2023-03-20 13:09:36 +00:00
|
|
|
|
font-size: 0.85em;
|
|
|
|
|
color: #444;
|
2023-07-14 19:51:58 +00:00
|
|
|
|
display: flex;
|
2023-01-14 11:56:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 05:07:25 +00:00
|
|
|
|
.html-log .performance p{
|
2023-03-20 13:09:36 +00:00
|
|
|
|
display: inline-block;
|
2022-09-09 20:16:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 05:07:25 +00:00
|
|
|
|
.html-log .performance p.time, .performance p.vram, .performance p.time abbr, .performance p.vram abbr {
|
2023-07-14 19:51:58 +00:00
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
color: var(--block-title-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 05:07:25 +00:00
|
|
|
|
.html-log .performance p.time {
|
2022-09-22 09:11:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 05:07:25 +00:00
|
|
|
|
.html-log .performance p.vram {
|
2023-07-14 19:51:58 +00:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 05:07:25 +00:00
|
|
|
|
.html-log .performance .measurement{
|
2023-07-14 19:51:58 +00:00
|
|
|
|
color: var(--body-text-color);
|
|
|
|
|
font-weight: bold;
|
2022-09-09 16:43:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
#txt2img_generate, #img2img_generate {
|
|
|
|
|
min-height: 4.5em;
|
2022-08-30 18:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
@media screen and (min-width: 2500px) {
|
|
|
|
|
#txt2img_gallery, #img2img_gallery {
|
|
|
|
|
min-height: 768px;
|
|
|
|
|
}
|
2022-08-30 18:51:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-05 09:51:51 +00:00
|
|
|
|
#txt2img_gallery img, #img2img_gallery img, #extras_gallery img{
|
2023-03-20 13:09:36 +00:00
|
|
|
|
object-fit: scale-down;
|
2022-08-30 18:51:30 +00:00
|
|
|
|
}
|
2023-03-20 13:09:36 +00:00
|
|
|
|
#txt2img_actions_column, #img2img_actions_column {
|
|
|
|
|
gap: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
#txt2img_tools, #img2img_tools{
|
|
|
|
|
gap: 0.4em;
|
2022-09-03 14:21:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.interrogate-col{
|
|
|
|
|
min-width: 0 !important;
|
|
|
|
|
max-width: fit-content;
|
|
|
|
|
gap: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
.interrogate-col > button{
|
2023-03-21 05:18:14 +00:00
|
|
|
|
flex: 1;
|
2022-09-03 14:21:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.generate-box{
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.gradio-button.generate-box-skip, .gradio-button.generate-box-interrupt{
|
2022-09-06 16:33:51 +00:00
|
|
|
|
position: absolute;
|
2023-03-20 13:09:36 +00:00
|
|
|
|
width: 50%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: none;
|
2023-03-25 05:48:34 +00:00
|
|
|
|
background: #b4c0cc;
|
|
|
|
|
}
|
|
|
|
|
.gradio-button.generate-box-skip:hover, .gradio-button.generate-box-interrupt:hover{
|
|
|
|
|
background: #c2cfdb;
|
2023-03-20 13:09:36 +00:00
|
|
|
|
}
|
|
|
|
|
.gradio-button.generate-box-interrupt{
|
2022-09-06 16:33:51 +00:00
|
|
|
|
left: 0;
|
2023-03-20 13:09:36 +00:00
|
|
|
|
border-radius: 0.5rem 0 0 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
.gradio-button.generate-box-skip{
|
2022-09-06 16:33:51 +00:00
|
|
|
|
right: 0;
|
2023-03-20 13:09:36 +00:00
|
|
|
|
border-radius: 0 0.5rem 0.5rem 0;
|
2022-09-06 16:33:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-28 17:36:57 +00:00
|
|
|
|
#txtimg_hr_finalres{
|
2023-03-20 13:09:36 +00:00
|
|
|
|
min-height: 0 !important;
|
|
|
|
|
padding: .625rem .75rem;
|
|
|
|
|
margin-left: -0.75em
|
2022-09-23 17:47:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-28 19:23:40 +00:00
|
|
|
|
#img2img_scale_resolution_preview.block{
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#txtimg_hr_finalres .resolution, #img2img_scale_resolution_preview .resolution{
|
2023-03-20 13:09:36 +00:00
|
|
|
|
font-weight: bold;
|
2022-09-23 17:47:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-18 18:04:55 +00:00
|
|
|
|
#txtimg_hr_finalres div.pending, #img2img_scale_resolution_preview div.pending {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity 0s;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
.inactive{
|
|
|
|
|
opacity: 0.5;
|
2022-09-06 16:33:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
[id$=_column_batch]{
|
|
|
|
|
min-width: min(13.5em, 100%) !important;
|
|
|
|
|
}
|
2022-08-30 18:51:30 +00:00
|
|
|
|
|
2023-03-21 05:49:08 +00:00
|
|
|
|
div.dimensions-tools{
|
2023-03-20 13:09:36 +00:00
|
|
|
|
min-width: 0 !important;
|
|
|
|
|
max-width: fit-content;
|
2023-05-17 21:03:16 +00:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
place-content: center;
|
2022-09-01 14:27:40 +00:00
|
|
|
|
}
|
2022-10-13 16:22:41 +00:00
|
|
|
|
|
2023-03-31 05:19:40 +00:00
|
|
|
|
div#extras_scale_to_tab div.form{
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 18:05:56 +00:00
|
|
|
|
#img2img_sketch, #img2maskimg, #inpaint_sketch {
|
|
|
|
|
overflow: overlay !important;
|
|
|
|
|
resize: auto;
|
|
|
|
|
background: var(--panel-background-fill);
|
|
|
|
|
z-index: 5;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 05:18:14 +00:00
|
|
|
|
.image-buttons button{
|
|
|
|
|
min-width: auto;
|
2023-01-03 06:04:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-25 09:43:14 +00:00
|
|
|
|
.infotext {
|
2023-03-25 09:36:35 +00:00
|
|
|
|
overflow-wrap: break-word;
|
2022-08-30 18:51:30 +00:00
|
|
|
|
}
|
2022-09-01 14:27:40 +00:00
|
|
|
|
|
2023-03-28 19:23:40 +00:00
|
|
|
|
#img2img_column_batch{
|
|
|
|
|
align-self: end;
|
|
|
|
|
margin-bottom: 0.9em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#img2img_unused_scale_by_slider{
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
width: 0.5em;
|
|
|
|
|
max-width: 0.5em;
|
|
|
|
|
min-width: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* settings */
|
|
|
|
|
#quicksettings {
|
2023-05-18 17:25:33 +00:00
|
|
|
|
width: fit-content;
|
2023-03-27 22:38:42 +00:00
|
|
|
|
align-items: end;
|
2022-09-10 08:10:00 +00:00
|
|
|
|
}
|
2022-08-30 18:51:30 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
#quicksettings > div, #quicksettings > fieldset{
|
2023-05-18 17:25:33 +00:00
|
|
|
|
max-width: 24em;
|
2023-03-20 13:09:36 +00:00
|
|
|
|
min-width: 24em;
|
|
|
|
|
padding: 0;
|
2022-09-10 08:10:00 +00:00
|
|
|
|
border: none;
|
2023-03-20 13:09:36 +00:00
|
|
|
|
box-shadow: none;
|
|
|
|
|
background: none;
|
2022-09-10 12:54:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-03 04:20:20 +00:00
|
|
|
|
#settings{
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#settings > div{
|
|
|
|
|
border: none;
|
|
|
|
|
margin-left: 10em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
#settings > div.tab-nav{
|
2023-01-03 04:20:20 +00:00
|
|
|
|
float: left;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
width: 10em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
#settings > div.tab-nav button{
|
2023-01-03 04:20:20 +00:00
|
|
|
|
display: block;
|
|
|
|
|
border: none;
|
|
|
|
|
text-align: left;
|
2023-03-21 05:18:14 +00:00
|
|
|
|
white-space: initial;
|
2023-01-03 04:20:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#settings_result{
|
|
|
|
|
height: 1.4em;
|
|
|
|
|
margin: 0 1.2em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 21:41:41 +00:00
|
|
|
|
table.popup-table{
|
2023-05-08 13:46:35 +00:00
|
|
|
|
background: white;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
margin: 1em;
|
|
|
|
|
border: 4px solid white;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 21:41:41 +00:00
|
|
|
|
table.popup-table td{
|
2023-05-08 13:46:35 +00:00
|
|
|
|
padding: 0.4em;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
max-width: 36em;
|
|
|
|
|
}
|
2022-11-02 06:47:53 +00:00
|
|
|
|
|
2023-05-20 21:41:41 +00:00
|
|
|
|
table.popup-table .muted{
|
|
|
|
|
color: #aaa;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-01 07:01:42 +00:00
|
|
|
|
table.popup-table .link{
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-10 20:41:08 +00:00
|
|
|
|
.ui-defaults-none{
|
|
|
|
|
color: #aaa !important;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-14 07:02:51 +00:00
|
|
|
|
#settings span{
|
|
|
|
|
color: var(--body-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-14 08:04:21 +00:00
|
|
|
|
#settings .gradio-textbox, #settings .gradio-slider, #settings .gradio-number, #settings .gradio-dropdown, #settings .gradio-checkboxgroup, #settings .gradio-radio{
|
2023-05-14 07:02:51 +00:00
|
|
|
|
margin-top: 0.75em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-14 08:04:21 +00:00
|
|
|
|
#settings span .settings-comment {
|
2023-05-14 07:02:51 +00:00
|
|
|
|
display: inline
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-comment a{
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-comment .info{
|
|
|
|
|
opacity: 0.75;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-04 08:16:00 +00:00
|
|
|
|
#sysinfo_download a.sysinfo_big_link{
|
2023-06-03 10:55:35 +00:00
|
|
|
|
font-size: 24pt;
|
2023-06-04 08:16:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#sysinfo_download a{
|
2023-06-03 10:55:35 +00:00
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#sysinfo_validity{
|
|
|
|
|
font-size: 18pt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* live preview */
|
2022-09-05 23:09:01 +00:00
|
|
|
|
.progressDiv{
|
2023-01-26 21:25:48 +00:00
|
|
|
|
position: relative;
|
2023-01-15 15:50:56 +00:00
|
|
|
|
height: 20px;
|
|
|
|
|
background: #b4c0cc;
|
2023-01-18 10:20:47 +00:00
|
|
|
|
border-radius: 3px !important;
|
2023-01-26 21:25:48 +00:00
|
|
|
|
margin-bottom: -3px;
|
2022-09-05 23:09:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dark .progressDiv{
|
2023-01-15 15:50:56 +00:00
|
|
|
|
background: #424c5b;
|
2022-09-05 23:09:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progressDiv .progress{
|
2023-01-15 15:50:56 +00:00
|
|
|
|
width: 0%;
|
|
|
|
|
height: 20px;
|
|
|
|
|
background: #0060df;
|
|
|
|
|
color: white;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
padding: 0 8px 0 0;
|
|
|
|
|
text-align: right;
|
2023-01-18 10:20:47 +00:00
|
|
|
|
border-radius: 3px;
|
2023-01-15 15:50:56 +00:00
|
|
|
|
overflow: visible;
|
|
|
|
|
white-space: nowrap;
|
2023-01-18 10:20:47 +00:00
|
|
|
|
padding: 0 0.5em;
|
2023-01-15 15:50:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.livePreview{
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 300;
|
|
|
|
|
background-color: white;
|
|
|
|
|
margin: -4px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-15 20:37:34 +00:00
|
|
|
|
.dark .livePreview{
|
|
|
|
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-15 15:50:56 +00:00
|
|
|
|
.livePreview img{
|
2023-01-15 17:20:29 +00:00
|
|
|
|
position: absolute;
|
2023-01-15 15:50:56 +00:00
|
|
|
|
object-fit: contain;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2022-09-05 23:09:01 +00:00
|
|
|
|
}
|
2022-09-06 16:33:51 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* fullscreen popup (ie in Lora's (i) button) */
|
|
|
|
|
|
2023-03-14 06:10:26 +00:00
|
|
|
|
.popup-metadata{
|
|
|
|
|
color: black;
|
|
|
|
|
background: white;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.global-popup{
|
|
|
|
|
display: flex;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 1001;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: rgba(20, 20, 20, 0.95);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 17:39:04 +00:00
|
|
|
|
.global-popup *{
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2023-03-14 06:10:26 +00:00
|
|
|
|
|
|
|
|
|
.global-popup-close:before {
|
|
|
|
|
content: "×";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.global-popup-close{
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 0.25em;
|
|
|
|
|
top: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 32pt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.global-popup-inner{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: auto;
|
|
|
|
|
padding: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* fullpage image viewer */
|
|
|
|
|
|
2022-09-17 00:00:45 +00:00
|
|
|
|
#lightboxModal{
|
2023-03-25 05:28:21 +00:00
|
|
|
|
display: none;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 1001;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: rgba(20, 20, 20, 0.95);
|
|
|
|
|
user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
flex-direction: column;
|
2022-09-17 00:00:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-21 08:31:07 +00:00
|
|
|
|
.modalControls {
|
2023-03-25 05:28:21 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1em;
|
|
|
|
|
padding: 1em;
|
2022-09-21 08:31:07 +00:00
|
|
|
|
background-color: rgba(0,0,0,0.2);
|
|
|
|
|
}
|
|
|
|
|
.modalClose {
|
2023-03-25 05:28:21 +00:00
|
|
|
|
margin-left: auto;
|
2022-09-19 01:33:37 +00:00
|
|
|
|
}
|
2023-03-25 05:28:21 +00:00
|
|
|
|
.modalControls span{
|
2022-10-27 14:20:01 +00:00
|
|
|
|
color: white;
|
2023-03-25 05:28:21 +00:00
|
|
|
|
font-size: 35px;
|
2022-10-27 14:20:01 +00:00
|
|
|
|
font-weight: bold;
|
|
|
|
|
cursor: pointer;
|
2023-03-25 05:28:21 +00:00
|
|
|
|
width: 1em;
|
2022-10-27 14:20:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-25 05:28:21 +00:00
|
|
|
|
.modalControls span:hover, .modalControls span:focus{
|
|
|
|
|
color: #999;
|
|
|
|
|
text-decoration: none;
|
2022-09-17 00:00:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-25 05:28:21 +00:00
|
|
|
|
#lightboxModal > img {
|
2022-09-17 00:00:45 +00:00
|
|
|
|
display: block;
|
2023-02-27 01:52:55 +00:00
|
|
|
|
margin: auto;
|
2022-09-17 00:00:45 +00:00
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-25 05:28:21 +00:00
|
|
|
|
#lightboxModal > img.modalImageFullscreen{
|
2022-09-19 15:53:40 +00:00
|
|
|
|
object-fit: contain;
|
2023-03-25 05:28:21 +00:00
|
|
|
|
height: 100%;
|
2023-05-08 05:20:11 +00:00
|
|
|
|
width: 100%;
|
2023-05-06 00:17:39 +00:00
|
|
|
|
min-height: 0;
|
2022-09-19 01:33:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-17 16:56:53 +00:00
|
|
|
|
.modalPrev,
|
|
|
|
|
.modalNext {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
width: auto;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
margin-top: -50px;
|
|
|
|
|
color: white;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
transition: 0.6s ease;
|
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
|
user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modalNext {
|
|
|
|
|
right: 0;
|
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modalPrev:hover,
|
|
|
|
|
.modalNext:hover {
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
|
|
|
}
|
2022-09-22 00:50:42 +00:00
|
|
|
|
|
2023-03-25 18:44:41 +00:00
|
|
|
|
#imageARPreview {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
border: 2px solid red;
|
|
|
|
|
background: rgba(255, 0, 0, 0.3);
|
|
|
|
|
z-index: 900;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* context menu (ie for the generate button) */
|
2022-10-06 17:30:29 +00:00
|
|
|
|
|
2022-10-08 04:35:03 +00:00
|
|
|
|
#context-menu{
|
|
|
|
|
z-index:9999;
|
|
|
|
|
position:absolute;
|
|
|
|
|
display:block;
|
|
|
|
|
padding:0px 0;
|
|
|
|
|
border:2px solid #a55000;
|
|
|
|
|
border-radius:8px;
|
|
|
|
|
box-shadow:1px 1px 2px #CE6400;
|
|
|
|
|
width: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.context-menu-items{
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.context-menu-items a{
|
|
|
|
|
display:block;
|
|
|
|
|
padding:5px;
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.context-menu-items a:hover{
|
|
|
|
|
background: #a55000;
|
|
|
|
|
}
|
2022-10-09 19:24:07 +00:00
|
|
|
|
|
2022-10-13 16:22:41 +00:00
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* extensions */
|
2022-10-31 14:36:45 +00:00
|
|
|
|
|
2023-01-21 21:21:33 +00:00
|
|
|
|
#tab_extensions table{
|
2022-10-31 14:36:45 +00:00
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-01 06:59:00 +00:00
|
|
|
|
#tab_extensions table td, #tab_extensions table th{
|
2022-10-31 14:36:45 +00:00
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
padding: 0.25em 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-01 06:59:00 +00:00
|
|
|
|
#tab_extensions table input[type="checkbox"]{
|
2022-10-31 14:36:45 +00:00
|
|
|
|
margin-right: 0.5em;
|
2023-03-20 13:09:36 +00:00
|
|
|
|
appearance: checkbox;
|
2022-10-31 14:36:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#tab_extensions button{
|
|
|
|
|
max-width: 16em;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-01 06:59:00 +00:00
|
|
|
|
#tab_extensions input[disabled="disabled"]{
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
2022-10-31 14:36:45 +00:00
|
|
|
|
|
2022-11-06 07:12:53 +00:00
|
|
|
|
.extension-tag{
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 95%;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-06 09:32:44 +00:00
|
|
|
|
#available_extensions .info{
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-29 10:25:34 +00:00
|
|
|
|
#available_extensions .info{
|
|
|
|
|
margin: 0.5em 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
opacity: 0.80;
|
2023-01-06 09:32:44 +00:00
|
|
|
|
font-size: 90%;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-29 10:25:34 +00:00
|
|
|
|
#available_extensions .date_added{
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#available_extensions .star_count{
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* replace original footer with ours */
|
2023-01-03 06:04:29 +00:00
|
|
|
|
|
2023-01-03 17:23:17 +00:00
|
|
|
|
footer {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#footer{
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#footer div{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2023-01-01 10:08:40 +00:00
|
|
|
|
|
2023-01-05 08:57:01 +00:00
|
|
|
|
#footer .versions{
|
|
|
|
|
font-size: 85%;
|
|
|
|
|
opacity: 0.85;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-20 13:09:36 +00:00
|
|
|
|
/* extra networks UI */
|
2023-01-14 19:43:01 +00:00
|
|
|
|
|
2023-03-27 17:08:42 +00:00
|
|
|
|
.extra-network-cards{
|
2023-04-29 19:17:32 +00:00
|
|
|
|
height: 725px;
|
2023-03-26 17:29:19 +00:00
|
|
|
|
overflow: scroll;
|
|
|
|
|
resize: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
|
.extra-networks > div > [id *= '_extra_']{
|
|
|
|
|
margin: 0.3em;
|
2023-01-18 10:58:01 +00:00
|
|
|
|
}
|
2023-01-21 05:36:07 +00:00
|
|
|
|
|
2023-01-29 08:34:58 +00:00
|
|
|
|
.extra-network-subdirs{
|
|
|
|
|
padding: 0.2em 0.35em;
|
|
|
|
|
}
|
2023-01-21 14:20:24 +00:00
|
|
|
|
|
2023-01-29 08:34:58 +00:00
|
|
|
|
.extra-network-subdirs button{
|
|
|
|
|
margin: 0 0.15em;
|
|
|
|
|
}
|
2023-06-02 04:08:45 +00:00
|
|
|
|
.extra-networks .tab-nav .search,
|
|
|
|
|
.extra-networks .tab-nav .sort,
|
|
|
|
|
.extra-networks .tab-nav .sortorder{
|
2023-01-21 14:20:24 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0.3em;
|
2023-01-21 20:45:36 +00:00
|
|
|
|
align-self: center;
|
2023-06-02 04:08:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-networks .tab-nav .search {
|
2023-03-21 06:24:19 +00:00
|
|
|
|
width: 16em;
|
2023-06-02 04:08:45 +00:00
|
|
|
|
max-width: 16em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-networks .tab-nav .sort {
|
|
|
|
|
width: 12em;
|
|
|
|
|
max-width: 12em;
|
2023-01-21 14:20:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-21 20:45:36 +00:00
|
|
|
|
#txt2img_extra_view, #img2img_extra_view {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .nocards, .extra-network-thumbs .nocards{
|
2023-01-21 05:36:07 +00:00
|
|
|
|
margin: 1.25em 0.5em 0.5em 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-21 20:45:36 +00:00
|
|
|
|
.extra-network-cards .nocards h1, .extra-network-thumbs .nocards h1{
|
2023-01-21 05:36:07 +00:00
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-21 20:45:36 +00:00
|
|
|
|
.extra-network-cards .nocards li, .extra-network-thumbs .nocards li{
|
2023-01-21 05:36:07 +00:00
|
|
|
|
margin-left: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-14 06:10:26 +00:00
|
|
|
|
|
2023-07-15 17:39:04 +00:00
|
|
|
|
.extra-network-cards .card .button-row, .extra-network-thumbs .card .button-row{
|
2023-03-14 06:10:26 +00:00
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
color: white;
|
2023-05-23 11:07:00 +00:00
|
|
|
|
right: 0;
|
|
|
|
|
}
|
2023-07-15 17:39:04 +00:00
|
|
|
|
.extra-network-cards .card:hover .button-row, .extra-network-thumbs .card:hover .button-row{
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card .card-button, .extra-network-thumbs .card .card-button{
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card .metadata-button:before, .extra-network-thumbs .card .metadata-button:before{
|
|
|
|
|
content: "🛈";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card .edit-button:before, .extra-network-thumbs .card .edit-button:before{
|
|
|
|
|
content: "🛠";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card .card-button {
|
2023-03-14 06:10:26 +00:00
|
|
|
|
text-shadow: 2px 2px 3px black;
|
|
|
|
|
padding: 0.25em;
|
|
|
|
|
font-size: 22pt;
|
2023-03-25 07:11:04 +00:00
|
|
|
|
width: 1.5em;
|
2023-03-14 06:10:26 +00:00
|
|
|
|
}
|
2023-07-15 17:39:04 +00:00
|
|
|
|
.extra-network-thumbs .card .card-button {
|
2023-05-23 11:07:00 +00:00
|
|
|
|
text-shadow: 1px 1px 2px black;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: 16pt;
|
|
|
|
|
width: 1em;
|
|
|
|
|
top: -0.25em;
|
|
|
|
|
}
|
2023-07-15 17:39:04 +00:00
|
|
|
|
.extra-network-cards .card .card-button:hover, .extra-network-thumbs .card .card-button:hover{
|
2023-03-14 06:10:26 +00:00
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-01-21 20:45:36 +00:00
|
|
|
|
.extra-network-thumbs {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row wrap;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-thumbs .card {
|
|
|
|
|
height: 6em;
|
|
|
|
|
width: 6em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background-image: url('./file=html/card-no-preview.png');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-position: center center;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 17:39:04 +00:00
|
|
|
|
.extra-network-thumbs .card .preview, .standalone-card-preview.card .preview{
|
2023-05-23 11:07:00 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height:100%;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-21 20:45:36 +00:00
|
|
|
|
.extra-network-thumbs .card:hover .additional a {
|
2023-03-11 10:42:14 +00:00
|
|
|
|
display: inline-block;
|
2023-01-21 20:45:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-thumbs .actions .additional a {
|
|
|
|
|
background-image: url('./file=html/image-update.svg');
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-position: center center;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
display: none;
|
|
|
|
|
font-size: 0;
|
|
|
|
|
text-align: -9999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-thumbs .actions .name {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
background: rgba(0,0,0,.5);
|
2023-01-23 21:36:27 +00:00
|
|
|
|
color: white;
|
2023-01-21 20:45:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-thumbs .card:hover .actions .name {
|
|
|
|
|
white-space: normal;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 17:39:04 +00:00
|
|
|
|
.extra-network-cards .card, .standalone-card-preview.card{
|
2023-01-21 05:36:07 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0.5em;
|
|
|
|
|
width: 16em;
|
|
|
|
|
height: 24em;
|
|
|
|
|
box-shadow: 0 0 5px rgba(128, 128, 128, 0.5);
|
|
|
|
|
border-radius: 0.2em;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
background-size: auto 100%;
|
|
|
|
|
background-position: center;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
background-image: url('./file=html/card-no-preview.png')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card:hover{
|
|
|
|
|
box-shadow: 0 0 2px 0.3em rgba(0, 128, 255, 0.35);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card .actions .additional{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card .actions{
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
background: rgba(0,0,0,0.5);
|
|
|
|
|
box-shadow: 0 0 0.25em 0.25em rgba(0,0,0,0.5);
|
|
|
|
|
text-shadow: 0 0 0.2em black;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 06:24:19 +00:00
|
|
|
|
.extra-network-cards .card .actions *{
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
|
.extra-network-cards .card .actions:hover{
|
|
|
|
|
box-shadow: 0 0 0.75em 0.75em rgba(0,0,0,0.5) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card .actions .name{
|
|
|
|
|
font-size: 1.7em;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-break: anywhere;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-06 19:14:06 +00:00
|
|
|
|
.extra-network-cards .card .actions .description {
|
|
|
|
|
display: block;
|
|
|
|
|
max-height: 3em;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card .actions .description:hover {
|
|
|
|
|
max-height: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
|
.extra-network-cards .card .actions:hover .additional{
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card ul{
|
|
|
|
|
margin: 0.25em 0 0.75em 0.25em;
|
|
|
|
|
cursor: unset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card ul a{
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-network-cards .card ul a:hover{
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 22:07:24 +00:00
|
|
|
|
.extra-network-cards .card .preview{
|
|
|
|
|
position: absolute;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height:100%;
|
|
|
|
|
}
|
2023-07-15 17:39:04 +00:00
|
|
|
|
|
|
|
|
|
div.block.gradio-box.edit-user-metadata {
|
2023-07-15 21:56:53 +00:00
|
|
|
|
width: 56em;
|
2023-07-15 17:39:04 +00:00
|
|
|
|
background: var(--body-background-fill);
|
|
|
|
|
padding: 2em !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-user-metadata .extra-network-name{
|
|
|
|
|
font-size: 18pt;
|
|
|
|
|
color: var(--body-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 22:09:19 +00:00
|
|
|
|
.edit-user-metadata .file-metadata{
|
|
|
|
|
color: var(--body-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 17:39:04 +00:00
|
|
|
|
.edit-user-metadata .file-metadata th{
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-user-metadata .wrap.translucent{
|
|
|
|
|
background: var(--body-background-fill);
|
|
|
|
|
}
|
2023-07-15 21:56:53 +00:00
|
|
|
|
.edit-user-metadata .gradio-highlightedtext span{
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-user-metadata-buttons{
|
|
|
|
|
margin-top: 1.5em;
|
|
|
|
|
}
|