|
| 1 | +body { |
| 2 | + &.vscode-light { |
| 3 | + background-color: var(--color-background--darken-05); |
| 4 | + } |
| 5 | +} |
| 6 | + |
| 7 | +button { |
| 8 | + padding: 0; |
| 9 | +} |
| 10 | + |
| 11 | +.margin { |
| 12 | + margin: 3rem; |
| 13 | +} |
| 14 | + |
| 15 | +.mainContainer, |
| 16 | +.formContainer, |
| 17 | +.form { |
| 18 | + display: flex; |
| 19 | + flex-direction: column; |
| 20 | + font-family: var(--vscode-font-family) !important; |
| 21 | +} |
| 22 | + |
| 23 | +.title { |
| 24 | + width: 100%; |
| 25 | + margin-bottom: 1rem; |
| 26 | +} |
| 27 | + |
| 28 | +.subTitle { |
| 29 | + margin-bottom: 2rem; |
| 30 | + width: auto; |
| 31 | + word-spacing: 2px; |
| 32 | + text-align: left; |
| 33 | +} |
| 34 | + |
| 35 | +.buttonStyle { |
| 36 | + text-align: center; |
| 37 | + overflow: hidden; |
| 38 | + text-overflow: ellipsis; |
| 39 | + color: var(--vscode-button-foreground); |
| 40 | + width: 3rem; |
| 41 | + height: 2.5rem !important; |
| 42 | + &:hover { |
| 43 | + background-color: '#BE0000' !important; |
| 44 | + } |
| 45 | + |
| 46 | + text-transform: none; |
| 47 | +} |
| 48 | + |
| 49 | +.MuiIconButton-root.Mui-disabled > .MuiSvgIcon-root { |
| 50 | + color: var(--vscode-titleBar-inactiveForeground) !important; |
| 51 | +} |
| 52 | + |
| 53 | +.MuiButton-root.Mui-disabled { |
| 54 | + -webkit-text-fill-color: white !important; |
| 55 | +} |
| 56 | + |
| 57 | +.labelStyle { |
| 58 | + text-align: center; |
| 59 | + text-transform: none; |
| 60 | + height: 2.5rem !important; |
| 61 | + background-color: var(--vscode-button-background) !important; |
| 62 | + border: 1px solid var(--vscode-settings-textInputForeground); |
| 63 | +} |
| 64 | + |
| 65 | +.strategyContainer { |
| 66 | + display: flex; |
| 67 | + flex-direction: row; |
| 68 | + border-top: 3px solid; |
| 69 | + max-width: 55rem; |
| 70 | + margin-top: 2rem; |
| 71 | + padding-top: 0.5rem; |
| 72 | + padding-left: 1rem; |
| 73 | + min-height: 2rem; |
| 74 | +} |
| 75 | + |
| 76 | +.cardContainer { |
| 77 | + display: flex; |
| 78 | + flex-direction: column; |
| 79 | + margin-top: 1rem; |
| 80 | +} |
| 81 | + |
| 82 | +.strategySuccess { |
| 83 | + border-color: green; |
| 84 | + background-color: darkseagreen !important; |
| 85 | +} |
| 86 | + |
| 87 | +.strategyWarning { |
| 88 | + border-color: orange; |
| 89 | + background-color: burlywood !important; |
| 90 | +} |
| 91 | + |
| 92 | +.MuiTypography-root { |
| 93 | + font-family: var(--vscode-font-family) !important; |
| 94 | +} |
| 95 | + |
| 96 | +.MuiFormHelperText-root { |
| 97 | + color: var(--vscode-foreground) !important; |
| 98 | + font-family: var(--vscode-font-family) !important; |
| 99 | + margin-left: 0px !important; |
| 100 | +} |
| 101 | + |
| 102 | +.Mui-error { |
| 103 | + color: #EE0000 !important; |
| 104 | +} |
| 105 | + |
| 106 | +.MuiSelect-select, |
| 107 | +.MuiAutocomplete-inputRoot { |
| 108 | + color: var(--vscode-dropdown-foreground) !important; |
| 109 | +} |
| 110 | + |
| 111 | +.MuiMenu-paper { |
| 112 | + background-color: var(--vscode-dropdown-background) !important; |
| 113 | + color: var(--vscode-dropdown-foreground) !important; |
| 114 | +} |
| 115 | + |
| 116 | +.MuiInputLabel-root, |
| 117 | +.MuiFormLabel-root { |
| 118 | + background-color: transparent; |
| 119 | + color: var(--vscode-settings-textInputForeground) !important; |
| 120 | +} |
| 121 | + |
| 122 | +.MuiAutocomplete-inputRoot { |
| 123 | + padding: 0 !important; |
| 124 | + padding-left: 5px !important; |
| 125 | + height: 2.5rem !important; |
| 126 | +} |
| 127 | + |
| 128 | +.MuiMenuItem-root { |
| 129 | + background-color: var(--vscode-dropdown-background) !important; |
| 130 | + color: var(--vscode-dropdown-foreground) !important; |
| 131 | +} |
| 132 | + |
| 133 | +.MuiMenuItem-root:hover { |
| 134 | + background-color: var(--vscode-button-hoverBackground) !important; |
| 135 | +} |
| 136 | + |
| 137 | +.MuiFormControl-root { |
| 138 | + border: none; |
| 139 | + &:hover { |
| 140 | + border: none; |
| 141 | + } |
| 142 | +} |
| 143 | + |
| 144 | +.MuiOutlinedInput-notchedOutline { |
| 145 | + border-color: var(--vscode-settings-textInputForeground) !important; |
| 146 | +} |
| 147 | + |
| 148 | +.MuiFormControl-fullWidth { |
| 149 | + max-width: 100% !important; |
| 150 | +} |
| 151 | + |
| 152 | +.MuiSvgIcon-root, |
| 153 | +.MuiStepLabel-label { |
| 154 | + color: var(--vscode-button-foreground) !important; |
| 155 | +} |
| 156 | + |
| 157 | +.successicon { |
| 158 | + color: #198754 !important; |
| 159 | +} |
| 160 | + |
| 161 | +.erroricon { |
| 162 | + color: #ff3333 !important; |
| 163 | +} |
| 164 | + |
| 165 | +.disabledicon { |
| 166 | + color: var(--vscode-settings-textInputForeground) !important; |
| 167 | +} |
| 168 | + |
| 169 | +.MuiCircularProgress-svg { |
| 170 | + color: #EE0000 !important; |
| 171 | +} |
| 172 | + |
| 173 | +.MuiOutlinedInput-root.Mui-disabled { |
| 174 | + border: 0px solid var(--vscode-tab-unfocusedActiveBorder) !important; |
| 175 | +} |
| 176 | + |
| 177 | +.Mui-disabled { |
| 178 | + -webkit-text-fill-color: var(--vscode-titleBar-inactiveForeground) !important; |
| 179 | +} |
| 180 | + |
| 181 | +.Mui-active { |
| 182 | + color: var(--vscode-button-hoverBackground) !important; |
| 183 | +} |
| 184 | + |
| 185 | +.MuiAutocomplete-noOptions { |
| 186 | + background-color: var(--vscode-settings-textInputBackground); |
| 187 | + color: var(--vscode-settings-textInputForeground) !important; |
| 188 | +} |
| 189 | + |
| 190 | +li:hover { |
| 191 | + background-color: var(--vscode-button-hoverBackground) !important; |
| 192 | +} |
| 193 | + |
| 194 | +.MuiDialog-paper { |
| 195 | + border: 1px groove var(--vscode-activityBar-activeBorder) !important; |
| 196 | + border-radius: 1rem !important; |
| 197 | + margin: auto !important; |
| 198 | + background-color: #101418 !important; |
| 199 | + color: var(--vscode-settings-textInputForeground) !important |
| 200 | +} |
| 201 | + |
| 202 | +.MuiTableCell-body { |
| 203 | + color: var(--vscode-button-foreground) !important |
| 204 | +} |
| 205 | + |
| 206 | +.MuiTablePagination-toolbar { |
| 207 | + background-color: var(--vscode-button-secondaryHoverBackground) !important; |
| 208 | + color: var(--vscode-settings-textInputForeground) !important |
| 209 | +} |
0 commit comments