Commit 941ec5382505b9eb739fd78f7f61bd4779866134
Reinstate the child selector in details > section
There *are* nested section elements in listings' details.Greg K Nicholson committed on 2/14/2018, 4:10:13 PM
Parent: b2caa2645823b5f7c08c4ae7989d533b55e51def
Files changed
themes/ran/static/style/ran.css | changed |
themes/ran/static/style/ran.css | ||
---|---|---|
@@ -264,22 +264,22 @@ | ||
264 | 264 … | padding-right: 1rem; |
265 | 265 … | float: left; |
266 | 266 … | } |
267 | 267 … | |
268 | -details section { | |
268 … | +details > section { | |
269 | 269 … | border-bottom: 1px solid; |
270 | 270 … | margin-top: 1rem; |
271 | 271 … | padding-bottom: calc(1rem - 1px); |
272 | 272 … | } |
273 | 273 … | |
274 | - details section > * { | |
274 … | + details > section > * { | |
275 | 275 … | display: inline-block; |
276 | 276 … | margin-right: 1rem; |
277 | 277 … | opacity: 0; |
278 | 278 … | transition: opacity var(--slow); |
279 | 279 … | } |
280 | 280 … | |
281 | - details[open] section > * { | |
281 … | + details[open] > section > * { | |
282 | 282 … | opacity: 1; |
283 | 283 … | } |
284 | 284 … | |
285 | 285 … | header .image { |
Built with git-ssb-web