Changeset 2600


Ignore:
Timestamp:
Sep 26, 2008, 10:33:23 PM (16 years ago)
Author:
vdigital
Message:

Bug 532 is solved: doubleSelect are jQuery resizable (based on a rub idea).

Location:
trunk/admin/template/goto
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/template/goto/default-layout.css

    r2596 r2600  
    8787
    8888TABLE.doubleSelect TD {
    89   padding: 0 5px;
     89  padding: 0 3px;
    9090  width: 50%;
    9191}
  • trunk/admin/template/goto/double_select.tpl

    r2596 r2600  
    11{* $Id$ *}
     2{known_script id="jquery.ui" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.core.packed.js" }
     3{known_script id="jquery.ui.sortable" src=$ROOT_URL|@cat:"template-common/lib/ui/ui.resizable.packed.js" }
     4
    25<table class="doubleSelect">
    36  <tr>
     
    1922  </tr>
    2023</table>
     24
     25{literal}
     26<script type="text/javascript">
     27jQuery().ready(function(){
     28  jQuery(".doubleSelect SELECT.categoryList").resizable({
     29    handles: "w,e",
     30    knobHandles: false,
     31    animate: true,
     32    animateDuration: "slow",
     33    animateEasing: "swing",
     34    preventDefault: true,
     35    preserveCursor: true,
     36    autoHide: true,
     37    ghost: true
     38
     39  });
     40});
     41</script>
     42{/literal}
  • trunk/admin/template/goto/theme/roma/theme.css

    r2589 r2600  
    153153  background-color: #111;
    154154}
     155
     156.ui-resizable-handle { border-color: #f36 !important; }
     157
    155158/* hacks */
    156159html>body #menubar {min-height:477px; height:477px;} /* IE 7 and modern browsers */
Note: See TracChangeset for help on using the changeset viewer.