blob: 3699521d9fe4a686adf0e95f24d148ea389f899f [file] [log] [blame]
Michael Daviscb8bb192017-02-09 15:45:13 -06001label, legend {
2 font-size:1em;
3 font-weight: 300;
4 margin: 0;
Michael Daviscb8bb192017-02-09 15:45:13 -06005 .error {
6 font-size: .9em;
7 }
8}
9
Yoshie Muranakae4194ce2019-05-24 14:33:56 -050010.label__helper-text {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050011 color: $text-02;
Yoshie Muranakae4194ce2019-05-24 14:33:56 -050012 line-height: 1.2;
13 font-size: 0.9em;
14 margin-bottom: 0.4em;
15}
16
Michael Daviscb8bb192017-02-09 15:45:13 -060017input[type='email'],
18input[type='number'],
19input[type='password'],
20input[type='search'],
21input[type='tel'],
22input[type='url'],
23input[type='text'],
Yoshie Muranaka5bd1dec2019-05-16 13:06:32 -050024input[type='date'],
25input[type='time'],
Michael Daviscb8bb192017-02-09 15:45:13 -060026textarea {
27 border-radius: 0px;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050028 border: 1px solid $border-color-02;
beccabroeka09cc2d2019-01-23 14:26:55 -060029 margin: 0;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050030 background: $primary-light;
Michael Davise15a9562017-03-03 14:30:24 -060031 box-shadow: 0 0 0;
32 transition: none !important;
Yoshie Muranaka5bd1dec2019-05-16 13:06:32 -050033 max-height: 2.1em;
Michael Daviscb8bb192017-02-09 15:45:13 -060034 &:focus {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050035 border-color: $border-color-01;
36 box-shadow: 0 -3px $primary-accent inset;
Michael Daviscb8bb192017-02-09 15:45:13 -060037 }
Michael Davis51946552017-05-01 10:30:38 -050038 &:disabled,
39 .disabled {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050040 background: $background-03;
41 border: 1px solid $border-color-02;
Michael Daviscb8bb192017-02-09 15:45:13 -060042 }
43 &.input__error {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050044 box-shadow: 0 -5px $status-error inset;
45 color: $status-error;
Michael Davis51946552017-05-01 10:30:38 -050046 &:focus {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050047 box-shadow: 0 -5px $primary-accent inset;
Michael Davis51946552017-05-01 10:30:38 -050048 }
Michael Daviscb8bb192017-02-09 15:45:13 -060049 }
50}
51
beccabroeka09cc2d2019-01-23 14:26:55 -060052//input validation
53.ng-invalid.ng-touched {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050054 box-shadow: 0 -3px $status-error inset;
beccabroeka09cc2d2019-01-23 14:26:55 -060055 &:focus {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050056 border-color: $border-color-01;
57 box-shadow: 0 -3px $status-error inset;
beccabroeka09cc2d2019-01-23 14:26:55 -060058 }
59}
60.submitted .ng-invalid {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050061 box-shadow: 0 -3px $status-error inset;
beccabroeka09cc2d2019-01-23 14:26:55 -060062 &:focus {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050063 border-color: $border-color-01;
64 box-shadow: 0 -3px $status-error inset;
beccabroeka09cc2d2019-01-23 14:26:55 -060065 }
66}
67
68.form-error {
69 margin-bottom: .7em;
70 font-size: 0.8rem;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050071 color: $status-error;
beccabroeka09cc2d2019-01-23 14:26:55 -060072 height:1rem;
73 display: block;
74 visibility: hidden;
75 .visible {
76 visibility: visible;
77 }
78}
Michael Davis4ac71d42017-06-19 14:47:50 -050079//Foundation overwrite
80[type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050081 border-color: $border-color-02;
Michael Davis4ac71d42017-06-19 14:47:50 -050082}
83
Michael Davis51946552017-05-01 10:30:38 -050084input[readonly],
85input[readonly]:focus{
86 box-shadow: 0 0 0;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050087 background: $background-03;
88 border: 1px solid $border-color-02;
Michael Davis51946552017-05-01 10:30:38 -050089}
90
Michael Daviscb8bb192017-02-09 15:45:13 -060091textarea { padding: .2em;
92 height: auto;}
Iftekharul Islamf157d372017-03-08 11:11:27 -060093input[type="submit"], .submit {
Michael Daviscb8bb192017-02-09 15:45:13 -060094 margin: 1em 0;
95 width: 100%;
96}
97
98//Custom select
99select{
100 border-radius: 0px;
Yoshie Muranakade382082019-04-30 13:56:10 -0500101 height: auto;
102 padding-right: 0.5rem; //override inherited Foundation style
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500103 border-color: $border-color-02;
Michael Daviscb8bb192017-02-09 15:45:13 -0600104 @include fastTransition-all;
105 @include bgImage__arrowDown-primary;
106 &:focus {
Michael Daviscb8bb192017-02-09 15:45:13 -0600107 box-shadow: 0 0 0;
108 }
Yoshie Muranakade382082019-04-30 13:56:10 -0500109 &[disabled] {
110 @include bgImage__arrowDown-disabled;
111 }
Michael Daviscb8bb192017-02-09 15:45:13 -0600112}
Yoshie Muranaka5bd1dec2019-05-16 13:06:32 -0500113
114#login__form {
115 input {
116 height: 3em;
117 max-height: none;
118 }
119}
Yoshie Muranakae4194ce2019-05-24 14:33:56 -0500120.form__validation-message {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -0500121 color: $status-error;
Yoshie Muranakae4194ce2019-05-24 14:33:56 -0500122 font-size: 0.9em;
123}