Added sectionContainer CSS class
authorMarcel Werk <burntime@woltlab.com>
Mon, 30 Oct 2017 13:04:40 +0000 (14:04 +0100)
committerMarcel Werk <burntime@woltlab.com>
Mon, 30 Oct 2017 13:04:55 +0000 (14:04 +0100)
wcfsetup/install/files/style/ui/wsc31.scss

index 68a5459c1df6918ab682b648a65310d5f3a0c756..3bd34c39fabfd2710167aa05c21d971702a615d9 100644 (file)
@@ -16,7 +16,8 @@
        
        // sheet-like presentation of content containers
        .content > .section,
-       .content > form {
+       .content > form,
+       .sectionContainer {
                border: 1px solid $wcfContentContainerBorder;
                background-color: $wcfContentContainerBackground;
                padding: 20px;
                }
        }
        
+       .content > .section + .sectionContainer,
+       .content > form + .sectionContainer {
+               margin-top: 40px;
+       }
+       
        .content > form {
                margin-top: 40px;
        }
        
        .contentHeader + .section,
-       .contentHeader + form {
+       .contentHeader + form,
+       .contentHeader + .sectionContainer {
                margin-top: 30px;
        }