| 1 | #sd_dropdown { |
| 2 | z-index: 30000; |
| 3 | backdrop-filter: blur(var(--SmartThemeBlurStrength)); |
| 4 | } |
| 5 | |
| 6 | #sd_comfy_open_workflow_editor { |
| 7 | display: flex; |
| 8 | flex-direction: row; |
| 9 | gap: 10px; |
| 10 | width: fit-content; |
| 11 | } |
| 12 | |
| 13 | #sd_comfy_workflow_editor_template { |
| 14 | height: 100%; |
| 15 | } |
| 16 | |
| 17 | .sd_comfy_workflow_editor { |
| 18 | display: flex; |
| 19 | flex-direction: column; |
| 20 | height: 100%; |
| 21 | } |
| 22 | |
| 23 | .sd_comfy_workflow_editor_content { |
| 24 | display: flex; |
| 25 | flex: 1 1 auto; |
| 26 | flex-direction: row; |
| 27 | } |
| 28 | |
| 29 | .sd_comfy_workflow_editor_workflow_container { |
| 30 | flex: 1 1 auto; |
| 31 | } |
| 32 | |
| 33 | #sd_comfy_workflow_editor_workflow { |
| 34 | font-family: monospace; |
| 35 | } |
| 36 | |
| 37 | .sd_comfy_workflow_editor_placeholder_container { |
| 38 | flex: 0 0 auto; |
| 39 | } |
| 40 | |
| 41 | .sd_comfy_workflow_editor_placeholder_list { |
| 42 | font-size: x-small; |
| 43 | list-style: none; |
| 44 | margin: 5px 0; |
| 45 | padding: 3px 5px; |
| 46 | text-align: left; |
| 47 | } |
| 48 | |
| 49 | .sd_comfy_workflow_editor_placeholder_list>li[data-placeholder]:before { |
| 50 | content: "✅ "; |
| 51 | } |
| 52 | |
| 53 | .sd_comfy_workflow_editor_placeholder_list>li.sd_comfy_workflow_editor_not_found:before { |
| 54 | content: "❌ "; |
| 55 | } |
| 56 | |
| 57 | .sd_comfy_workflow_editor_placeholder_list>li>.notes-link { |
| 58 | cursor: help; |
| 59 | } |
| 60 | |
| 61 | .sd_comfy_workflow_editor_placeholder_list input { |
| 62 | font-size: inherit; |
| 63 | margin: 0; |
| 64 | } |
| 65 | .sd_comfy_workflow_editor_custom_remove, #sd_comfy_workflow_editor_placeholder_add { |
| 66 | cursor: pointer; |
| 67 | font-weight: bold; |
| 68 | width: 1em; |
| 69 | opacity: 0.5; |
| 70 | &:hover { |
| 71 | opacity: 1; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | .sd_settings .flex1.checkbox_label input[type="checkbox"] { |
| 76 | margin-right: 5px; |
| 77 | margin-left: 5px; |
| 78 | } |
| 79 | |
| 80 | #sd_dimensions_block { |
| 81 | position: relative; |
| 82 | } |
| 83 | |
| 84 | #sd_swap_dimensions { |
| 85 | position: absolute; |
| 86 | left: 50%; |
| 87 | top: 0; |
| 88 | transform: translateX(-50%); |
| 89 | } |
| 90 | |
| 91 | .sd_custom_entry_row .sd_custom_entry_title { |
| 92 | font-weight: bold; |
| 93 | overflow: hidden; |
| 94 | text-overflow: ellipsis; |
| 95 | white-space: nowrap; |
| 96 | } |
| 97 | |
| 98 | .sd_custom_entry_row .sd_custom_entry_preview { |
| 99 | opacity: 0.7; |
| 100 | overflow: hidden; |
| 101 | text-overflow: ellipsis; |
| 102 | white-space: nowrap; |
| 103 | } |
| 104 | |
| 105 | .sd_ref_image_thumb { |
| 106 | width: 42px; |
| 107 | height: 42px; |
| 108 | object-fit: cover; |
| 109 | border-radius: 5px; |
| 110 | flex-shrink: 0; |
| 111 | } |
| 112 | |
| 113 | .sd_preset_chain_order { |
| 114 | min-width: 1.5em; |
| 115 | text-align: right; |
| 116 | opacity: 0.7; |
| 117 | } |
| 118 | |
| 119 | .sd_runpod_dot { |
| 120 | width: 12px; |
| 121 | height: 12px; |
| 122 | border-radius: 50%; |
| 123 | flex-shrink: 0; |
| 124 | background: grey; |
| 125 | } |
| 126 | |
| 127 | .sd_runpod_dot.sd_runpod_red { background: #d9534f; } |
| 128 | .sd_runpod_dot.sd_runpod_orange { background: #f0ad4e; } |
| 129 | .sd_runpod_dot.sd_runpod_green { background: #5cb85c; } |
| 130 | |
| 131 | #sd_runpod_bar_dot { |
| 132 | width: 14px; |
| 133 | height: 14px; |
| 134 | border-radius: 50%; |
| 135 | align-self: center; |
| 136 | cursor: pointer; |
| 137 | margin: 0 4px; |
| 138 | flex-shrink: 0; |
| 139 | } |