0
0
Fork 0

Replace from Code Climate to Super-Linter (#18587)

This commit is contained in:
Yamagishi Kazutoshi 2022-06-02 02:22:35 +09:00 committed by GitHub
parent 3f14260574
commit 84266f87e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 799 additions and 742 deletions

View file

@ -542,10 +542,10 @@ html {
}
.simple_form {
input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea {
&:hover {
border-color: lighten($ui-base-color, 12%);

View file

@ -28,10 +28,10 @@ $inverted-text-color: $black !default;
$lighter-text-color: $classic-base-color !default;
$light-text-color: #444b5d;
//Newly added colors
// Newly added colors
$account-background-color: $white !default;
//Invert darkened and lightened colors
// Invert darkened and lightened colors
@function darken($color, $amount) {
@return hsl(hue($color), saturation($color), lightness($color) + $amount);
}