-
Notifications
You must be signed in to change notification settings - Fork 171
/
_patterns_form-validation.scss
84 lines (67 loc) · 1.94 KB
/
_patterns_form-validation.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@import 'settings';
// form validation styling for form inputs
@mixin vf-p-form-validation {
$icon-size: map-get($icon-sizes, default);
%vf-validation-wrapper {
background-position: left, center;
background-repeat: no-repeat;
padding-left: calc($icon-size + $sph--small);
padding-top: 0;
}
.p-form-validation__message {
@extend %small-text;
@extend %vf-validation-wrapper;
.is-dense + & {
margin-top: 0;
}
margin-top: -$sp-unit;
}
.is-caution {
.p-form-validation__input {
background-color: $colors--theme--background-caution-default;
border-bottom-color: $colors--theme--border-caution;
&:hover {
background-color: $colors--theme--background-caution-hover;
}
&:focus {
background-color: $colors--theme--background-caution-active;
}
}
.p-form-validation__message {
@include vf-icon-warning-themed;
color: $colors--theme--border-caution;
}
}
.is-error {
.p-form-validation__input {
background-color: $colors--theme--background-negative-default;
border-bottom-color: $colors--theme--border-negative;
&:hover {
background-color: $colors--theme--background-negative-hover;
}
&:focus {
background-color: $colors--theme--background-negative-active;
}
}
.p-form-validation__message {
@include vf-icon-error-themed;
color: $colors--theme--border-negative;
}
}
.is-success {
.p-form-validation__input {
background-color: $colors--theme--background-positive-default;
border-bottom-color: $colors--theme--border-positive;
&:hover {
background-color: $colors--theme--background-positive-hover;
}
&:focus {
background-color: $colors--theme--background-positive-active;
}
}
.p-form-validation__message {
@include vf-icon-success-themed;
color: $colors--theme--border-positive;
}
}
}