Changeset 5757

Show
Ignore:
Timestamp:
05/22/08 15:29:38 (6 months ago)
Author:
uta
Message:

2008/05/22 sync

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • rubricks_core/trunk/public/javascripts/components/system/src_system_admin_trails.js

    r5301 r5757  
    6868  }, 
    6969  trails_filter_date_begin_clear: function() { 
    70     var value = this.filter_default.trails_date; 
    71     $('filter_conditions_trails_date_begin').value  = value; 
    72     $('display_trails_date_begin').innerHTML        = value; 
    73   }, 
    74   trails_filter_date_begin_set: function() { 
    75     $('display_trails_date_begin').innerHTML = $('filter_conditions_trails_date_begin').value; 
     70    $('filter_conditions_trails_date_begin').value = ''; 
    7671  }, 
    7772  trails_filter_date_end_clear: function() { 
    78     var value = this.filter_default.trails_date; 
    79     $('filter_conditions_trails_date_end').value    = value; 
    80     $('display_trails_date_end').innerHTML          = value; 
    81   }, 
    82   trails_filter_date_end_set: function() { 
    83     $('display_trails_date_end').innerHTML = $('filter_conditions_trails_date_end').value; 
     73    $('filter_conditions_trails_date_end').value = ''; 
    8474  }, 
    8575  trails_filter_user_name_clear: function() { 
    86     $('filter_conditions_trails_user_name').value   = this.filter_default.trails_user_name_raw
    87     $('display_trails_user_name').innerHTML         = this.filter_default.trails_user_name
     76    $('filter_conditions_trails_user_name').value           = ''
     77    $('filter_conditions_trails_user_name_display').value   = ''
    8878  }, 
    89   trails_filter_user_name_set: function(value) { 
    90     $('filter_conditions_trails_user_name').value   = value; 
    91     $('display_trails_user_name').innerHTML         = value
     79  trails_filter_user_name_set: function(data) { 
     80    $('filter_conditions_trails_user_name').value           = data.login_name; 
     81    $('filter_conditions_trails_user_name_display').value   = data.name.unescapeHTML();
    9282  }, 
    9383  trails_setting_window_close: function() { 
  • rubricks_core/trunk/public/javascripts/components/system/src_system_user_management.js

    r5748 r5757  
    8686      rubricks.system.admin_user.variables.url_group_delete, 
    8787      { 
    88         asynchronous:true, 
    89         evalScripts:true, 
    90         parameters:{delete_id:delete_id_str}, 
    91         onLoaded:function(request){rubricks.common.rubricks_wait_message_close();}, 
    92         onLoading:function(request){rubricks.common.rubricks_wait_message_open();} 
     88        asynchronous:   true, 
     89        evalScripts:    true, 
     90        parameters:     {delete_id:delete_id_str}, 
     91        onLoaded:       function(request){rubricks.common.rubricks_wait_message_close();}, 
     92        onLoading:      function(request){rubricks.common.rubricks_wait_message_open();} 
    9393      } 
    9494    ); 
  • rubricks_core/trunk/public/javascripts/components/system/system.js

    r5748 r5757  
    826826rubricks.common.fire_onsubmit("trails_filter_form","trails_filter_area"); 
    827827},trails_filter_date_begin_clear:function(){ 
    828 var _7=this.filter_default.trails_date; 
    829 $("filter_conditions_trails_date_begin").value=_7; 
    830 $("display_trails_date_begin").innerHTML=_7; 
    831 },trails_filter_date_begin_set:function(){ 
    832 $("display_trails_date_begin").innerHTML=$("filter_conditions_trails_date_begin").value; 
     828$("filter_conditions_trails_date_begin").value=""; 
    833829},trails_filter_date_end_clear:function(){ 
    834 var _8=this.filter_default.trails_date; 
    835 $("filter_conditions_trails_date_end").value=_8; 
    836 $("display_trails_date_end").innerHTML=_8; 
    837 },trails_filter_date_end_set:function(){ 
    838 $("display_trails_date_end").innerHTML=$("filter_conditions_trails_date_end").value; 
     830$("filter_conditions_trails_date_end").value=""; 
    839831},trails_filter_user_name_clear:function(){ 
    840 $("filter_conditions_trails_user_name").value=this.filter_default.trails_user_name_raw
    841 $("display_trails_user_name").innerHTML=this.filter_default.trails_user_name
    842 },trails_filter_user_name_set:function(_9){ 
    843 $("filter_conditions_trails_user_name").value=_9
    844 $("display_trails_user_name").innerHTML=_9
     832$("filter_conditions_trails_user_name").value=""
     833$("filter_conditions_trails_user_name_display").value=""
     834},trails_filter_user_name_set:function(_7){ 
     835$("filter_conditions_trails_user_name").value=_7.login_name
     836$("filter_conditions_trails_user_name_display").value=_7.name.unescapeHTML()
    845837},trails_setting_window_close:function(){ 
    846838this.trails_setting_window.close(); 
     
    858850} 
    859851},user_select_window_render:function(){ 
    860 new Ajax.Updater("admin_trails_user_select_window_contents",this.url_user_select_window,{asynchronous:true,evalScripts:true,onLoading:function(_a){ 
     852new Ajax.Updater("admin_trails_user_select_window_contents",this.url_user_select_window,{asynchronous:true,evalScripts:true,onLoading:function(_8){ 
    861853rubricks.common.rubricks_wait_message_open(); 
    862854}}); 
  • rubricks_core/trunk/public/javascripts/rubricks_common.js

    r5744 r5757  
    897897} 
    898898}); 
    899 },avoid_endless_loop:function(_14,_15){ 
    900 return (!_15||!_15["except"]||!_15["except"].include(_14)); 
     899},get_msg_space_id:function(_14){ 
     900var _15=_14+"_msg"; 
     901if($(_14)&&$(_14).msg_space_id){ 
     902_15=$(_14).msg_space_id; 
     903
     904return _15; 
     905},avoid_endless_loop:function(_16,_17){ 
     906return (!_17||!_17["except"]||!_17["except"].include(_16)); 
    901907},clear:function(){ 
    902 var _16=$H(); 
    903 rubricks.common.Validator.validateList.each(function(_17){ 
    904 var _18=_17.value; 
    905 var _19=false; 
    906 rubricks.common.Validator.ignore_clear_list.each(function(_1a){ 
    907 if(_18==_1a){ 
    908 _19=true; 
    909 _16[_1a.id]=_1a
     908var _18=$H(); 
     909rubricks.common.Validator.validateList.each(function(_19){ 
     910var _1a=_19.value; 
     911var _1b=false; 
     912rubricks.common.Validator.ignore_clear_list.each(function(_1c){ 
     913if(_1a==_1c){ 
     914_1b=true; 
     915_18[_1c.id]=_1c
    910916throw $break; 
    911917} 
    912918}); 
    913 if(!_19){ 
    914 _18.validate=null; 
    915 
    916 }); 
    917 rubricks.common.Validator.validateList=_16; 
    918 },message:function(_1b,_1c){ 
    919 if($(_1b.id+"_msg")!=undefined){ 
    920 $(_1b.id+"_msg").innerHTML=_1c; 
     919if(!_1b){ 
     920_1a.validate=null; 
     921
     922}); 
     923rubricks.common.Validator.validateList=_18; 
     924},message:function(_1d,_1e){ 
     925var _1f=_1d.msg_space_id||_1d.id+"_msg"; 
     926if($(_1f)!=undefined){ 
     927$(_1f).innerHTML=_1e; 
    921928} 
    922929}}; 
  • rubricks_core/trunk/public/javascripts/spinelz/selectableTable.js

    r5695 r5757  
    102102}); 
    103103} 
     104this.length=this.size(); 
    104105},buildTr:function(_b){ 
    105106_b.id=this.buildTrId(_b.id); 
     
    379380} 
    380381SpinelzUtil.clearBrowserSelection(); 
     382},size:function(){ 
     383return this.lineIdArray.size(); 
    381384},submit:function(_35){ 
    382385if(!this.flagAvailable){ 
  • rubricks_core/trunk/public/javascripts/spinelz/spinelz_for_rubricks.js

    r5744 r5757  
    33503350}); 
    33513351} 
     3352this.length=this.size(); 
    33523353},buildTr:function(_b){ 
    33533354_b.id=this.buildTrId(_b.id); 
     
    36273628} 
    36283629SpinelzUtil.clearBrowserSelection(); 
     3630},size:function(){ 
     3631return this.lineIdArray.size(); 
    36293632},submit:function(_35){ 
    36303633if(!this.flagAvailable){ 
     
    43704373} 
    43714374},setTabActive:function(tab){ 
     4375if(!$(tab)){ 
     4376return; 
     4377} 
    43724378var _2c=$(tab).immediateDescendants(); 
    43734379this.css.refreshClassNames(_2c[0],"tabLeftActive"); 
     
    43754381this.css.refreshClassNames(_2c[2],"tabRightActive"); 
    43764382},setTabInactive:function(tab){ 
     4383if(!$(tab)){ 
     4384return; 
     4385} 
    43774386var _2e=$(tab).immediateDescendants(); 
    43784387this.css.refreshClassNames(_2e[0],"tabLeftInactive"); 
  • rubricks_core/trunk/public/javascripts/spinelz/tabBox.js

    r5351 r5757  
    184184} 
    185185},setTabActive:function(tab){ 
     186if(!$(tab)){ 
     187return; 
     188} 
    186189var _2c=$(tab).immediateDescendants(); 
    187190this.css.refreshClassNames(_2c[0],"tabLeftActive"); 
     
    189192this.css.refreshClassNames(_2c[2],"tabRightActive"); 
    190193},setTabInactive:function(tab){ 
     194if(!$(tab)){ 
     195return; 
     196} 
    191197var _2e=$(tab).immediateDescendants(); 
    192198this.css.refreshClassNames(_2e[0],"tabLeftInactive"); 
  • rubricks_core/trunk/public/javascripts/spinelz_lib/spinelz_util.js

    r5747 r5757  
    721721},isMac:function(){ 
    722722return (this.getUserAgent().toLowerCase().indexOf("macintosh")!=-1); 
     723},isFF:function(){ 
     724return (this.getUserAgent().toLowerCase().indexOf("firefox")!=-1); 
     725},isFF3:function(){ 
     726return (this.getUserAgent().toLowerCase().indexOf("firefox/3")!=-1); 
    723727}}; 
    724728var ShortcutManager=Class.create(); 
     
    10081012Element.update(_10f,html); 
    10091013}}; 
     1014if(UserAgent.isFF3()){ 
     1015function __$(_112){ 
     1016if(arguments.length>1){ 
     1017for(var i=0,_114=[],_115=arguments.length;i<_115;i++){ 
     1018_114.push($(arguments[i])); 
     1019} 
     1020return _114; 
     1021} 
     1022if(typeof _112=="string"){ 
     1023_112=document.getElementById(_112); 
     1024} 
     1025if(_112&&_112.nodeType==1&&!_112._extendedBySpinelz&&_112.tagName&&_112!=window){ 
     1026_112.__getElementsByClassName=_112.getElementsByClassName; 
     1027_112.getElementsByClassName=function(_116){ 
     1028return $A(_112.__getElementsByClassName(_116)); 
     1029}; 
     1030_112._extendedBySpinelz=true; 
     1031} 
     1032return Element.extend(_112); 
     1033} 
     1034$=__$; 
     1035} 
    10101036 
  • rubricks_core/trunk/public/javascripts/spinelz_lib/spinelz_util_for_rubricks.js

    r5747 r5757  
    53875387},isMac:function(){ 
    53885388return (this.getUserAgent().toLowerCase().indexOf("macintosh")!=-1); 
     5389},isFF:function(){ 
     5390return (this.getUserAgent().toLowerCase().indexOf("firefox")!=-1); 
     5391},isFF3:function(){ 
     5392return (this.getUserAgent().toLowerCase().indexOf("firefox/3")!=-1); 
    53895393}}; 
    53905394var ShortcutManager=Class.create(); 
     
    56745678Element.update(_10f,html); 
    56755679}}; 
     5680if(UserAgent.isFF3()){ 
     5681function __$(_112){ 
     5682if(arguments.length>1){ 
     5683for(var i=0,_114=[],_115=arguments.length;i<_115;i++){ 
     5684_114.push($(arguments[i])); 
     5685} 
     5686return _114; 
     5687} 
     5688if(typeof _112=="string"){ 
     5689_112=document.getElementById(_112); 
     5690} 
     5691if(_112&&_112.nodeType==1&&!_112._extendedBySpinelz&&_112.tagName&&_112!=window){ 
     5692_112.__getElementsByClassName=_112.getElementsByClassName; 
     5693_112.getElementsByClassName=function(_116){ 
     5694return $A(_112.__getElementsByClassName(_116)); 
     5695}; 
     5696_112._extendedBySpinelz=true; 
     5697} 
     5698return Element.extend(_112); 
     5699} 
     5700$=__$; 
     5701} 
    56765702 
  • rubricks_core/trunk/public/javascripts/src_rubricks_common_validate.js

    r5695 r5757  
    120120    }); 
    121121  }, 
     122  get_msg_space_id : function(target_id){ 
     123    var msg_space_id = target_id + '_msg'; 
     124    if($(target_id) && $(target_id).msg_space_id){ 
     125      msg_space_id = $(target_id).msg_space_id; 
     126    } 
     127    return msg_space_id; 
     128  }, 
    122129  avoid_endless_loop: function(avoid_validate_type, options){ 
    123130   return (!options || !options['except'] || !options['except'].include(avoid_validate_type)); 
     
    140147  }, 
    141148  message: function(element, message) { 
    142     if($(element.id+'_msg')!=undefined) $(element.id+'_msg').innerHTML = message; 
     149    var msg_space_id = element.msg_space_id || element.id + '_msg'; 
     150    if($(msg_space_id)!=undefined) $(msg_space_id).innerHTML = message; 
    143151  } 
    144152}; 
  • rubricks_core/trunk/public/javascripts/src_spinelz/selectableTable.js

    r5695 r5757  
    145145      ); 
    146146    } 
     147    this.length = this.size(); 
    147148  }, 
    148149  buildTr: function(objTr) { 
     
    418419    SpinelzUtil.clearBrowserSelection(); 
    419420  }, 
     421  size: function() { 
     422    return this.lineIdArray.size(); 
     423  }, 
    420424  submit: function(trId) { 
    421425    if(!this.flagAvailable) {return;} 
  • rubricks_core/trunk/public/javascripts/src_spinelz/tabBox.js

    r5351 r5757  
    287287   
    288288  setTabActive: function(tab) { 
     289    if (!$(tab)) return; 
    289290    var tabChildren = $(tab).immediateDescendants(); 
    290291    this.css.refreshClassNames(tabChildren[0], 'tabLeftActive'); 
     
    294295   
    295296  setTabInactive: function(tab) { 
     297    if (!$(tab)) return; 
    296298    var tabChildren = $(tab).immediateDescendants(); 
    297299    this.css.refreshClassNames(tabChildren[0], 'tabLeftInactive'); 
  • rubricks_core/trunk/public/javascripts/src_spinelz_lib/spinelz_util.js

    r5747 r5757  
    10531053  isMac: function() { 
    10541054    return (this.getUserAgent().toLowerCase().indexOf('macintosh') != -1); 
     1055  }, 
     1056  isFF: function() { 
     1057    return (this.getUserAgent().toLowerCase().indexOf('firefox') != -1); 
     1058  }, 
     1059  isFF3: function() { 
     1060    return (this.getUserAgent().toLowerCase().indexOf('firefox/3') != -1); 
    10551061  } 
    10561062} 
     
    14951501  } 
    14961502} 
     1503 
     1504 
     1505/** override $ function */ 
     1506if (UserAgent.isFF3()) { 
     1507  function __$(element) { 
     1508    if (arguments.length > 1) { 
     1509      for (var i = 0, elements = [], length = arguments.length; i < length; i++) 
     1510        elements.push($(arguments[i])); 
     1511      return elements; 
     1512    } 
     1513    if (typeof element == 'string') 
     1514      element = document.getElementById(element); 
     1515 
     1516    if (element && element.nodeType == 1 && !element._extendedBySpinelz && element.tagName && element != window) { 
     1517      element.__getElementsByClassName = element.getElementsByClassName; 
     1518      element.getElementsByClassName = function(className) { return $A(element.__getElementsByClassName(className)); } 
     1519      element._extendedBySpinelz = true; 
     1520    } 
     1521    return Element.extend(element); 
     1522  } 
     1523  $ = __$; 
     1524} 
  • rubricks_core/trunk/public/stylesheets/components/system/src_style.css

    r5744 r5757  
    213213} 
    214214form.system_user_select_filter { 
    215   border-left:                  solid 1px #b2b2b2; 
    216   border-right:                 solid 1px #b2b2b2; 
     215  border-left-style:            solid; 
     216  border-left-width:            1px; 
     217  border-right-style:           solid; 
     218  border-right-width:           1px; 
    217219  padding-top:                  3px; 
    218220} 
     
    225227} 
    226228div.system_user_select_list { 
    227   border:                       solid 1px #b2b2b2; 
     229  border-style:                 solid; 
     230  border-width:                 1px; 
    228231} 
    229232td.system_user_select_list { 
     
    232235} 
    233236div.system_user_select_selected { 
    234   border-left:                  solid 1px #b2b2b2; 
    235   border-right:                 solid 1px #b2b2b2; 
    236   border-bottom:                solid 1px #b2b2b2; 
     237  border-bottom-style:          solid; 
     238  border-bottom-width:          1px; 
     239  border-left-style:            solid; 
     240  border-left-width:            1px; 
     241  border-right-style:           solid; 
     242  border-right-width:           1px; 
    237243} 
    238244select.system_user_select_selected { 
     
    241247} 
    242248div.system_user_select_title { 
    243   background:                   #d0d0d0
    244   border:                       solid 1px #b2b2b2
    245   text-align:                   center; 
    246 } 
     249  border-style:                 solid
     250  border-width:                 1px
     251  text-align:                   center; 
     252} 
  • rubricks_core/trunk/public/stylesheets/components/system/style.css

    r5744 r5757  
    1 ul.system_admin_block_cb { border-style: solid; border-width: 1px; font-size: 5pt; margin: 2px 0;}li.system_admin_block_cb_content { height: 40px;}li.system_admin_block_cb_header { border-bottom-style: solid; border-bottom-width: 1px; overflow: hidden; word-break: break-all;}div.system_admin_block_edit_area { min-height: 140px;}table.system_admin_block_partition { border-collapse: collapse; border-style: solid; border-width: 1px; margin: 0; position: relative; table-layout: fixed; width: 100%;}.system_admin_block_partition tbody tr td { border-bottom-style: solid; border-bottom-width: 1px; border-left-style: solid; border-left-width: 1px; padding: 0 2px; vertical-align: top;}div.system_admin_block_partition_dummy { float: right; height: 150px; width: 0;}td.system_admin_block_partition_center { width: 30%;}td.system_admin_block_partition_side { width: 20%;}div.system_admin_component_dummy { float: right; height: 70px; width: 0;}td.system_admin_config_dummy_width_30 { padding: 0 !important; border: none !important; width: 30%;}td.system_admin_config_dummy_width_70 { padding: 0 !important; border: none !important; width: 70%;}td.system_admin_config_toolbar { vertical-align: top;}div.system_admin_menu_dummy { float: right; height: 70px; width: 0;}td.system_admin_menu_item_title { width: 30%;}td.system_admin_menu_item_url { width: 70%;}li.system_admin_menu_sortable_item { height: 25px; min-width: 300px; overflow-y: hidden;}td.system_admin_menu_sortable_item_list { vertical-align: top; width: 50%;}ul.system_admin_menu_sortable_item_list { border-style: solid; border-width: 1px; height: auto !important; height: 300px; min-height: 300px; overflow-y: auto;}div.system_admin_menu_sortable_item_title { height: 25px; line-height: 25px; vertical-align: middle;}td.system_admin_mobile_dummy_width_30 { padding: 0 !important; border: none !important; width: 30%;}td.system_admin_mobile_dummy_width_70 { padding: 0 !important; border: none !important; width: 70%;}td.system_admin_mobile_menu { vertical-align: top;}.system_admin_trails_filter_action_types { border: none;}.system_admin_trails_filter_action_types p { margin: 2px 0;}td.system_admin_user_dummy { padding: 0 !important; border: none !important;}.system_admin_user_group_tree { padding: 5px;}div.system_admin_user_image { float: left;}div.system_admin_user_image_description { margin: 0 10px 10px 140px; padding-top: 10px;}div.system_admin_user_image_file_select { margin: 10px 10px 10px 140px;}div.system_admin_user_list_parent { height: 100%;}td.system_admin_user_permission_off { border-left: none !important; border-right: none !important; height: 30px; text-align: center; width: 45px;}td.system_admin_user_permission_on { height: 30px; text-align: center; width: 44px;}div.system_common_icon_list_frame { margin: 5px 0;}.system_common_sortable_list ul li { border-bottom-style: solid; border-bottom-width: 1px; border-left-style: solid; border-left-width: 1px; cursor: move; height: 25px; line-height: 25px; margin: 3px 0; padding: 0 5px; vertical-align: middle;}dl.system_search_description { margin: 10px;}dl.system_search_description dt { margin-top: 5px;}dl.system_search_description dd { padding-left: 20px;}div.system_search_narrow { margin: 10px;}div.system_search_query { margin: 10px;}div.system_search_result { margin: 10px;}div.system_search_submit { margin: 10px 20px; text-align: right;}li.system_toolbar_icons { margin: 0 -6px 0 0; padding: 0 0 0 3px;}div.system_toolbar_icons { margin: 2px 0 0 0;}.system_user_border { border-style: solid; border-width: 1px;}table.system_user_select { margin: 10px 0 0 0; width: 100%;}div.system_user_select_arrow { margin: 20px 0; text-align: center;}td.system_user_select_arrow { padding-top: 50px; vertical-align: top; width: 10%;}div.system_user_select_buttons { margin: 10px 20px; text-align: right;}form.system_user_select_filter { border-left: solid 1px #b2b2b2; border-right: solid 1px #b2b2b2; padding-top: 3px;}div.system_user_select_filter_line { margin: 3px;}div.system_user_select_frame { height: 270px; overflow: auto;}div.system_user_select_list { border: solid 1px #b2b2b2;}td.system_user_select_list { vertical-align: top; width: 45%;}div.system_user_select_selected { border-left: solid 1px #b2b2b2; border-right: solid 1px #b2b2b2; border-bottom: solid 1px #b2b2b2;}select.system_user_select_selected { border: none; width: 100%;}div.system_user_select_title { background: #d0d0d0; border: solid 1px #b2b2b2; text-align: center;} 
     1ul.system_admin_block_cb { border-style: solid; border-width: 1px; font-size: 5pt; margin: 2px 0;}li.system_admin_block_cb_content { height: 40px;}li.system_admin_block_cb_header { border-bottom-style: solid; border-bottom-width: 1px; overflow: hidden; word-break: break-all;}div.system_admin_block_edit_area { min-height: 140px;}table.system_admin_block_partition { border-collapse: collapse; border-style: solid; border-width: 1px; margin: 0; position: relative; table-layout: fixed; width: 100%;}.system_admin_block_partition tbody tr td { border-bottom-style: solid; border-bottom-width: 1px; border-left-style: solid; border-left-width: 1px; padding: 0 2px; vertical-align: top;}div.system_admin_block_partition_dummy { float: right; height: 150px; width: 0;}td.system_admin_block_partition_center { width: 30%;}td.system_admin_block_partition_side { width: 20%;}div.system_admin_component_dummy { float: right; height: 70px; width: 0;}td.system_admin_config_dummy_width_30 { padding: 0 !important; border: none !important; width: 30%;}td.system_admin_config_dummy_width_70 { padding: 0 !important; border: none !important; width: 70%;}td.system_admin_config_toolbar { vertical-align: top;}div.system_admin_menu_dummy { float: right; height: 70px; width: 0;}td.system_admin_menu_item_title { width: 30%;}td.system_admin_menu_item_url { width: 70%;}li.system_admin_menu_sortable_item { height: 25px; min-width: 300px; overflow-y: hidden;}td.system_admin_menu_sortable_item_list { vertical-align: top; width: 50%;}ul.system_admin_menu_sortable_item_list { border-style: solid; border-width: 1px; height: auto !important; height: 300px; min-height: 300px; overflow-y: auto;}div.system_admin_menu_sortable_item_title { height: 25px; line-height: 25px; vertical-align: middle;}td.system_admin_mobile_dummy_width_30 { padding: 0 !important; border: none !important; width: 30%;}td.system_admin_mobile_dummy_width_70 { padding: 0 !important; border: none !important; width: 70%;}td.system_admin_mobile_menu { vertical-align: top;}.system_admin_trails_filter_action_types { border: none;}.system_admin_trails_filter_action_types p { margin: 2px 0;}td.system_admin_user_dummy { padding: 0 !important; border: none !important;}.system_admin_user_group_tree { padding: 5px;}div.system_admin_user_image { float: left;}div.system_admin_user_image_description { margin: 0 10px 10px 140px; padding-top: 10px;}div.system_admin_user_image_file_select { margin: 10px 10px 10px 140px;}div.system_admin_user_list_parent { height: 100%;}td.system_admin_user_permission_off { border-left: none !important; border-right: none !important; height: 30px; text-align: center; width: 45px;}td.system_admin_user_permission_on { height: 30px; text-align: center; width: 44px;}div.system_common_icon_list_frame { margin: 5px 0;}.system_common_sortable_list ul li { border-bottom-style: solid; border-bottom-width: 1px; border-left-style: solid; border-left-width: 1px; cursor: move; height: 25px; line-height: 25px; margin: 3px 0; padding: 0 5px; vertical-align: middle;}dl.system_search_description { margin: 10px;}dl.system_search_description dt { margin-top: 5px;}dl.system_search_description dd { padding-left: 20px;}div.system_search_narrow { margin: 10px;}div.system_search_query { margin: 10px;}div.system_search_result { margin: 10px;}div.system_search_submit { margin: 10px 20px; text-align: right;}li.system_toolbar_icons { margin: 0 -6px 0 0; padding: 0 0 0 3px;}div.system_toolbar_icons { margin: 2px 0 0 0;}.system_user_border { border-style: solid; border-width: 1px;}table.system_user_select { margin: 10px 0 0 0; width: 100%;}div.system_user_select_arrow { margin: 20px 0; text-align: center;}td.system_user_select_arrow { padding-top: 50px; vertical-align: top; width: 10%;}div.system_user_select_buttons { margin: 10px 20px; text-align: right;}form.system_user_select_filter { border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; padding-top: 3px;}div.system_user_select_filter_line { margin: 3px;}div.system_user_select_frame { height: 270px; overflow: auto;}div.system_user_select_list { border-style: solid; border-width: 1px;}td.system_user_select_list { vertical-align: top; width: 45%;}div.system_user_select_selected { border-bottom-style: solid; border-bottom-width: 1px; border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px;}select.system_user_select_selected { border: none; width: 100%;}div.system_user_select_title { border-style: solid; border-width: 1px; text-align: center;}