Some changes
authorLuzifr <szekely@woltlab.com>
Mon, 5 Mar 2012 17:23:48 +0000 (18:23 +0100)
committerLuzifr <szekely@woltlab.com>
Mon, 5 Mar 2012 17:23:53 +0000 (18:23 +0100)
Deleted obsolete classes; Changed sortable boards selectors; Some new
selectors;

wcfsetup/install/files/acp/style/wcf.css
wcfsetup/install/files/js/WCF.js

index 0764b7d939a4f2bce7c267b266033dcc851d3c02..71588c9ae820def7c72214593a09b2b0d2f63cc1 100644 (file)
@@ -137,6 +137,8 @@ a[href^="mailto:"] {
        top: -9000px;
 }
 
+/* ToDo: Margins */
+
 .marginTop {
        margin-top: 15px;
 }
@@ -145,6 +147,35 @@ a[href^="mailto:"] {
        margin-bottom: 15px;
 }
 
+/* ToDo: Columns */
+
+.columnes-2 {
+       width: 45%;
+}
+
+.columnes-3 {
+       width: 30%;
+}
+
+
+/* ToDo: Floated Elements */
+
+/* possibly obsolete */
+
+.floatContainer:after {
+       content: "";
+       height: 0;
+       display: block;
+       clear: both;
+}
+
+.floated {
+       margin-right: 5px;
+       margin-left: 5px;
+       float: left;
+}
+
+
 
 /* ############## Containers ############## */
 
@@ -176,23 +207,6 @@ a[href^="mailto:"] {
 
 
 
-/* ToDo: Floated Elements */
-
-/* possibly obsolete */
-
-.floatContainer:after {
-       content: "";
-       height: 0;
-       display: block;
-       clear: both;
-}
-
-.floated {
-       float: left;
-}
-
-
-
 /* ############## Badges ############## */
 
 /* Globals */
@@ -3663,7 +3677,6 @@ tr .columnIcon img {
 
 /* ############## ToDo: Overlay Spinner ############## */
 
-.wcfDialogOverlay,
 .wcf-dialogOverlay {
        background-color: rgba(0, 0, 0, 1);
        opacity: .5;
@@ -3675,7 +3688,7 @@ tr .columnIcon img {
 
 
 /* ToDo: What is that and change that class-name! */
-.overlayLoading,
+
 .wcf-overlayLoading {
        background-color: rgba(255, 255, 255, 1);
        background-image: url('../../icon/spinner1.svg');
@@ -4460,30 +4473,29 @@ button[disabled='disabled'] {
 
 
 /* ############## TODO: Sortable lists ############## */
+
 /* TODO: Everything is working right now and looks pretty much like similar stuff. Adjust the colors, but take care
         when changing margins/paddings. Keep them relative to each other, otherwise you might encounter a strange
         behavior (in rare cases) which might lead to a situation where you will be unable to move an item properly. - Alex */
 
 /* This is the placeholder (or ghost) which will be inserted on runtime in order to show the possible insertation point - Alex */
-.wcf-sortablePlaceholder {
-       background-color: rgba(255, 255, 204, 1);
+.wcf-sortableListContainer .wcf-badgeYellow {
        border-radius: 5px;
-       border: 1px solid rgba(224, 224, 0, 1);
        margin: 3px 0;
        padding: 4px;
 }
 
 .wcf-sortableListContainer {
-       background-color: rgba(252, 253, 254, 1);
        border-radius: 0;
+       background-color: rgba(252, 253, 254, 1);
        padding: 21px;
 }
 
 .wcf-sortableList {
        list-style-position: outside;
        list-style-type: decimal;
-       min-height: 10px; /* Do not touch min-height, removing or changing it would break the whole stuff! - Alex */
        margin-left: 21px;
+       min-height: 10px; /* Do not touch min-height, removing or changing it would break the whole stuff! - Alex */
 }
 
 .wcf-sortableNode {
@@ -4492,13 +4504,16 @@ button[disabled='disabled'] {
 
 .wcf-sortableNodeLabel {
        border-bottom: 1px solid rgba(216, 231, 245, 1);
-       display: block; /* Do not use anything other than block here, otherwise the sortables go crazy - Alex */
        padding: 7px 7px 11px 0;
+       display: block; /* Do not use anything other than block here, otherwise the sortables go crazy - Alex */
 }
 
-.wcf-sortableButtonContainer {
-       float: right;
-}
+
+
+
+
+
+
 
 /* ############## CSS Experiments (active) ############## */
 
index e4223f95e249e8727acd710eda2c8b6655aa47ab..5a991687d0e067dc6d95f3d7bdcadf941d537830 100644 (file)
@@ -4221,7 +4221,7 @@ WCF.Sortable.List.prototype = {
                $('#' + this._containerID + ' .wcf-sortableList').sortable({
                        connectWith: '#' + this._containerID + ' .wcf-sortableList',
                        items: 'li',
-                       placeholder: 'wcf-sortablePlaceholder',
+                       placeholder: 'wcf-badgeYellow',
                        stop: $.proxy(this._save, this)
                });
        },