{if $__wcf->getPageMenu()->getMenuItems('footer')|count > 0}
- <div class="wcf-menu">
- <ul>
- {foreach from=$__wcf->getPageMenu()->getMenuItems('footer') item=menuItem}
- <li><a href="{$menuItem->getProcessor()->getLink()}">{lang}{$menuItem->menuItem}{/lang}{if $menuItem->getProcessor()->getNotifications()} <span class="wcf-badge">{#$menuItem->getProcessor()->getNotifications()}</span>{/if}</a></li>
- {/foreach}
- </ul>
- </div>
+ <ul>
+ {foreach from=$__wcf->getPageMenu()->getMenuItems('footer') item=menuItem}
+ <li><a href="{$menuItem->getProcessor()->getLink()}">{lang}{$menuItem->menuItem}{/lang}{if $menuItem->getProcessor()->getNotifications()} <span class="badge badgeUpdate">{#$menuItem->getProcessor()->getNotifications()}</span>{/if}</a></li>
+ {/foreach}
+ </ul>
{/if}
<body{if $templateName|isset} id="tpl{$templateName|ucfirst}"{/if}>
{include file='header' sandbox=false}
- <p class="wcf-error">{lang}wcf.global.error.permissionDenied{/lang}</p>
+<p class="error">{lang}wcf.global.error.permissionDenied{/lang}</p>
{if ENABLE_DEBUG_MODE}
<!--
<body{if $templateName|isset} id="tpl{$templateName|ucfirst}"{/if}>
{include file='header' sandbox=false}
- <div class="wcf-success">
- <p>{@$message}</p>
- <p><a href="{$url}">{lang}wcf.global.redirect.url{/lang}</a></p>
- </div>
+<div class="success">
+ <p>{@$message}</p>
+ <p><a href="{$url}">{lang}wcf.global.redirect.url{/lang}</a></p>
+</div>
{include file='footer' sandbox=false}
</body>
<body{if $templateName|isset} id="tpl{$templateName|ucfirst}"{/if}>
{include file='header' sandbox=false}
- <p id="errorMessage" class="wcf-error">
- {@$message}
- </p>
- <script type="text/javascript">
- //<![CDATA[
- if (document.referrer) {
- $('#errorMessage').append('<br /><a href="' + document.referrer + '">{lang}wcf.global.error.backward{/lang}</a>');
- }
- //]]>
- </script>
+<p id="errorMessage" class="error">
+ {@$message}
+</p>
+<script type="text/javascript">
+ //<![CDATA[
+ if (document.referrer) {
+ $('#errorMessage').append('<br /><a href="' + document.referrer + '">{lang}wcf.global.error.backward{/lang}</a>');
+ }
+ //]]>
+</script>
{if ENABLE_DEBUG_MODE}
<!--
@import "codebox.less";
@import "pagination.less";
@import "comments.less";
+@import "user.less";
@import "message.less";
@import "dialog.less";
@import "tooltip.less";
-@import "user.less";
/* application */
@import "wbb.less";
\ No newline at end of file
/* Quote Box */
.quoteBox {
- /*background: url("...quote.svg") 12px 12px no-repeat #fff;*/
background-color: @wcfContentBackgroundColor;
+ background-image: url('../images/quote.png');
+ background-position: 12px 12px;
+ background-repeat: no-repeat;
padding: 10px 20px 10px 58px;
header {
}
fieldset legend {
- color: @wcfLinkColor;
margin: auto -@wcfGapSmall;
padding: 0 @wcfGapSmall 0;
.textShadow(@wcfContainerAccentBackgroundColor);
}
+fieldset legend label {
+ color: @wcfColor;
+}
+
fieldset legend ~ p {
margin-bottom: @wcfGapMedium;
}
}
.sidebar fieldset legend {
- color: @wcfColor;
padding: 0;
text-transform: uppercase;
dl.dataList {
display: inline-block;
- font-size: 90%;
margin: 0;
- position: static;
dd {
display: inline-block;
display: block;
}
- > div {
+ > div {
border-top: @wcfContainerBorderWidth dotted @wcfContainerBorderColor;
display: block;
overflow: hidden;
padding: 10px 0;
}
- .signature {
- overflow: hidden;
- padding: 10px 0 20px;
+ > *:last-child {
+ padding-bottom: 20px;
}
}
.contentNavigation {
display: table;
- margin-top: @wcfGapMedium;
width: 100%;
+
+ > :first-child:before {
+ content: "";
+ display: block;
+ margin-top: @wcfGapMedium;
+ }
+
nav ul {
float: left;
+.simpleUserList {
+ h2, p, dl {
+ font-size: 85%;
+ }
+
+ p, dl {
+ margin-bottom: 2px;
+ }
+}
+
+.userList {
+ > li {
+ padding: 0;
+ float: left;
+ width: 50%;
+ height: 90px;
+ overflow: hidden;
+
+ &:nth-child(2n) {
+ float: right;
+
+ &:last-child {
+ .borderRadius(0, 0, @wcfContainerBorderRadius - 1, 0);
+ }
+ }
+
+ &:nth-child(2n+1) {
+ &:last-child {
+ .borderRadius(0, 0, 0, @wcfContainerBorderRadius - 1);
+ }
+ }
+
+ &:nth-last-child(2) {
+ .borderRadius(0, 0, 0, @wcfContainerBorderRadius - 1);
+ }
+
+ &:first-child {
+ .borderRadius(@wcfContainerBorderRadius - 1, 0, 0, 0);
+ }
+
+ &:nth-child(2) {
+ .borderRadius(0, @wcfContainerBorderRadius - 1, 0, 0);
+ }
+
+ > div {
+ padding: 14px 21px;
+ }
+ }
+
+ &:after {
+ content: "";
+ display: table;
+ clear: both;
+ }
+}
\ No newline at end of file
@wcfInputHoverBorderColor: darken(@wcfHoverBackgroundColor, 25%);
/* form states and alerts */
-@warningColor: #c09853;
-@warningBackgroundColor: #fcf8e3;
-@warningBorderColor: darken(spin(@warningBackgroundColor, -10), 3%);
+@warningColor: #990;
+@warningBackgroundColor: #ffd;
+@warningBorderColor: #cc0;
-@errorColor: #b94a48;
-@errorBackgroundColor: #f2dede;
-@errorBorderColor: darken(spin(@errorBackgroundColor, -10), 3%);
+@errorColor: #c00;
+@errorBackgroundColor: #fee;
+@errorBorderColor: #f99;
-@successColor: #468847;
-@successBackgroundColor: #dff0d8;
-@successBorderColor: darken(spin(@successBackgroundColor, -10), 5%);
+@successColor: #090;
+@successBackgroundColor: #efe;
+@successBorderColor: #0c0;
-@infoColor: #3a87ad;
-@infoBackgroundColor: #d9edf7;
-@infoBorderColor: darken(spin(@infoBackgroundColor, -10), 7%);
+@infoColor: #68b;
+@infoBackgroundColor: #def;
+@infoBorderColor: #9be;
/* layouts */
@wcfLayoutFluidGap: 21px;