Small less optimizations
authorMarcel Werk <burntime@woltlab.com>
Wed, 18 Apr 2012 14:05:19 +0000 (16:05 +0200)
committerMarcel Werk <burntime@woltlab.com>
Wed, 18 Apr 2012 14:05:19 +0000 (16:05 +0200)
wcfsetup/install/files/style/alerts.less
wcfsetup/install/files/style/attachment.less
wcfsetup/install/files/style/breadcrumbs.less
wcfsetup/install/files/style/layout.less
wcfsetup/install/files/style/sortable.less
wcfsetup/install/files/style/tabs.less
wcfsetup/install/files/style/tabular.less
wcfsetup/install/files/style/tooltip.less
wcfsetup/install/files/style/variables.less
wcfsetup/install/files/style/wbb.less

index 371cadfdcf52b89554c453d9c550a33e9178a95b..2da37f68c9a05d58621eaff237b44bad9fce676e 100644 (file)
@@ -5,13 +5,13 @@
 .error,
 .success,
 .warning {
-       border-radius: @wcfContainerBorderRadius;
        font-weight: bold;
        line-height: 1.5;
        margin-top: @wcfGapMedium;
        padding: @wcfGapSmall @wcfGapMedium @wcfGapSmall 50px;
        position: relative;
        
+       .borderRadius();
        .boxShadowNative(~"0 1px 2px rgba(0, 0, 0, .5), inset 0 0 1px rgba(0, 0, 0, .2)");
        
        &:after {
        }
 }
 
-/* Inline Errors */
-
+/* inline errors */
 .innerError {
-       border-radius: @wcfContainerBorderRadius;
        clear: both;
        color: @wcfErrorColor;
        display: table !important;
        padding: 2px 10px;
        position: relative; /* Firefox support (from version 10 on) is buggy */
        
+       .borderRadius();
        .boxShadowNative(~"0 1px 2px rgba(0, 0, 0, .5), inset 0 0 1px rgba(0, 0, 0, .2)");
        .linearGradient(@wcfErrorBackgroundColor2, @wcfErrorBackgroundColor, @wcfErrorBackgroundColor2);
        .textShadow(@wcfErrorBackgroundColor2);
index de104e58a63129087f2313329a78a3c60a7341cc..895ee0789794a9a5d593e13666123bb26132a7c6 100644 (file)
        > li {
                width: 33%;
                float: left;
-               //background-color: red;
-               //position: relative;
-
+               
                > .thumbnail {
                        width: 48px;
                        height: 48px;
-                       border-radius: 5px;
+                       
+                       .borderRadius();
                }
                
                hgroup {
index 685446d2aa62529a60b0e625846877edc512157f..77f844239155431f79c8559ea75ae2043eecb286 100644 (file)
@@ -5,13 +5,14 @@
 .breadcrumbs {
        background-color: @wcfContentBackgroundColor;
        border: 1px solid @wcfContainerBorderColor;
-       border-radius: @wcfContainerBorderRadius;
        box-sizing: border-box;
        display: block;
        overflow: hidden;
        position: relative;
        text-align: left;
        
+       .borderRadius();
+       
        > ul {
                > li {
                        float: left;
index 29f4c2353754fde1211d8e98b85a11dc31124dbf..9c45c2c190b41b8ff9fbf68e120e5e9415f0dbaa 100644 (file)
@@ -75,7 +75,8 @@ img {
 .container {
        background-color: @wcfContainerBackgroundColor;
        border: 1px solid @wcfContainerBorderColor;
-       border-radius: @wcfContainerBorderRadius;
+       
+       .borderRadius();
 }
 
 .containerPadding {
index 5d5df3a54a1d365537c74f92e14062f93dbfb57f..cfd9ae6dd5abf8c72d1152665bd013213d6fb736 100644 (file)
@@ -2,10 +2,11 @@
        /* todo */
        background-color: @wcfWarningBackgroundColor;
        border: 1px solid @wcfWarningBackgroundColor2;
-       border-radius: 5px;
        color: @wcfWarningColor;
        margin: 3px 0;
        padding: 4px;
+       
+       .borderRadius();
 }
 
 .sortablePlaceholder.sortableInvalidTarget {
index 3cdd6d3cb0d702ae4ba4e05b375a79638e2a0f67..ef9e53afdb398261bdcd960d79ba43fcb8763f35 100644 (file)
@@ -7,7 +7,7 @@
        margin-top: @wcfGapMedium;
        padding: 0 10px;
        position: relative;
-       text-align: center;
+       text-align: left;
        
        ul {
                background-color: @wcfContainerAccentBackgroundColor;
index 39821235247ba8d16a6e95f1b78d1fb4606916a5..db5302beb0b38c1644c45edbf5e34b1d7cfd99e4 100644 (file)
@@ -11,7 +11,7 @@
        padding: 5px 7px;
 
        h1 {
-               font-size: 120%;
+               font-size: @wcfTitleFontSize;
                font-weight: bold;
                
                .textShadow(@wcfTabularBoxBackgroundColor);
 .tabularBox:not(.tabularBoxTitle) .table {
        thead tr:first-child th {
                &:first-child {
-                       .borderRadius(@wcfContainerBorderRadius - 1, 0, 0, 0);
+                       .borderRadius(@wcfContainerBorderRadius - 2, 0, 0, 0);
                }
                
                &:last-child {
-                       .borderRadius(0, @wcfContainerBorderRadius - 1, 0, 0);
+                       .borderRadius(0, @wcfContainerBorderRadius - 2, 0, 0);
                }
        }
 }
 .tabularBox .table {
        tbody tr:last-child td {
                &:first-child {
-                       .borderRadius(0, 0, 0, @wcfContainerBorderRadius - 1);
+                       .borderRadius(0, 0, 0, @wcfContainerBorderRadius - 2);
                }
                
                &:last-child {
-                       .borderRadius(0, 0, @wcfContainerBorderRadius - 1, 0);
+                       .borderRadius(0, 0, @wcfContainerBorderRadius - 2, 0);
                }
        }
 }
index b8e85a28205be52387b582877ff7c277d858e6f9..47ad60af313d3c95c76f57af5521ca6d1a866c59 100644 (file)
@@ -1,14 +1,8 @@
 /* ############## Balloon Tooltips ############## */
 
 /* Globals */
-
-.jsTooltip { /* Do not change this style */
-       cursor: pointer;
-}
-
 .balloonTooltip {
        background-color: @wcfTooltipBackgroundColor;
-       border-radius: @wcfContainerBorderRadius;
        color: @wcfTooltipColor;
        font-size: .85em;
        max-width: 300px;
@@ -16,6 +10,7 @@
        position: absolute;
        z-index: 800;
        
+       .borderRadius();
        .boxShadow(0, 3px, rgba(0, 0, 0, .3), 7px); 
        
        .pointer {
index 2cafa0ff68aa28c4ab3f0132c6ac5ad3431ab9e0..4ed1ae15d2ab34e06080fc6c501cc52c2e58d555 100644 (file)
@@ -13,7 +13,7 @@
 @wcfContainerAccentBackgroundColor: rgba(241, 245, 250, 1); // light variantion of the container bg color
 @wcfContainerHoverBackgroundColor: rgba(216, 231, 245, 1); // bg color for hover effects
 @wcfContainerBorderColor: #bcd; // border color for containers
-@wcfContainerBorderRadius: 5px; // border radius
+@wcfContainerBorderRadius: 6px; // border radius
 
 /* ### box header (table header) ### */
 @wcfTabularBoxBackgroundColor: #369; // bg color
index 2a1c1bfc2d8c600c3e89f2e6e4ff0d40583bc0cd..d3f162dca3d3833071b7de29017fed32046536e6 100644 (file)
@@ -51,9 +51,9 @@
                > div {
                        background-color: @wcfContentBackgroundColor;
                        padding: @wcfGapSmall;
-                       border-radius: @wcfContainerBorderRadius;
                        margin-right: @wcfGapSmall;
                        
+                       .borderRadius();
                        .boxShadowNative(~"inset 0 1px 1px rgba(0, 0, 0, .1)");
                }
                
 /* ############## Post Preview ############## */
 .wbbPostPreview {
        background-color: @wcfTooltipBackgroundColor;
-       border-radius: @wcfContainerBorderRadius;
        color: @wcfTooltipColor;
        margin-bottom: 10px;
        max-width: 450px;
        position: absolute;
        z-index: 320;
        
+       .borderRadius();
        .boxShadow(0, 3px, rgba(0, 0, 0, .3), 7px);
        
        .pointer {