|
| 1 | +// Jest Snapshot v1, https://goo.gl/fbAQLP |
| 2 | + |
| 3 | +exports[`ListView should render with default styles 1`] = ` |
| 4 | +.circuit-8 { |
| 5 | + background-color: #FFFFFF; |
| 6 | + border-radius: 4px; |
| 7 | + display: -webkit-box; |
| 8 | + display: -webkit-flex; |
| 9 | + display: -ms-flexbox; |
| 10 | + display: flex; |
| 11 | + -webkit-flex-direction: column; |
| 12 | + -ms-flex-direction: column; |
| 13 | + flex-direction: column; |
| 14 | + -webkit-box-pack: justify; |
| 15 | + -webkit-justify-content: space-between; |
| 16 | + -ms-flex-pack: justify; |
| 17 | + justify-content: space-between; |
| 18 | + box-shadow: 0 0 0 1px rgba(12,15,20,0.02), 0 0 1px 0 rgba(12,15,20,0.06), 0 2px 2px 0 rgba(12,15,20,0.06); |
| 19 | + padding: 16px 24px; |
| 20 | + padding: 0; |
| 21 | +} |
| 22 | +
|
| 23 | +.circuit-0 { |
| 24 | + -webkit-align-items: center; |
| 25 | + -webkit-box-align: center; |
| 26 | + -ms-flex-align: center; |
| 27 | + align-items: center; |
| 28 | + position: relative; |
| 29 | + cursor: pointer; |
| 30 | + border-bottom: 1px solid #D8DDE1; |
| 31 | + padding: 24px; |
| 32 | +} |
| 33 | +
|
| 34 | +.circuit-0:hover, |
| 35 | +.circuit-0:focus { |
| 36 | + outline: none; |
| 37 | +} |
| 38 | +
|
| 39 | +.circuit-0:hover::after, |
| 40 | +.circuit-0:focus::after { |
| 41 | + content: ' '; |
| 42 | + position: absolute; |
| 43 | + width: 100%; |
| 44 | + height: 100%; |
| 45 | + left: 0; |
| 46 | + top: 0; |
| 47 | + box-shadow: 0px 0px 0px 2px #3388FF; |
| 48 | + border-radius: 4px; |
| 49 | +} |
| 50 | +
|
| 51 | +.circuit-0:first-child { |
| 52 | + border-top-left-radius: 4px; |
| 53 | + border-top-right-radius: 4px; |
| 54 | +} |
| 55 | +
|
| 56 | +.circuit-0:last-child { |
| 57 | + border-bottom-left-radius: 4px; |
| 58 | + border-bottom-right-radius: 4px; |
| 59 | +} |
| 60 | +
|
| 61 | +.circuit-2 { |
| 62 | + -webkit-align-items: center; |
| 63 | + -webkit-box-align: center; |
| 64 | + -ms-flex-align: center; |
| 65 | + align-items: center; |
| 66 | + position: relative; |
| 67 | + cursor: pointer; |
| 68 | + border-bottom: 1px solid #D8DDE1; |
| 69 | + padding: 24px; |
| 70 | + background: #DAEAFF; |
| 71 | +} |
| 72 | +
|
| 73 | +.circuit-2:hover, |
| 74 | +.circuit-2:focus { |
| 75 | + outline: none; |
| 76 | +} |
| 77 | +
|
| 78 | +.circuit-2:hover::after, |
| 79 | +.circuit-2:focus::after { |
| 80 | + content: ' '; |
| 81 | + position: absolute; |
| 82 | + width: 100%; |
| 83 | + height: 100%; |
| 84 | + left: 0; |
| 85 | + top: 0; |
| 86 | + box-shadow: 0px 0px 0px 2px #3388FF; |
| 87 | + border-radius: 4px; |
| 88 | +} |
| 89 | +
|
| 90 | +.circuit-2:first-child { |
| 91 | + border-top-left-radius: 4px; |
| 92 | + border-top-right-radius: 4px; |
| 93 | +} |
| 94 | +
|
| 95 | +.circuit-2:last-child { |
| 96 | + border-bottom-left-radius: 4px; |
| 97 | + border-bottom-right-radius: 4px; |
| 98 | +} |
| 99 | +
|
| 100 | +<div |
| 101 | + className="circuit-8 circuit-9" |
| 102 | + spacing="giga" |
| 103 | +> |
| 104 | + <div |
| 105 | + aria-selected={undefined} |
| 106 | + className="circuit-0 circuit-1" |
| 107 | + onClick={undefined} |
| 108 | + onKeyDown={null} |
| 109 | + selected={false} |
| 110 | + tabIndex={0} |
| 111 | + > |
| 112 | + List item 1 |
| 113 | + </div> |
| 114 | + <div |
| 115 | + aria-selected={true} |
| 116 | + className="circuit-2 circuit-1" |
| 117 | + onClick={undefined} |
| 118 | + onKeyDown={null} |
| 119 | + selected={true} |
| 120 | + tabIndex={0} |
| 121 | + > |
| 122 | + List item 2 |
| 123 | + </div> |
| 124 | + <div |
| 125 | + aria-selected={undefined} |
| 126 | + className="circuit-0 circuit-1" |
| 127 | + onClick={undefined} |
| 128 | + onKeyDown={null} |
| 129 | + selected={false} |
| 130 | + tabIndex={0} |
| 131 | + > |
| 132 | + List item 3 |
| 133 | + </div> |
| 134 | + <div |
| 135 | + aria-selected={undefined} |
| 136 | + className="circuit-0 circuit-1" |
| 137 | + onClick={undefined} |
| 138 | + onKeyDown={null} |
| 139 | + selected={false} |
| 140 | + tabIndex={0} |
| 141 | + > |
| 142 | + List item 4 |
| 143 | + </div> |
| 144 | +</div> |
| 145 | +`; |
0 commit comments