.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);
> li {
width: 33%;
float: left;
- //background-color: red;
- //position: relative;
-
+
> .thumbnail {
width: 48px;
height: 48px;
- border-radius: 5px;
+
+ .borderRadius();
}
hgroup {
.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;
.container {
background-color: @wcfContainerBackgroundColor;
border: 1px solid @wcfContainerBorderColor;
- border-radius: @wcfContainerBorderRadius;
+
+ .borderRadius();
}
.containerPadding {
/* todo */
background-color: @wcfWarningBackgroundColor;
border: 1px solid @wcfWarningBackgroundColor2;
- border-radius: 5px;
color: @wcfWarningColor;
margin: 3px 0;
padding: 4px;
+
+ .borderRadius();
}
.sortablePlaceholder.sortableInvalidTarget {
margin-top: @wcfGapMedium;
padding: 0 10px;
position: relative;
- text-align: center;
+ text-align: left;
ul {
background-color: @wcfContainerAccentBackgroundColor;
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);
}
}
}
/* ############## 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;
position: absolute;
z-index: 800;
+ .borderRadius();
.boxShadow(0, 3px, rgba(0, 0, 0, .3), 7px);
.pointer {
@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
> 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 {