/**
- * #########################################################################
- * ### CAUTION: This is the LESS-compatible stylesheet used in the whole ###
- * ### WCF, but during WCFSetup the stylesheet wcf.css is used! ###
- * #########################################################################
- */
-
-/**
- * WCF Testing Styles
+ * WCF Styles
*
* @author Harald Szekely
- * @copyright 2011 WoltLab GmbH
+ * @copyright 2011-2012 WoltLab GmbH
*/
/* ############## Reset ############## */
/* Back Images */
/* Back Color1 (White) */
-@backImage: url('../../../images/header.png');
+@backImage: url('../images/header.png');
/* Back Colors */
+/* Just a future experiment! Has no function yet.
+
+.mxBackColorSwitch (@xxx) when (lightness(@backColor1) >= 50%) {
+ color: black;
+}
+
+.mxBackColorSwitch (@xxx) when (lightness(@backColor1) < 50%) {
+ color: white;
+}
+
+*/
+
/* -- -- -- LESS: Fonts -- -- -- */
/* Font Colors */
+/* Test */
+
+.mxTransition1 (@object: color, @time: 1s, @type: linear) {
+ -webkit-transition: @arguments;
+ -khtml-transition: @arguments;
+ -moz-transition: @arguments;
+ -ms-transition: @arguments;
+ -o-transition: @arguments;
+ transition: @arguments;
+}
+
color: @fontColor3;
text-decoration: none;
- -webkit-transition: color .1s linear;
- -khtml-transition: color .1s linear;
- -moz-transition: color .1s linear;
- -ms-transition: color .1s linear;
- -o-transition: color .1s linear;
- transition: color .1s linear;
+ .mxTransition1;
}
a:hover {
/* -- -- -- URLs -- -- -- */
.wcf-externalURL {
- background-image: url('../../icon/externalURL1.svg');
+ background-image: url('../icon/externalURL1.svg');
background-position: right center;
background-repeat: no-repeat;
padding-right: 17px;
.wcf-eMailLink,
a[href^="mailto:"] {
- background-image: url('../../icon/email1.svg');
+ background-image: url('../icon/email1.svg');
background-position: left center;
background-repeat: no-repeat;
padding-left: 17px;
/* Badge Types */
.wcf-badgeBorder { /* ToDo: Obsolete? */
- border: @borderWidthBadge borderStyleBadge #ccc;
+ border: @borderWidthBadge @borderStyleBadge #ccc;
}
.wcf-badgeBlue {
-o-box-shadow: 0 1px 7px rgba(0, 0, 0, .5);
box-shadow: 0 1px 7px rgba(0, 0, 0, .5);
- -webkit-transition: color background .1s ease;
- -khtml-transition: color background .1s ease;
- -moz-transition: color background .1s ease;
- -ms-transition: color background .1s ease;
- -o-transition: color background .1s ease;
- transition: color background .1s ease;
+ .mxTransition1(color background, .1s, ease); /* This multiple shorthand format seems to be deprecated! */
}
.wcf-dropdown.open {
color: #ccc;
cursor: pointer;
- -webkit-transition: color background .2s linear;
- -khtml-transition: color background .2s linear;
- -moz-transition: color background .2s linear;
- -ms-transition: color background .2s linear;
- -o-transition: color background .2s linear;
- transition: color background .2s linear;
+ .mxTransition1(color background, .2s); /* This multiple shorthand format seems to be deprecated! */
}
.wcf-dropdown > div {
-o-box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
- -webkit-transition: background .2s linear;
- -khtml-transition: background .2s linear;
- -moz-transition: background .2s linear;
- -ms-transition: background .2s linear;
- -o-transition: background .2s linear;
- transition: background .2s linear;
+ .mxTransition1(background, .2s);
-webkit-animation-name: showTopMenu;
-webkit-animation-duration: .3s;
top: auto;
}
}
-@-moz-keyframes showTopMenu {
+/* LESS doesn't like that! Wtf?
+@-khtml-keyframes showTopMenu {
0% {
opacity: 0;
top: -50px;
top: auto;
}
}
-/* LESS doesn't like that! Wtf?
-@-khtml-keyframes showTopMenu {
+*/
+@-moz-keyframes showTopMenu {
0% {
opacity: 0;
top: -50px;
top: auto;
}
}
-*/
@-ms-keyframes showTopMenu {
0% {
opacity: 0;
/* ToDo: Top-Menu Dropdown Caption */
.wcf-topMenu > div > ul > li > .wcf-dropdownCaption {
- background-image: url('../../icon/dropdown2.svg');
+ background-image: url('../icon/dropdown2.svg');
background-position: 97% center;
background-repeat: no-repeat;
padding-right: 15px !important;
-o-box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
- -webkit-transition: background .2s linear;
- -khtml-transition: background .2s linear;
- -moz-transition: background .2s linear;
- -ms-transition: background .2s linear;
- -o-transition: background .2s linear;
- transition: background .2s linear;
-
+ .mxTransition1(background, .2s);
}
.wcf-search:hover {
-o-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
box-shadow: 0 0 5px rgba(0, 0, 0, .1);*/
- -webkit-transition: margin .1s ease;
- -khtml-transition: margin .1s ease;
- -moz-transition: margin .1s ease;
- -ms-transition: margin .1s ease;
- -o-transition: margin .1s ease;
- transition: margin .1s ease;
+ .mxTransition1(margin, .1s, ease);
}
section.wcf-content:after {
overflow: hidden;
z-index: 10;
- -webkit-transition: width .1s ease;
- -khtml-transition: width .1s ease;
- -moz-transition: width .1s ease;
- -ms-transition: width .1s ease;
- -o-transition: width .1s ease;
- transition: width .1s ease;
+ .mxTransition1(width, .1s, ease)
}
/* Toggle for sidebar orientation (options: left|right|top|bottom) */
.left .wcf-collapsibleSidebarButton {
border-right: @borderWidthButton @borderStyleButton darken(@backColor1, 10%);
- background-image: url('../../icon/arrowLeft1.svg'), url('../../icon/arrowLeft1.svg');
+ background-image: url('../icon/arrowLeft1.svg'), url('../icon/arrowLeft1.svg');
left: 250px;
- -webkit-transition: left .1s ease;
- -khtml-transition: left .1s ease;
- -moz-transition: left .1s ease;
- -ms-transition: left .1s ease;
- -o-transition: left .1s ease;
- transition: left .1s ease;
+ .mxTransition1(left, .1s, ease)
}
.left .wcf-collapsibleSidebarButton span {
- background-image: url('../../icon/arrowLeft1.svg');
+ background-image: url('../icon/arrowLeft1.svg');
}
.right .wcf-collapsibleSidebarButton {
border-left: @borderWidthButton @borderStyleButton darken(@backColor1, 10%);
- background-image: url('../../icon/arrowRight1.svg'), url('../../icon/arrowRight1.svg');
+ background-image: url('../icon/arrowRight1.svg'), url('../icon/arrowRight1.svg');
right: 250px;
- -webkit-transition: right .1s ease;
- -khtml-transition: right .1s ease;
- -moz-transition: right .1s ease;
- -ms-transition: right .1s ease;
- -o-transition: right .1s ease;
- transition: right .1s ease;
+ .mxTransition1(wight, .1s, ease)
}
.right .wcf-collapsibleSidebarButton span {
- background-image: url('../../icon/arrowRight1.svg');
+ background-image: url('../icon/arrowRight1.svg');
}
/* Collapsed (Left) */
.left .collapsed .wcf-collapsibleSidebarButton {
- background-image: url('../../icon/arrowRight1.svg'), url('../../icon/arrowRight1.svg');
+ background-image: url('../icon/arrowRight1.svg'), url('../icon/arrowRight1.svg');
left: 0;
}
.left .collapsed .wcf-collapsibleSidebarButton span {
- background-image: url('../../icon/arrowRight1.svg');
+ background-image: url('../icon/arrowRight1.svg');
}
/* Collapsed (Right) */
.right .collapsed .wcf-collapsibleSidebarButton {
- background-image: url('../../icon/arrowLeft1.svg'), url('../../icon/arrowLeft1.svg');
+ background-image: url('../icon/arrowLeft1.svg'), url('../icon/arrowLeft1.svg');
right: 0;
}
.right .collapsed .wcf-collapsibleSidebarButton span {
- background-image: url('../../icon/arrowLeft1.svg');
+ background-image: url('../icon/arrowLeft1.svg');
}
}
.wcf-sidebarContent > .collapsibleMenus > h1 {
- background-image: url('../../icon/arrowRight.svg');
+ background-image: url('../icon/arrowRight.svg');
background-position: 15px center;
background-size: 16px;
background-repeat: no-repeat;
}
.wcf-sidebarContent > .collapsibleMenus h1.activeMenuItem {
- background-image: url('../../icon/arrowDown.svg');
+ background-image: url('../icon/arrowDown.svg');
}
@media screen and (min-width: 480px), screen and (min-device-width: 480px) {
-o-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .1);
box-shadow: inset 0 1px 5px rgba(0, 0, 0, .1);
- -webkit-transition: background-color, border .2s linear;
- -khtml-transition: background-color, border .2s linear;
- -moz-transition: background-color, border .2s linear;
- -ms-transition: background-color, border .2s linear;
- -o-transition: background-color, border .2s linear;
- transition: background-color, border .2s linear;
+ .mxTransition1(background-color border, 2s); /* This multiple shorthand format seems to be deprecated! */
}
/* Hover State */
}
.wcf-preInput .wcf-dropdownCaption span.active {
- background-image: url('../../icon/dropdown1.svg');
+ background-image: url('../icon/dropdown1.svg');
background-position: right center;
background-repeat: no-repeat;
padding-right: 10px;
.wcf-preInput .wcf-dropdown > li.missingValue { /* ToDo */
/* color: #990; */
- background-image: url('../../icon/systemWarning.svg');
+ background-image: url('../icon/systemWarning.svg');
background-size: 16px;
background-position: 95% center;
background-repeat: no-repeat;
background-color: @backColor1;
padding: 2px 10px;
- -webkit-transition: color .1s linear;
- -khtml-transition: color .1s linear;
- -moz-transition: color .1s linear;
- -ms-transition: color .1s linear;
- -o-transition: color .1s linear;
- transition: color .1s linear;
+ .mxTransition1;
}
.wcf-menu ul li:not(.ui-state-active) a:hover {
position: relative;
max-width: 30%;
- -webkit-transition: max-width .2s linear;
- -khtml-transition: max-width .2s linear;
- -moz-transition: max-width .2s linear;
- -ms-transition: max-width .2s linear;
- -o-transition: max-width .2s linear;
- transition: max-width .2s linear;
+ .mxTransition1(max-width, .2s);
}
.wcf-breadcrumbs > ul > li:hover {
.wcf-breadcrumbs > ul > li:first-child a {
border-radius: 5px 0 0 5px;
- background-image: url('../../icon/home1.svg');
+ background-image: url('../icon/home1.svg');
background-position: 7px center;
background-repeat: no-repeat;
background-size: 16px;
padding: 7px;
- -webkit-transition: background .2s linear;
- -khtml-transition: background .2s linear;
- -moz-transition: background .2s linear;
- -ms-transition: background .2s linear;
- -o-transition: background .2s linear;
- transition: background .2s linear;
+ .mxTransition1(background, .2s);
}
thead th a {
border-right: 1px @borderStyle rgba(255, 255, 255, .3);
padding: 5px;
- -webkit-transition: background .1s linear;
- -khtml-transition: background .1s linear;
- -moz-transition: background .1s linear;
- -ms-transition: background .1s linear;
- -o-transition: background .1s linear;
- transition: background .1s linear;
+ .mxTransition1(background);
}
tbody td:last-child {
max-width: 250px;
opacity: 0;
- -webkit-transition: opacity .2s linear;
- -khtml-transition: opacity .2s linear;
- -moz-transition: opacity .2s linear;
- -ms-transition: opacity .2s linear;
- -o-transition: opacity .2s linear;
- transition: opacity .2s linear;
+ .mxTransition1(opacity, .2s);
}
.wcf-pageNavigation ul li.children:hover .wcf-dropdown {
border: 1px @borderStyle #9be;
background-color: #def;
- background-image: url('../../icon/systemInfo.svg'), -webkit-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
- background-image: url('../../icon/systemInfo.svg'), -khtml-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
- background-image: url('../../icon/systemInfo.svg'), -moz-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
- background-image: url('../../icon/systemInfo.svg'), -ms-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
- background-image: url('../../icon/systemInfo.svg'), -o-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
- background-image: url('../../icon/systemInfo.svg'), repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
+ background-image: url('../icon/systemInfo.svg'), -webkit-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
+ background-image: url('../icon/systemInfo.svg'), -khtml-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
+ background-image: url('../icon/systemInfo.svg'), -moz-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
+ background-image: url('../icon/systemInfo.svg'), -ms-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
+ background-image: url('../icon/systemInfo.svg'), -o-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
+ background-image: url('../icon/systemInfo.svg'), repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .3) 15px, rgba(255, 255, 255, .3) 30px);
background-size: 24px, auto;
background-position: 13px center, left top;
border: 1px @borderStyle #0c0;
background-color: #efe;
- background-image: url('../../icon/systemSuccess.svg'), -webkit-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemSuccess.svg'), -khtml-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemSuccess.svg'), -moz-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemSuccess.svg'), -ms-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemSuccess.svg'), -o-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemSuccess.svg'), repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemSuccess.svg'), -webkit-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemSuccess.svg'), -khtml-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemSuccess.svg'), -moz-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemSuccess.svg'), -ms-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemSuccess.svg'), -o-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemSuccess.svg'), repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
background-size: 24px, auto;
background-position: 13px center, left top;
border: 1px @borderStyle #cc0;
background-color: #ffd;
- background-image: url('../../icon/systemWarning.svg'), -webkit-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemWarning.svg'), -khtml-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemWarning.svg'), -moz-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemWarning.svg'), -ms-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemWarning.svg'), -o-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemWarning.svg'), repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemWarning.svg'), -webkit-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemWarning.svg'), -khtml-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemWarning.svg'), -moz-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemWarning.svg'), -ms-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemWarning.svg'), -o-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemWarning.svg'), repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
background-size: 24px, auto;
background-position: 13px center, left top;
border: 1px @borderStyle #f99;
background-color: #fee;
- background-image: url('../../icon/systemError.svg'), -webkit-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemError.svg'), -khtml-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemError.svg'), -moz-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemError.svg'), -ms-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemError.svg'), -o-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
- background-image: url('../../icon/systemError.svg'), repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemError.svg'), -webkit-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemError.svg'), -khtml-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemError.svg'), -moz-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemError.svg'), -ms-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemError.svg'), -o-repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
+ background-image: url('../icon/systemError.svg'), repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, .5) 15px, rgba(255, 255, 255, .5) 30px);
background-size: 24px, auto;
background-position: 13px center, left top;
border: 1px @borderStyle #f99;
.mxBorderRadius(7px);
background-color: rgba(255, 238, 238, 1);
- background-image: url('../../icon/systemError.svg');
+ background-image: url('../icon/systemError.svg');
background-size: 16px;
background-position: 5px center;
background-repeat: no-repeat;
width: auto;
z-index: 500;
- -webkit-transition: top .5s linear;
- -khtml-transition: top .5s linear;
- -moz-transition: top .5s linear;
- -ms-transition: top .5s linear;
- -o-transition: top .5s linear;
- transition: top .5s linear;
+ .mxTransition1(top, .5s);
}
.wcf-systemNotification.open {
}
.wcf-dialogCloseButton {
- background-image: url('../../icon/delete2.svg');
+ background-image: url('../icon/delete2.svg');
background-size: 32px;
background-position: top left;
background-repeat: no-repeat;
.wcf-overlayLoading {
background-color: @backColor1;
- background-image: url('../../icon/spinner1.svg');
+ background-image: url('../icon/spinner1.svg');
background-position: center center;
background-size: 32px;
background-repeat: no-repeat;
.wcf-clipboardEditor > ul > li span {
text-decoration: none !important;
cursor: pointer;
- background-image: url('../../icon/dropdown1.svg');
+ background-image: url('../icon/dropdown1.svg');
background-position: right center;
background-repeat: no-repeat;
margin-right: 5px;
/* LESS doesn't like that! Wtf?
@-khtml-keyframes glowButtons {
0% {
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 0 13px rgba(102, 153, 204, .5);
+ -khtml-box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 0 13px rgba(102, 153, 204, .5);
}
100% {
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 0 13px rgba(102, 153, 204, .1);
+ -khtml-box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 0 13px rgba(102, 153, 204, .1);
}
}
*/
height: 150px;
overflow: hidden;
- -webkit-transition: background, border, color .1s linear;
- -khtml-transition: background, border, color .1s linear;
- -moz-transition: background, border, color .1s linear;
- -ms-transition: background, border, color .1s linear;
- -o-transition: background, border, color .1s linear;
- transition: background, border, color .1s linear;
+ .mxTransition1(background border color); /* This multiple shorthand format seems to be deprecated! */
}
.wcf-infoPackagePlugin a {
width: 139px;
opacity: 0;
- -webkit-transition: opacity .1s linear;
- -khtml-transition: opacity .1s linear;
- -moz-transition: opacity .1s linear;
- -ms-transition: opacity .1s linear;
- -o-transition: opacity .1s linear;
- transition: opacity .1s linear;
+ .mxTransition1(opacity);
}
.wcf-infoPackagePlugin:hover > div > a > small {
.wcf-infoPackagePlugin footer nav {
opacity: 0;
- -webkit-transition: opacity .1s linear;
- -khtml-transition: opacity .1s linear;
- -moz-transition: opacity .1s linear;
- -ms-transition: opacity .1s linear;
- -o-transition: opacity .1s linear;
- transition: opacity .1s linear;
+ .mxTransition1(opacity);
}
.wcf-infoPackageApplication:hover footer nav,