Commit 7582b8416f6ac380e0add4a8a3be5460f85e3b5d
Remove the unnecessary child selector from details > section
There are no nested sections in a details element.Greg K Nicholson committed on 2/14/2018, 1:17:41 PM
Parent: 7d8fd049789a55f18b635411fc39a63fc09a4529
Files changed
themes/ran/static/style/ran.css | changed |
themes/ran/static/style/ran.css | |||
---|---|---|---|
@@ -263,22 +263,22 @@ | |||
263 | 263 … | padding-right: 1rem; | |
264 | 264 … | float: left; | |
265 | 265 … | } | |
266 | 266 … | ||
267 | -details > section { | ||
267 … | +details section { | ||
268 | 268 … | border-bottom: 1px solid; | |
269 | 269 … | margin-top: 1rem; | |
270 | 270 … | padding-bottom: calc(1rem - 1px); | |
271 | 271 … | } | |
272 | 272 … | ||
273 | - details > section > * { | ||
273 … | + details section > * { | ||
274 | 274 … | display: inline-block; | |
275 | 275 … | margin-right: 1rem; | |
276 | 276 … | opacity: 0; | |
277 | 277 … | transition: opacity var(--slow); | |
278 | 278 … | } | |
279 | 279 … | ||
280 | - details[open] > section > * { | ||
280 … | + details[open] section > * { | ||
281 | 281 … | opacity: 1; | |
282 | 282 … | } | |
283 | 283 … | ||
284 | 284 … | header .image { | |
Built with git-ssb-web