mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode cbeff45f80213db0ddda2183170281ed97ed3b12 (#8670)
* Merge from vscode cbeff45f80213db0ddda2183170281ed97ed3b12 * fix null strict checks
This commit is contained in:
@@ -185,8 +185,16 @@ export class IssueReporter extends Disposable {
|
||||
}
|
||||
|
||||
if (styles.inputErrorBorder) {
|
||||
content.push(`.invalid-input, .invalid-input:focus { border: 1px solid ${styles.inputErrorBorder} !important; }`);
|
||||
content.push(`.validation-error, .required-input { color: ${styles.inputErrorBorder}; }`);
|
||||
content.push(`.invalid-input, .invalid-input:focus, .validation-error { border: 1px solid ${styles.inputErrorBorder} !important; }`);
|
||||
content.push(`.required-input { color: ${styles.inputErrorBorder}; }`);
|
||||
}
|
||||
|
||||
if (styles.inputErrorBackground) {
|
||||
content.push(`.validation-error { background: ${styles.inputErrorBackground}; }`);
|
||||
}
|
||||
|
||||
if (styles.inputErrorForeground) {
|
||||
content.push(`.validation-error { color: ${styles.inputErrorForeground}; }`);
|
||||
}
|
||||
|
||||
if (styles.inputActiveBorder) {
|
||||
|
||||
@@ -251,16 +251,9 @@ a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.invalid-input {
|
||||
border: 1px solid #be1100;
|
||||
}
|
||||
|
||||
.required-input, .validation-error {
|
||||
color: #be1100;
|
||||
}
|
||||
|
||||
.section .input-group .validation-error {
|
||||
margin-left: 15%;
|
||||
margin-left: calc(15% + 5px);
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.section .inline-form-control, .section .inline-label {
|
||||
|
||||
Reference in New Issue
Block a user