Small style improvements
authorMarcel Werk <burntime@woltlab.com>
Tue, 3 Jun 2014 17:25:02 +0000 (19:25 +0200)
committerMarcel Werk <burntime@woltlab.com>
Tue, 3 Jun 2014 17:25:02 +0000 (19:25 +0200)
wcfsetup/install/files/lib/system/option/FileSizeOptionType.class.php
wcfsetup/install/files/lib/system/option/FloatOptionType.class.php
wcfsetup/install/files/lib/system/option/IntegerOptionType.class.php
wcfsetup/install/files/style/global.less

index cf85e6fc4f833b9908ce4565fda8dfed5f7d5fa2..b638df31f2e6af45022b4d96f1269e9239d3f788 100644 (file)
@@ -18,7 +18,7 @@ class FileSizeOptionType extends TextOptionType {
        /**
         * @see \wcf\system\option\TextOptionType::$inputClass
         */
-       protected $inputClass = 'medium';
+       protected $inputClass = 'short textRight';
        
        /**
         * @see \wcf\system\option\IOptionType::getData()
index c9153f18b4e9b4695ec0caf7155aec61e0d4a020..29edef1d6819189ee8b556db3d0e028dd454f843 100644 (file)
@@ -17,7 +17,7 @@ class FloatOptionType extends TextOptionType {
        /**
         * @see \wcf\system\option\TextOptionType::$inputClass
         */
-       protected $inputClass = 'medium';
+       protected $inputClass = 'short textRight';
        
        /**
         * @see \wcf\system\option\IOptionType::getFormElement()
index e74b297d24dfb09fc1f46be2faa0cd2368703140..09bfb9ecd328a56a64349b7d3c31e321367c7452 100644 (file)
@@ -18,7 +18,7 @@ class IntegerOptionType extends TextOptionType {
        /**
         * @see \wcf\system\option\TextOptionType::$inputClass
         */
-       protected $inputClass = 'medium';
+       protected $inputClass = 'short';
        
        /**
         * @see \wcf\system\option\IOptionType::getFormElement()
index 6c146872518f8839f04987ec50e253c223ea359f..c5c9bb409ff7a6b5c3ae8baa14926d054cdd7d28 100644 (file)
@@ -142,10 +142,23 @@ body > iframe[src="about:blank"] {
        margin-top: @wcfGapTiny;
 }
 
+.textLeft {
+       text-align: left;
+}
+
+.textCenter,
 .center {
        text-align: center;
 }
 
+.textRight {
+       text-align: right;
+}
+
+.textJustify {
+       text-align: justify;
+}
+
 .pointer {
        cursor: pointer;
 }