| OLD | NEW |
| 1 * { box-sizing: border-box; } | 1 * { box-sizing: border-box; } |
| 2 | 2 |
| 3 html, body { | 3 html, body { |
| 4 margin: 0; | 4 margin: 0; |
| 5 padding: 0; | 5 padding: 0; |
| 6 | 6 |
| 7 font-size: 16px; | 7 font-size: 16px; |
| 8 font-family: Helvetica, sans-serif; | 8 font-family: Helvetica, sans-serif; |
| 9 | 9 |
| 10 background-color: #f2f2f2; | 10 background-color: #f2f2f2; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 border: 2px solid #bcbcbc; | 173 border: 2px solid #bcbcbc; |
| 174 padding: .5rem; | 174 padding: .5rem; |
| 175 } | 175 } |
| 176 | 176 |
| 177 .testcase-contentaside { | 177 .testcase-contentaside { |
| 178 color: white; | 178 color: white; |
| 179 width: 20%; | 179 width: 20%; |
| 180 vertical-align: top; | 180 vertical-align: top; |
| 181 height: 35%; | 181 height: 35%; |
| 182 padding: .5rem; | 182 padding: .5rem; |
| 183 background-color: red; | |
| 184 float:right; | 183 float:right; |
| 185 margin-left: .5rem; | 184 margin-left: .5rem; |
| 186 display: table-cell; | 185 display: table-cell; |
| 187 } | 186 } |
| 188 | 187 |
| 188 img.blocked { |
| 189 padding: .5rem; |
| 190 background-color: red; |
| 191 } |
| 192 |
| 189 .testcase-image { | 193 .testcase-image { |
| 190 height: 5rem; | 194 height: 5rem; |
| 191 } | 195 } |
| 192 | 196 |
| 193 .testcase-row { | 197 .testcase-row { |
| 194 background-color: white; | 198 background-color: white; |
| 195 padding: .5rem; | 199 padding: .5rem; |
| 196 margin-top: .5rem; | 200 margin-top: .5rem; |
| 197 } | 201 } |
| 198 | 202 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 214 margin-top: 0; | 218 margin-top: 0; |
| 215 margin-bottom: .5rem; | 219 margin-bottom: .5rem; |
| 216 } | 220 } |
| 217 | 221 |
| 218 .testcase-filter { | 222 .testcase-filter { |
| 219 border: 0px solid #ababab; | 223 border: 0px solid #ababab; |
| 220 | 224 |
| 221 margin-top: .5rem; | 225 margin-top: .5rem; |
| 222 } | 226 } |
| 223 | 227 |
| 228 .testcase-teststylesheet, |
| 224 #testcase-scripttarget { | 229 #testcase-scripttarget { |
| 225 padding: .5rem; | 230 padding: .5rem; |
| 226 } | 231 } |
| 227 | 232 |
| 228 .testcase-filter .filter { | 233 .testcase-filter .filter { |
| 229 background-color: #e0e0e0; | 234 background-color: #e0e0e0; |
| 230 margin: 0; | 235 margin: 0; |
| 231 padding: .5rem; | 236 padding: .5rem; |
| 232 padding-bottom: .75rem; | 237 padding-bottom: .75rem; |
| 233 padding-top: .75rem; | 238 padding-top: .75rem; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 } | 274 } |
| 270 .testcase-es-regex-3 { | 275 .testcase-es-regex-3 { |
| 271 width: 100px; | 276 width: 100px; |
| 272 } | 277 } |
| 273 | 278 |
| 274 @media( min-width: 720px ) { | 279 @media( min-width: 720px ) { |
| 275 .abp-container { | 280 .abp-container { |
| 276 width: 75%; | 281 width: 75%; |
| 277 max-width: 900px; | 282 max-width: 900px; |
| 278 } | 283 } |
| 279 } | 284 } |
| 285 |
| 286 .expected .stripes-red, |
| 287 .expected .blocked, |
| 288 .expected #testcase-output, |
| 289 #testcase-output-expected { |
| 290 display: none; |
| 291 } |
| 292 |
| 293 .expected .trap { |
| 294 visibility: hidden; |
| 295 } |
| 296 |
| 297 .expected #testcase-output-expected { |
| 298 display: block; |
| 299 } |
| OLD | NEW |