Use prettier for SCSS (#3895)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / ui / slideshow.scss
index 9c4b88ce61b226d1b510b0e02d2ebcfd25e9e0a3..f69198e64e6938327a62e0b4105fed0d25bb224a 100644 (file)
@@ -1,43 +1,43 @@
 .slideshowContainer {
        overflow: hidden;
        position: relative;
-       
+
        > ul:not(.slideshowButtonList) > li:not(:first-child) {
                display: none;
        }
-       
+
        > .slideshowItemList {
                position: absolute;
-               transition: left .8s ease-out;
-               
+               transition: left 0.8s ease-out;
+
                > li.slideshowItem {
                        display: block;
                        float: left;
                        overflow: hidden;
                        position: absolute;
                        top: 0;
-                       
+
                        /* fixes font rendering bug */
                        -webkit-transform: translate3d(0, 0, 0);
                }
        }
-       
+
        > .slideshowButtonList {
                position: absolute;
                right: 0;
                top: 0;
-               
+
                > li {
                        display: inline-block;
-                       
+
                        > a > .icon {
                                color: $wcfButtonBackground;
-                               
+
                                &.active {
                                        color: $wcfButtonPrimaryBackground;
                                }
                        }
-                       
+
                        &:hover > a > .icon {
                                color: $wcfButtonPrimaryBackgroundActive;
                        }