1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`Field tests should render 1`] = `
4.c0 {
5  font-family: inherit;
6  font-size: inherit;
7  line-height: inherit;
8  display: block;
9  height: 22px;
10  color: #393637;
11  background-color: #fff;
12  background-image: none;
13  border: 1px solid #aaaaaa;
14  border-radius: 2px;
15  padding: 1px 8px;
16}
17
18.c0:-webkit-autofill {
19  box-shadow: 0 0 0 1000px white inset;
20}
21
22.c1 {
23  display: -webkit-box;
24  display: -webkit-flex;
25  display: -ms-flexbox;
26  display: flex;
27  -webkit-flex-direction: row;
28  -ms-flex-direction: row;
29  flex-direction: row;
30  -webkit-box-pack: start;
31  -webkit-justify-content: start;
32  -ms-flex-pack: start;
33  justify-content: start;
34  -webkit-align-items: center;
35  -webkit-box-align: center;
36  -ms-flex-align: center;
37  align-items: center;
38}
39
40<input
41  class="c0 c1"
42  value=""
43/>
44`;
45
46exports[`Field tests should render in disabled state 1`] = `
47.c0 {
48  font-family: inherit;
49  font-size: inherit;
50  line-height: inherit;
51  display: block;
52  height: 22px;
53  color: #393637;
54  background-color: #fff;
55  background-image: none;
56  border: 1px solid #aaaaaa;
57  border-radius: 2px;
58  padding: 1px 8px;
59  cursor: not-allowed;
60  background-color: #eeeeee;
61  opacity: 0.65;
62}
63
64.c0:-webkit-autofill {
65  box-shadow: 0 0 0 1000px white inset;
66}
67
68.c1 {
69  display: -webkit-box;
70  display: -webkit-flex;
71  display: -ms-flexbox;
72  display: flex;
73  -webkit-flex-direction: row;
74  -ms-flex-direction: row;
75  flex-direction: row;
76  -webkit-box-pack: start;
77  -webkit-justify-content: start;
78  -ms-flex-pack: start;
79  justify-content: start;
80  -webkit-align-items: center;
81  -webkit-box-align: center;
82  -ms-flex-align: center;
83  align-items: center;
84}
85
86<input
87  class="c0 c1"
88  disabled=""
89  value=""
90/>
91`;
92