From: Luzifr Date: Mon, 20 Feb 2012 19:16:14 +0000 (+0100) Subject: Introducing the "container"-class X-Git-Tag: 2.0.0_Beta_1~1331 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=41f6292da8ae63d33ed787906f3308374c972829;p=GitHub%2FWoltLab%2FWCF.git Introducing the "container"-class This is a new generic container for surrounding blocks of text with an optional leading icon, which helps to have less style-declarations. The good thing: Icon-size is free. The box collapses if there's no icon given or if it doesn't load. The class "containerIcon" can be set onto an icon or an element around the icon. Note: This box does unfortunately not support RTL in WebKit-browsers! This seems to be a bug in WebKit, since all other browsers support that. The box-style may change in the future. Implemented the new classes on main-headings. --- diff --git a/wcfsetup/install/files/acp/style/wcf.css b/wcfsetup/install/files/acp/style/wcf.css index 3af7324af3..a74a93db06 100644 --- a/wcfsetup/install/files/acp/style/wcf.css +++ b/wcfsetup/install/files/acp/style/wcf.css @@ -139,6 +139,49 @@ a[href^="mailto:"] { top: -9000px; } + + +/* ############## Container ############## */ + +/* -- -- -- Globals -- -- -- */ + +/** + * This is a generic container for surrounding blocks of + * text with an optional leading icon. The icon-size is + * free. The box collapses if there's no icon given or + * if it doesn't load. + * Note: + * This box does not support RTL in WebKit-browsers! + * Thus the box-style may change in the future. + */ + +.wcf-container { + display: table; + width: 100%; +} + +.wcf-containerIcon { + display: table-cell; +} + +img.wcf-containerIcon { + display: table-cell; + margin-right: 1em; +} + +.wcf-containerIcon img { + margin-right: 1em; +} + +.wcf-containerContent { + display: table-cell; + width: 100%; + vertical-align: top; + position: relative; +} + + + /* Floated Elements */ .floatContainer:after { @@ -367,6 +410,116 @@ table .wcf-label { +/* ############## ToDo: Dropdown ############## */ + +/* Dropdown Caption */ + +.wcf-dropdownCaption, +.wcf-dropdownCaption a { + text-decoration: none; + cursor: pointer; + display: inline-block; +} + +.wcf-dropdownCaption:hover, +.wcf-dropdownCaption a:hover { + text-decoration: none; +} + +/* Dropdown */ + +.wcf-dropdown { + color: rgba(255, 255, 255, 1); + border-width: 1px; + border-style: solid; + border-color: rgba(255, 255, 255, .7); + border-radius: 5px; + background-color: rgba(0, 0, 0, .7); + margin-top: 25px; + display: none; + position: absolute; + top: 0; + left: 0; + z-index: 400; + overflow: hidden; + + -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, .5); + -moz-box-shadow: 0 1px 7px rgba(0, 0, 0, .5); + -ms-box-shadow: 0 1px 7px rgba(0, 0, 0, .5); + -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; + -moz-transition: color background .1s ease; + -ms-transition: color background .1s ease; + -o-transition: color background .1s ease; + transition: color background .1s ease; +} + +.wcf-dropdown.open { + display: block; +} + +/* Dropdown Items */ + +.wcf-dropdown > li, +.wcf-dropdown > div { + text-shadow: none; + color: #ccc; + cursor: pointer; + + -webkit-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; +} + +.wcf-dropdown > div { + padding: 5px 7px; +} + +.wcf-dropdown > :first-child { + border-top-left-radius: 5px; + border-top-right-radius: 5px; +} + +.wcf-dropdown > :last-child { + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; +} + +.wcf-dropdown > :hover:not(ul):not(.pointer), +.wcf-dropdown > .active { + color: rgba(255, 255, 255, 1); + cursor: pointer; + background-color: rgba(0, 0, 0, .5); +} + +.wcf-dropdown > li.divider:not(:first-child) { + border-top: 1px solid rgba(255, 255, 255, .7); +} + +.wcf-dropdown > li { + text-decoration: none; + padding: 5px 7px; + display: block; +} + +.wcf-dropdown > li a { + text-decoration: none; + color: #ccc; + padding: -5px -7px; + display: block; +} + +.wcf-dropdown > li a:hover { + color: rgba(255, 255, 255, 1); + background-color: rgba(0, 0, 0, .5); +} + + + /* ############## Body ############## */ /* Globals */ @@ -1474,8 +1627,8 @@ section.wcf-content .wcf-content { /* ############## Status Display ############## */ .wcf-statusDisplay { - float: right; padding: 1px 0; + float: right; } .wcf-statusDisplay .wcf-statusIcons li { @@ -1484,117 +1637,6 @@ section.wcf-content .wcf-content { - -/* ############## ToDo: Dropdown ############## */ - -/* Dropdown Caption */ - -.wcf-dropdownCaption, -.wcf-dropdownCaption a { - text-decoration: none; - cursor: pointer; - display: inline-block; -} - -.wcf-dropdownCaption:hover, -.wcf-dropdownCaption a:hover { - text-decoration: none; -} - -/* Dropdown */ - -.wcf-dropdown { - color: rgba(255, 255, 255, 1); - border-width: 1px; - border-style: solid; - border-color: rgba(255, 255, 255, .7); - border-radius: 5px; - background-color: rgba(0, 0, 0, .7); - margin-top: 25px; - display: none; - position: absolute; - top: 0; - left: 0; - z-index: 400; - overflow: hidden; - - -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, .5); - -moz-box-shadow: 0 1px 7px rgba(0, 0, 0, .5); - -ms-box-shadow: 0 1px 7px rgba(0, 0, 0, .5); - -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; - -moz-transition: color background .1s ease; - -ms-transition: color background .1s ease; - -o-transition: color background .1s ease; - transition: color background .1s ease; -} - -.wcf-dropdown.open { - display: block; -} - -/* Dropdown Items */ - -.wcf-dropdown > li, -.wcf-dropdown > div { - text-shadow: none; - color: #ccc; - cursor: pointer; - - -webkit-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; -} - -.wcf-dropdown > div { - padding: 5px 7px; -} - -.wcf-dropdown > :first-child { - border-top-left-radius: 5px; - border-top-right-radius: 5px; -} - -.wcf-dropdown > :last-child { - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; -} - -.wcf-dropdown > :hover:not(ul):not(.pointer), -.wcf-dropdown > .active { - color: rgba(255, 255, 255, 1); - cursor: pointer; - background-color: rgba(0, 0, 0, .5); -} - -.wcf-dropdown > li.divider:not(:first-child) { - border-top: 1px solid rgba(255, 255, 255, .7); -} - -.wcf-dropdown > li { - text-decoration: none; - padding: 5px 7px; - display: block; -} - -.wcf-dropdown > li a { - text-decoration: none; - color: #ccc; - padding: -5px -7px; - display: block; -} - -.wcf-dropdown > li a:hover { - color: rgba(255, 255, 255, 1); - background-color: rgba(0, 0, 0, .5); -} - - - /* ############## Headings ############## */ /* -- -- -- Main Heading -- -- -- */ @@ -1607,14 +1649,7 @@ section.wcf-content .wcf-content { margin-top: 30px; } -.wcf-mainHeading > img, -.wcf-mainHeading > svg { - float: left; -} - .wcf-mainHeading > hgroup { - display: block; - position: relative; min-height: 48px; } @@ -1626,18 +1661,12 @@ section.wcf-content .wcf-content { @media screen and (min-width: 480px), screen and (min-device-width: 480px) { - .wcf-mainHeading > img, - .wcf-mainHeading > svg { + .wcf-mainHeading .wcf-containerIcon { width: 48px; height: 48px; } - .wcf-mainHeading > img ~ hgroup, - .wcf-mainHeading > svg ~ hgroup { - padding-left: 60px; - } - - .wcf-mainHeading > hgroup h1 { + .wcf-mainHeading hgroup h1 { font-size: 175%; } @@ -1645,18 +1674,12 @@ section.wcf-content .wcf-content { @media screen and (max-width: 480px), screen and (max-device-width: 480px) { - .wcf-mainHeading > img, - .wcf-mainHeading > svg { + .wcf-mainHeading .wcf-containerIcon { width: 64px; height: 64px; } - .wcf-mainHeading > img ~ hgroup, - .wcf-mainHeading > svg ~ hgroup { - padding-left: 65px; - } - - .wcf-mainHeading > hgroup h1 { + .wcf-mainHeading hgroup h1 { font-size: 200%; } @@ -1667,6 +1690,7 @@ section.wcf-content .wcf-content { text-decoration: none; text-shadow: 0 1px 0 rgba(255, 255, 255, 1); color: rgba(102, 102, 102, 1); + display: block; } .wcf-mainHeading > hgroup h2 { @@ -1680,6 +1704,16 @@ section.wcf-content .wcf-content { padding-top: 3px; } +/* Special -> Badges */ + +.wcf-mainHeading > hgroup h1 .wcf-badge, +.wcf-mainHeading > hgroup h1 a .wcf-badge { + font-size: 75%; + text-decoration: none; + background-color: rgba(102, 102, 102, 1); + color: rgba(255, 255, 255, 1); +} + /* Special -> Dialog */ .wcf-dialogContainer .wcf-mainHeading { @@ -1979,7 +2013,6 @@ textarea { /* Normal State */ -.wcf-input, input[type='text'], input[type='search'], input[type='date'], @@ -2008,7 +2041,6 @@ textarea { /* Hover State */ -:not(.wcf-aclContainer ul).wcf-input:hover, input[type='text']:hover, input[type='search']:hover, input[type='date']:hover, @@ -2022,7 +2054,6 @@ textarea:hover { /* Active & Focus State */ -.wcf-input:active, input[type='text']:active, input[type='search']:active, input[type='date']:active, @@ -2031,7 +2062,6 @@ input[type='url']:active, input[type='password']:active, textarea:active, -.wcf-input:focus, input[type='text']:focus, input[type='search']:focus, input[type='date']:focus, @@ -2052,7 +2082,6 @@ textarea:focus { /* Read Only State */ -.wcf-input[readonly='readonly'], input[type='text'][readonly='readonly'], input[type='search'][readonly='readonly'], input[type='email'][readonly='readonly'], @@ -2073,7 +2102,6 @@ textarea[readonly='readonly'] { /* Disabled State */ -.wcf-input[disabled='disabled'], input[type='text'][disabled='disabled'], input[type='search'][disabled='disabled'], input[type='date'][disabled='disabled'], @@ -2518,7 +2546,7 @@ input[type='button'], /* Toggle for tab menu orientation (options: left|center|right) */ text-align: center; margin-top: 15px; - padding: 0 5px; + padding: 0 10px; display: block; position: relative; } diff --git a/wcfsetup/install/files/acp/templates/acpSessionLog.tpl b/wcfsetup/install/files/acp/templates/acpSessionLog.tpl index fb0a11ed3c..08528a0687 100644 --- a/wcfsetup/install/files/acp/templates/acpSessionLog.tpl +++ b/wcfsetup/install/files/acp/templates/acpSessionLog.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.sessionLog.access.list{/lang}

diff --git a/wcfsetup/install/files/acp/templates/acpSessionLogList.tpl b/wcfsetup/install/files/acp/templates/acpSessionLogList.tpl index 3cb4c0f7ec..6b75a076bc 100644 --- a/wcfsetup/install/files/acp/templates/acpSessionLogList.tpl +++ b/wcfsetup/install/files/acp/templates/acpSessionLogList.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.sessionLog.list{/lang}

diff --git a/wcfsetup/install/files/acp/templates/cacheList.tpl b/wcfsetup/install/files/acp/templates/cacheList.tpl index ef3485904f..a877ffe2b4 100644 --- a/wcfsetup/install/files/acp/templates/cacheList.tpl +++ b/wcfsetup/install/files/acp/templates/cacheList.tpl @@ -12,9 +12,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.cache.list{/lang}

diff --git a/wcfsetup/install/files/acp/templates/cronjobAdd.tpl b/wcfsetup/install/files/acp/templates/cronjobAdd.tpl index 3d4970b9a6..779e573781 100644 --- a/wcfsetup/install/files/acp/templates/cronjobAdd.tpl +++ b/wcfsetup/install/files/acp/templates/cronjobAdd.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.cronjob.{$action}{/lang}

{lang}wcf.acp.cronjob.subtitle{/lang}

diff --git a/wcfsetup/install/files/acp/templates/cronjobList.tpl b/wcfsetup/install/files/acp/templates/cronjobList.tpl index eb2fd73804..cb9f30506f 100644 --- a/wcfsetup/install/files/acp/templates/cronjobList.tpl +++ b/wcfsetup/install/files/acp/templates/cronjobList.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.cronjob.list{/lang}

{lang}wcf.acp.cronjob.subtitle{/lang}

diff --git a/wcfsetup/install/files/acp/templates/cronjobLogList.tpl b/wcfsetup/install/files/acp/templates/cronjobLogList.tpl index b0242b126b..6b9ad2e268 100644 --- a/wcfsetup/install/files/acp/templates/cronjobLogList.tpl +++ b/wcfsetup/install/files/acp/templates/cronjobLogList.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.cronjob.log{/lang}

{lang}wcf.acp.cronjob.subtitle{/lang}

@@ -16,7 +16,7 @@
-

{lang}wcf.acp.cronjob.log{/lang} {#$items}

+

{lang}wcf.acp.cronjob.log{/lang} {#$items}

diff --git a/wcfsetup/install/files/acp/templates/login.tpl b/wcfsetup/install/files/acp/templates/login.tpl index 1f487f727f..d31a0d8b20 100644 --- a/wcfsetup/install/files/acp/templates/login.tpl +++ b/wcfsetup/install/files/acp/templates/login.tpl @@ -14,9 +14,9 @@ //]]> -
- -
+
+ +

{@$pageTitle}

diff --git a/wcfsetup/install/files/acp/templates/masterPassword.tpl b/wcfsetup/install/files/acp/templates/masterPassword.tpl index b0f2192899..cae788efb8 100644 --- a/wcfsetup/install/files/acp/templates/masterPassword.tpl +++ b/wcfsetup/install/files/acp/templates/masterPassword.tpl @@ -8,9 +8,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.masterPassword.enter{/lang}

diff --git a/wcfsetup/install/files/acp/templates/masterPasswordInit.tpl b/wcfsetup/install/files/acp/templates/masterPasswordInit.tpl index 39e74ad17f..adc399a036 100644 --- a/wcfsetup/install/files/acp/templates/masterPasswordInit.tpl +++ b/wcfsetup/install/files/acp/templates/masterPasswordInit.tpl @@ -12,9 +12,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.masterPassword.init{/lang}

diff --git a/wcfsetup/install/files/acp/templates/option.tpl b/wcfsetup/install/files/acp/templates/option.tpl index 438b4c8ab6..f4754a2380 100644 --- a/wcfsetup/install/files/acp/templates/option.tpl +++ b/wcfsetup/install/files/acp/templates/option.tpl @@ -9,9 +9,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.option.category.{$category->categoryName}{/lang}

{hascontent}

{content}{lang __optional=true}wcf.acp.option.category.{$category->categoryName}.description{/lang}{/content}

{/hascontent}
diff --git a/wcfsetup/install/files/acp/templates/optionImport.tpl b/wcfsetup/install/files/acp/templates/optionImport.tpl index 707bc354dc..d12abb9061 100644 --- a/wcfsetup/install/files/acp/templates/optionImport.tpl +++ b/wcfsetup/install/files/acp/templates/optionImport.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.option.import{/lang}

diff --git a/wcfsetup/install/files/acp/templates/packageInstallationConfirm.tpl b/wcfsetup/install/files/acp/templates/packageInstallationConfirm.tpl index 3479478ff0..27dfb1df8d 100644 --- a/wcfsetup/install/files/acp/templates/packageInstallationConfirm.tpl +++ b/wcfsetup/install/files/acp/templates/packageInstallationConfirm.tpl @@ -9,9 +9,9 @@ //]]> -
- -
+
+ +

{$archive->getPackageInfo('packageName')}

{$archive->getPackageInfo('packageDescription')}

diff --git a/wcfsetup/install/files/acp/templates/packageInstallationStepPrepare.tpl b/wcfsetup/install/files/acp/templates/packageInstallationStepPrepare.tpl index ab285200fd..f65272cdaa 100644 --- a/wcfsetup/install/files/acp/templates/packageInstallationStepPrepare.tpl +++ b/wcfsetup/install/files/acp/templates/packageInstallationStepPrepare.tpl @@ -1,7 +1,7 @@
-
- -
+
+ +

{lang}wcf.acp.package.installation.title{/lang}

{lang}wcf.acp.package.installation.step.prepare{/lang}

0% 0%

diff --git a/wcfsetup/install/files/acp/templates/packageList.tpl b/wcfsetup/install/files/acp/templates/packageList.tpl index 24e8301fcf..c309f41a27 100644 --- a/wcfsetup/install/files/acp/templates/packageList.tpl +++ b/wcfsetup/install/files/acp/templates/packageList.tpl @@ -22,9 +22,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.package.list{/lang}

diff --git a/wcfsetup/install/files/acp/templates/packageListDetailed.tpl b/wcfsetup/install/files/acp/templates/packageListDetailed.tpl index 3ea3de5c27..69f1fd410d 100644 --- a/wcfsetup/install/files/acp/templates/packageListDetailed.tpl +++ b/wcfsetup/install/files/acp/templates/packageListDetailed.tpl @@ -10,9 +10,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.package.list{/lang}

diff --git a/wcfsetup/install/files/acp/templates/packageStartInstall.tpl b/wcfsetup/install/files/acp/templates/packageStartInstall.tpl index 13a4812b14..ad785f0068 100644 --- a/wcfsetup/install/files/acp/templates/packageStartInstall.tpl +++ b/wcfsetup/install/files/acp/templates/packageStartInstall.tpl @@ -1,14 +1,14 @@ {include file='header'} -
+
{if $packageID == 0} - -
+ +

{lang}wcf.acp.package.startInstall{/lang}

{else} - -
+ +

{lang}wcf.acp.package.startUpdate{/lang}

{/if} diff --git a/wcfsetup/install/files/acp/templates/packageUninstallationDependencies.tpl b/wcfsetup/install/files/acp/templates/packageUninstallationDependencies.tpl index d91033af71..80f3635c21 100644 --- a/wcfsetup/install/files/acp/templates/packageUninstallationDependencies.tpl +++ b/wcfsetup/install/files/acp/templates/packageUninstallationDependencies.tpl @@ -8,9 +8,9 @@ // ]]> -
- -
+
+ +

{lang}wcf.acp.package.uninstall{/lang}: {$packageObj->getName()}

{$packageObj->packageDescription}

diff --git a/wcfsetup/install/files/acp/templates/packageUninstallationStepPrepare.tpl b/wcfsetup/install/files/acp/templates/packageUninstallationStepPrepare.tpl index 91112237ef..433db243eb 100644 --- a/wcfsetup/install/files/acp/templates/packageUninstallationStepPrepare.tpl +++ b/wcfsetup/install/files/acp/templates/packageUninstallationStepPrepare.tpl @@ -1,8 +1,8 @@
-
- -
-

Paket »{$queue->packageName}« wird deinstalliert …

+
+ +
+

Paket »{$queue->packageName}« wird deinstalliert …

Aktueller Schritt: {lang}wcf.package.uninstallation.step.prepare{/lang}

0%

diff --git a/wcfsetup/install/files/acp/templates/packageUpdate.tpl b/wcfsetup/install/files/acp/templates/packageUpdate.tpl index 1200a9996c..3c57fee196 100644 --- a/wcfsetup/install/files/acp/templates/packageUpdate.tpl +++ b/wcfsetup/install/files/acp/templates/packageUpdate.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.packageUpdate{/lang}

diff --git a/wcfsetup/install/files/acp/templates/packageUpdateAuth.tpl b/wcfsetup/install/files/acp/templates/packageUpdateAuth.tpl index 2bf7dc87f3..e77873739b 100644 --- a/wcfsetup/install/files/acp/templates/packageUpdateAuth.tpl +++ b/wcfsetup/install/files/acp/templates/packageUpdateAuth.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.packageUpdate.auth{/lang}

diff --git a/wcfsetup/install/files/acp/templates/packageUpdateSearch.tpl b/wcfsetup/install/files/acp/templates/packageUpdateSearch.tpl index 46c8f2597a..17778a9c67 100644 --- a/wcfsetup/install/files/acp/templates/packageUpdateSearch.tpl +++ b/wcfsetup/install/files/acp/templates/packageUpdateSearch.tpl @@ -37,9 +37,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.packageUpdate.search{/lang}

diff --git a/wcfsetup/install/files/acp/templates/packageUpdateSearchResult.tpl b/wcfsetup/install/files/acp/templates/packageUpdateSearchResult.tpl index f391351065..df72a02962 100644 --- a/wcfsetup/install/files/acp/templates/packageUpdateSearchResult.tpl +++ b/wcfsetup/install/files/acp/templates/packageUpdateSearchResult.tpl @@ -2,9 +2,9 @@ -
- -
+
+ +

{lang}wcf.acp.packageUpdate.search{/lang}

diff --git a/wcfsetup/install/files/acp/templates/packageView.tpl b/wcfsetup/install/files/acp/templates/packageView.tpl index 06106d0085..d9d4fa6610 100644 --- a/wcfsetup/install/files/acp/templates/packageView.tpl +++ b/wcfsetup/install/files/acp/templates/packageView.tpl @@ -8,9 +8,9 @@ //]]> -
- -
+
+ +

{$package->getName()}

{$package->packageDescription}

diff --git a/wcfsetup/install/files/acp/templates/updateServerAdd.tpl b/wcfsetup/install/files/acp/templates/updateServerAdd.tpl index bb31797adc..4c95f2e02d 100644 --- a/wcfsetup/install/files/acp/templates/updateServerAdd.tpl +++ b/wcfsetup/install/files/acp/templates/updateServerAdd.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.updateServer.{$action}{/lang}

diff --git a/wcfsetup/install/files/acp/templates/updateServerList.tpl b/wcfsetup/install/files/acp/templates/updateServerList.tpl index 6630575037..8a731791a8 100644 --- a/wcfsetup/install/files/acp/templates/updateServerList.tpl +++ b/wcfsetup/install/files/acp/templates/updateServerList.tpl @@ -9,9 +9,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.updateServer.list{/lang}

diff --git a/wcfsetup/install/files/acp/templates/userAdd.tpl b/wcfsetup/install/files/acp/templates/userAdd.tpl index e6765591e4..66cc2a8407 100644 --- a/wcfsetup/install/files/acp/templates/userAdd.tpl +++ b/wcfsetup/install/files/acp/templates/userAdd.tpl @@ -8,9 +8,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.user.{@$action}{/lang}

diff --git a/wcfsetup/install/files/acp/templates/userAssignToGroup.tpl b/wcfsetup/install/files/acp/templates/userAssignToGroup.tpl index 1a5d4956ac..a6f2657b57 100644 --- a/wcfsetup/install/files/acp/templates/userAssignToGroup.tpl +++ b/wcfsetup/install/files/acp/templates/userAssignToGroup.tpl @@ -1,8 +1,8 @@ {include file='header'} -
- -
+
+ +

{lang}wcf.acp.user.assignToGroup{/lang}

diff --git a/wcfsetup/install/files/acp/templates/userEmailAddressExport.tpl b/wcfsetup/install/files/acp/templates/userEmailAddressExport.tpl index 76b95bde46..28a61c2ccd 100644 --- a/wcfsetup/install/files/acp/templates/userEmailAddressExport.tpl +++ b/wcfsetup/install/files/acp/templates/userEmailAddressExport.tpl @@ -8,9 +8,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.user.exportEmailAddress{/lang}

diff --git a/wcfsetup/install/files/acp/templates/userGroupAdd.tpl b/wcfsetup/install/files/acp/templates/userGroupAdd.tpl index 5d4b5fff36..3279522b9f 100644 --- a/wcfsetup/install/files/acp/templates/userGroupAdd.tpl +++ b/wcfsetup/install/files/acp/templates/userGroupAdd.tpl @@ -12,9 +12,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.group.{@$action}{/lang}

diff --git a/wcfsetup/install/files/acp/templates/userGroupList.tpl b/wcfsetup/install/files/acp/templates/userGroupList.tpl index 30c524db67..474c33894a 100644 --- a/wcfsetup/install/files/acp/templates/userGroupList.tpl +++ b/wcfsetup/install/files/acp/templates/userGroupList.tpl @@ -8,9 +8,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.group.list{/lang}

diff --git a/wcfsetup/install/files/acp/templates/userList.tpl b/wcfsetup/install/files/acp/templates/userList.tpl index 7857f2bfc1..4cc586167c 100644 --- a/wcfsetup/install/files/acp/templates/userList.tpl +++ b/wcfsetup/install/files/acp/templates/userList.tpl @@ -9,11 +9,11 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.user.{if $searchID}search{else}list{/if}{/lang}

-

{if $searchID}{lang}wcf.acp.user.search.matches{/lang}{/if}

+

{if $searchID}{lang}wcf.acp.user.search.matches{/lang}{/if}

@@ -44,7 +44,7 @@ {hascontent} -
+
diff --git a/wcfsetup/install/files/acp/templates/userMail.tpl b/wcfsetup/install/files/acp/templates/userMail.tpl index 80ec00d860..909b18c12f 100644 --- a/wcfsetup/install/files/acp/templates/userMail.tpl +++ b/wcfsetup/install/files/acp/templates/userMail.tpl @@ -12,9 +12,9 @@ {/if} -
- -
+
+ +

{if $action == 'all'} {lang}wcf.acp.user.sendMail.all{/lang} diff --git a/wcfsetup/install/files/acp/templates/userSearch.tpl b/wcfsetup/install/files/acp/templates/userSearch.tpl index dd5d10a26f..0eaa7a6d80 100644 --- a/wcfsetup/install/files/acp/templates/userSearch.tpl +++ b/wcfsetup/install/files/acp/templates/userSearch.tpl @@ -8,9 +8,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.user.search{/lang}

diff --git a/wcfsetup/install/files/acp/templates/usersMassProcessing.tpl b/wcfsetup/install/files/acp/templates/usersMassProcessing.tpl index cb906b3059..db67cc87e6 100644 --- a/wcfsetup/install/files/acp/templates/usersMassProcessing.tpl +++ b/wcfsetup/install/files/acp/templates/usersMassProcessing.tpl @@ -60,9 +60,9 @@ //]]> -
- -
+
+ +

{lang}wcf.acp.user.massProcessing{/lang}

diff --git a/wcfsetup/install/files/acp/templates/worker.tpl b/wcfsetup/install/files/acp/templates/worker.tpl index 0ad900aeed..68ed9db32d 100644 --- a/wcfsetup/install/files/acp/templates/worker.tpl +++ b/wcfsetup/install/files/acp/templates/worker.tpl @@ -1,8 +1,8 @@
-
- -
-

Aufgaben werden ausgeführt …

+
+ +
+

Aufgaben werden ausgeführt …

Aktueller Schritt: {lang}wcf.package.installation.step.prepare{/lang}

0%