Drobne poprawki stylów.
authorzuber <marek@stepniowski.com>
Thu, 20 Aug 2009 20:36:35 +0000 (22:36 +0200)
committerzuber <marek@stepniowski.com>
Thu, 20 Aug 2009 20:36:35 +0000 (22:36 +0200)
project/static/css/master.css
project/static/js/jquery.resizable.js

index 0dd4d78..1efa2d6 100644 (file)
@@ -104,7 +104,7 @@ label {
 
 #toggle-sidebar:hover {
     background-color: #999;
-    cursor: ew-resize;
+    cursor: col-resize;
 }
 
 #status-bar {
@@ -138,7 +138,7 @@ p {
     margin: 0;
     padding: 0;
     background-color: #CCC;
-    border-bottom: 1px solid #AAA;
+    border-top: 1px solid #AAA;
 }
 
 #toolbar {
@@ -175,6 +175,12 @@ p {
     -webkit-border-top-right-radius: 8px;
 }
 
+#sidebar-tabs, #toolbar-tabs {
+    height: 21px;
+    z-index: 1000;
+/*    overflow: hidden;*/
+}
+
 #sidebar-tabs li:hover, #sidebar-tabs li.active, #toolbar-tabs li:hover, #toolbar-tabs li.active {
     cursor: default;
     background-color: #EEE;
@@ -183,6 +189,7 @@ p {
 
 #toolbar-buttons {
     background-color: #EEE;
+    border-bottom: 1px solid #AAA;
 }
 
 #toolbar-buttons li {
index fafddc9..44111ee 100644 (file)
@@ -13,7 +13,7 @@
         stop: function(event) {
             $.resizable.element.element.trigger('resizable:stop');
             $(document).unbind('mousemove', $.resizable.drag).unbind('mouseup', $.resizable.stop)
-                .children('body').css({cursor: 'auto'})
+            $('body').css('cursor', 'auto');
             return false;
         }
     };
@@ -36,9 +36,8 @@
                 width: parseInt(element.css('width')) || element[0].scrollWidth || 0,
                 mouseX: event.pageX,
             };
-            $(document).mousemove($.resizable.drag).mouseup($.resizable.stop)
-                .children('body').css({cursor: 'se-resize'});
-            event.stopImmediatePropagation();
+            $(document).mousemove($.resizable.drag).mouseup($.resizable.stop);
+            $('body').css('cursor', 'col-resize');
         }).bind('dragstart', function(event) { event.preventDefault() });
     };
 })(jQuery);