WebUI/style.css

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

975 lines
18 KiB
CSS
Raw Normal View History

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 */
:root, .dark{
2023-03-20 13:09:36 +00:00
--checkbox-label-gap: 0.25em 0.1em;
--section-header-text-size: 12pt;
--block-background-fill: transparent;
2022-10-10 18:34:07 +00:00
}
.block.padded:not(.gradio-accordion) {
padding: 0 !important;
}
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;
}
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,
.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;
gap: 0.2em 0;
}
2023-03-20 13:09:36 +00:00
div.compact{
gap: 1em;
2022-09-17 04:49:31 +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
}
.gradio-dropdown ul.options{
z-index: 3000;
min-width: fit-content;
max-width: inherit;
white-space: nowrap;
}
.gradio-dropdown ul.options li.item {
padding: 0.05em 0;
}
.gradio-dropdown ul.options li.item.selected {
background-color: var(--neutral-100);
}
.dark .gradio-dropdown ul.options li.item.selected {
background-color: var(--neutral-900);
}
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{
flex-wrap: unset;
2023-01-26 21:25:48 +00:00
}
.gradio-dropdown .single-select{
white-space: nowrap;
overflow: hidden;
2023-01-26 21:25:48 +00:00
}
.gradio-dropdown .token-remove.remove-all.remove-all{
display: none;
2022-09-17 15:58:46 +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;
}
.gradio-html div.wrap{
height: 100%;
}
div.gradio-html.min{
min-height: 0;
}
.block.gradio-gallery{
background: var(--input-background-fill);
}
.gradio-container .prose a, .gradio-container .prose a:visited{
color: unset;
text-decoration: none;
}
a{
font-weight: bold;
cursor: pointer;
}
2023-03-20 13:09:36 +00:00
/* general styled components */
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;
}
.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;
}
2023-03-20 13:09:36 +00:00
.checkboxes-row > div{
flex: 0;
white-space: nowrap;
min-width: auto;
}
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;
}
2023-03-20 13:09:36 +00:00
/* txt2img/img2img specific */
2023-03-20 13:09:36 +00:00
.block.token-counter{
position: absolute;
display: inline-block;
right: 1em;
min-width: 0 !important;
2023-03-20 13:09:36 +00:00
width: auto;
z-index: 100;
top: -0.75em;
2022-10-05 18:50:10 +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;
}
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;
}
2023-03-20 13:09:36 +00:00
.block.token-counter div{
display: inline;
}
2023-03-20 13:09:36 +00:00
.block.token-counter span{
padding: 0.1em 0.75em;
}
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;
}
2023-03-20 13:09:36 +00:00
[id$=_subseed_show] label{
margin-bottom: 0.5em;
align-self: end;
}
.html-log .comments{
padding-top: 0.5em;
}
.html-log .comments:empty{
padding-top: 0;
}
.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
}
.html-log .performance p{
2023-03-20 13:09:36 +00:00
display: inline-block;
}
.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);
}
.html-log .performance p.time {
}
.html-log .performance p.vram {
2023-07-14 19:51:58 +00:00
margin-left: auto;
}
.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;
}
2023-03-20 13:09:36 +00:00
@media screen and (min-width: 2500px) {
#txt2img_gallery, #img2img_gallery {
min-height: 768px;
}
}
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;
}
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{
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
}
#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
}
#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
}
#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;
}
div.dimensions-tools{
2023-03-20 13:09:36 +00:00
min-width: 0 !important;
max-width: fit-content;
flex-direction: column;
place-content: center;
}
2023-03-31 05:19:40 +00:00
div#extras_scale_to_tab div.form{
flex-direction: row;
}
#img2img_sketch, #img2maskimg, #inpaint_sketch {
overflow: overlay !important;
resize: auto;
background: var(--panel-background-fill);
z-index: 5;
}
.image-buttons button{
min-width: auto;
}
.infotext {
2023-03-25 09:36:35 +00:00
overflow-wrap: break-word;
}
#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 {
width: fit-content;
2023-03-27 22:38:42 +00:00
align-items: end;
}
2023-03-20 13:09:36 +00:00
#quicksettings > div, #quicksettings > fieldset{
max-width: 24em;
2023-03-20 13:09:36 +00:00
min-width: 24em;
padding: 0;
border: none;
2023-03-20 13:09:36 +00:00
box-shadow: none;
background: none;
2022-09-10 12:54:46 +00:00
}
#settings{
display: block;
}
#settings > div{
border: none;
margin-left: 10em;
}
2023-03-20 13:09:36 +00:00
#settings > div.tab-nav{
float: left;
display: block;
margin-left: 0;
width: 10em;
}
2023-03-20 13:09:36 +00:00
#settings > div.tab-nav button{
display: block;
border: none;
text-align: left;
white-space: initial;
}
#settings_result{
height: 1.4em;
margin: 0 1.2em;
}
2023-05-20 21:41:41 +00:00
table.popup-table{
background: var(--body-background-fill);
color: var(--body-text-color);
border-collapse: collapse;
margin: 1em;
border: 4px solid var(--body-background-fill);
}
2023-05-20 21:41:41 +00:00
table.popup-table td{
padding: 0.4em;
border: 1px solid rgba(128, 128, 128, 0.5);
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;
}
table.popup-table .link{
text-decoration: underline;
cursor: pointer;
font-weight: bold;
}
.ui-defaults-none{
color: #aaa !important;
}
#settings span{
color: var(--body-text-color);
}
#settings .gradio-textbox, #settings .gradio-slider, #settings .gradio-number, #settings .gradio-dropdown, #settings .gradio-checkboxgroup, #settings .gradio-radio{
margin-top: 0.75em;
}
#settings span .settings-comment {
display: inline
}
.settings-comment a{
text-decoration: underline;
}
.settings-comment .info{
opacity: 0.75;
}
#sysinfo_download a.sysinfo_big_link{
2023-06-03 10:55:35 +00:00
font-size: 24pt;
}
#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 */
.progressDiv{
2023-01-26 21:25:48 +00:00
position: relative;
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;
}
.dark .progressDiv{
background: #424c5b;
}
.progressDiv .progress{
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;
overflow: visible;
white-space: nowrap;
2023-01-18 10:20:47 +00:00
padding: 0 0.5em;
}
.livePreview{
position: absolute;
z-index: 300;
background-color: white;
margin: -4px;
}
.dark .livePreview{
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}
.livePreview img{
2023-01-15 17:20:29 +00:00
position: absolute;
object-fit: contain;
width: 100%;
height: 100%;
}
2022-09-06 16:33:51 +00:00
2023-03-20 13:09:36 +00:00
/* fullscreen popup (ie in Lora's (i) button) */
.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);
}
.global-popup *{
box-sizing: border-box;
}
.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
}
.modalControls {
2023-03-25 05:28:21 +00:00
display: flex;
gap: 1em;
padding: 1em;
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{
color: white;
2023-03-25 05:28:21 +00:00
font-size: 35px;
font-weight: bold;
cursor: pointer;
2023-03-25 05:28:21 +00:00
width: 1em;
}
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;
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%;
width: 100%;
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
#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-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;
}
2023-03-20 13:09:36 +00:00
/* extensions */
#tab_extensions table{
border-collapse: collapse;
}
2022-11-01 06:59:00 +00:00
#tab_extensions table td, #tab_extensions table th{
border: 1px solid #ccc;
padding: 0.25em 0.5em;
}
2022-11-01 06:59:00 +00:00
#tab_extensions table input[type="checkbox"]{
margin-right: 0.5em;
2023-03-20 13:09:36 +00:00
appearance: checkbox;
}
#tab_extensions button{
max-width: 16em;
}
2022-11-01 06:59:00 +00:00
#tab_extensions input[disabled="disabled"]{
opacity: 0.5;
}
.extension-tag{
font-weight: bold;
font-size: 95%;
}
#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;
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 */
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-03-27 17:08:42 +00:00
.extra-network-cards{
height: 725px;
overflow: scroll;
resize: vertical;
}
.extra-networks > div > [id *= '_extra_']{
margin: 0.3em;
}
.extra-network-subdirs{
padding: 0.2em 0.35em;
}
2023-01-21 14:20:24 +00:00
.extra-network-subdirs button{
margin: 0 0.15em;
}
2023-06-02 04:08:45 +00:00
.extra-networks .tab-nav .search,
2023-07-16 07:44:04 +00:00
.extra-networks .tab-nav .sort{
2023-01-21 14:20:24 +00:00
display: inline-block;
margin: 0.3em;
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
}
#txt2img_extra_view, #img2img_extra_view {
width: auto;
}
.extra-network-cards .nocards{
margin: 1.25em 0.5em 0.5em 0.5em;
}
.extra-network-cards .nocards h1{
font-size: 1.5em;
margin-bottom: 1em;
}
.extra-network-cards .nocards li{
margin-left: 0.5em;
}
.extra-network-cards .card .button-row{
display: none;
position: absolute;
color: white;
right: 0;
}
.extra-network-cards .card:hover .button-row{
display: flex;
}
.extra-network-cards .card .card-button{
color: white;
}
.extra-network-cards .card .metadata-button:before{
content: "🛈";
}
.extra-network-cards .card .edit-button:before{
content: "🛠";
}
.extra-network-cards .card .card-button {
text-shadow: 2px 2px 3px black;
padding: 0.25em 0.1em;
font-size: 200%;
width: 1.5em;
}
.extra-network-cards .card .card-button:hover{
color: red;
}
.standalone-card-preview.card .preview{
position: absolute;
object-fit: cover;
width: 100%;
height:100%;
}
.extra-network-cards .card, .standalone-card-preview.card{
display: inline-block;
margin: 0.5rem;
width: 16rem;
height: 24rem;
box-shadow: 0 0 5px rgba(128, 128, 128, 0.5);
border-radius: 0.2rem;
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;
}
.extra-network-cards .card .actions .name{
font-size: 1.7em;
font-weight: bold;
line-break: anywhere;
}
.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;
}
.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%;
}
div.block.gradio-box.edit-user-metadata {
width: 56em;
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);
}
.edit-user-metadata .file-metadata th{
text-align: left;
}
.edit-user-metadata .file-metadata th, .edit-user-metadata .file-metadata td{
padding: 0.3em 1em;
}
.edit-user-metadata .wrap.translucent{
background: var(--body-background-fill);
}
.edit-user-metadata .gradio-highlightedtext span{
word-break: break-word;
}
.edit-user-metadata-buttons{
margin-top: 1.5em;
}