Changeset 5757
- Timestamp:
- 05/22/08 15:29:38 (6 months ago)
- Files:
-
- rubricks_core/trunk/public/javascripts/components/system/src_system_admin_trails.js (modified) (1 diff)
- rubricks_core/trunk/public/javascripts/components/system/src_system_user_management.js (modified) (1 diff)
- rubricks_core/trunk/public/javascripts/components/system/system.js (modified) (2 diffs)
- rubricks_core/trunk/public/javascripts/rubricks_common.js (modified) (1 diff)
- rubricks_core/trunk/public/javascripts/spinelz/selectableTable.js (modified) (2 diffs)
- rubricks_core/trunk/public/javascripts/spinelz/spinelz_for_rubricks.js (modified) (4 diffs)
- rubricks_core/trunk/public/javascripts/spinelz/tabBox.js (modified) (2 diffs)
- rubricks_core/trunk/public/javascripts/spinelz_lib/spinelz_util.js (modified) (2 diffs)
- rubricks_core/trunk/public/javascripts/spinelz_lib/spinelz_util_for_rubricks.js (modified) (2 diffs)
- rubricks_core/trunk/public/javascripts/src_rubricks_common_validate.js (modified) (2 diffs)
- rubricks_core/trunk/public/javascripts/src_spinelz/selectableTable.js (modified) (2 diffs)
- rubricks_core/trunk/public/javascripts/src_spinelz/tabBox.js (modified) (2 diffs)
- rubricks_core/trunk/public/javascripts/src_spinelz_lib/spinelz_util.js (modified) (2 diffs)
- rubricks_core/trunk/public/stylesheets/components/system/src_style.css (modified) (4 diffs)
- rubricks_core/trunk/public/stylesheets/components/system/style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
rubricks_core/trunk/public/javascripts/components/system/src_system_admin_trails.js
r5301 r5757 68 68 }, 69 69 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 = ''; 76 71 }, 77 72 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 = ''; 84 74 }, 85 75 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 = ''; 88 78 }, 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();; 92 82 }, 93 83 trails_setting_window_close: function() { rubricks_core/trunk/public/javascripts/components/system/src_system_user_management.js
r5748 r5757 86 86 rubricks.system.admin_user.variables.url_group_delete, 87 87 { 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();} 93 93 } 94 94 ); rubricks_core/trunk/public/javascripts/components/system/system.js
r5748 r5757 826 826 rubricks.common.fire_onsubmit("trails_filter_form","trails_filter_area"); 827 827 },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=""; 833 829 },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=""; 839 831 },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(); 845 837 },trails_setting_window_close:function(){ 846 838 this.trails_setting_window.close(); … … 858 850 } 859 851 },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){852 new Ajax.Updater("admin_trails_user_select_window_contents",this.url_user_select_window,{asynchronous:true,evalScripts:true,onLoading:function(_8){ 861 853 rubricks.common.rubricks_wait_message_open(); 862 854 }}); rubricks_core/trunk/public/javascripts/rubricks_common.js
r5744 r5757 897 897 } 898 898 }); 899 },avoid_endless_loop:function(_14,_15){ 900 return (!_15||!_15["except"]||!_15["except"].include(_14)); 899 },get_msg_space_id:function(_14){ 900 var _15=_14+"_msg"; 901 if($(_14)&&$(_14).msg_space_id){ 902 _15=$(_14).msg_space_id; 903 } 904 return _15; 905 },avoid_endless_loop:function(_16,_17){ 906 return (!_17||!_17["except"]||!_17["except"].include(_16)); 901 907 },clear:function(){ 902 var _1 6=$H();903 rubricks.common.Validator.validateList.each(function(_1 7){904 var _1 8=_17.value;905 var _1 9=false;906 rubricks.common.Validator.ignore_clear_list.each(function(_1 a){907 if(_1 8==_1a){908 _1 9=true;909 _1 6[_1a.id]=_1a;908 var _18=$H(); 909 rubricks.common.Validator.validateList.each(function(_19){ 910 var _1a=_19.value; 911 var _1b=false; 912 rubricks.common.Validator.ignore_clear_list.each(function(_1c){ 913 if(_1a==_1c){ 914 _1b=true; 915 _18[_1c.id]=_1c; 910 916 throw $break; 911 917 } 912 918 }); 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; 919 if(!_1b){ 920 _1a.validate=null; 921 } 922 }); 923 rubricks.common.Validator.validateList=_18; 924 },message:function(_1d,_1e){ 925 var _1f=_1d.msg_space_id||_1d.id+"_msg"; 926 if($(_1f)!=undefined){ 927 $(_1f).innerHTML=_1e; 921 928 } 922 929 }}; rubricks_core/trunk/public/javascripts/spinelz/selectableTable.js
r5695 r5757 102 102 }); 103 103 } 104 this.length=this.size(); 104 105 },buildTr:function(_b){ 105 106 _b.id=this.buildTrId(_b.id); … … 379 380 } 380 381 SpinelzUtil.clearBrowserSelection(); 382 },size:function(){ 383 return this.lineIdArray.size(); 381 384 },submit:function(_35){ 382 385 if(!this.flagAvailable){ rubricks_core/trunk/public/javascripts/spinelz/spinelz_for_rubricks.js
r5744 r5757 3350 3350 }); 3351 3351 } 3352 this.length=this.size(); 3352 3353 },buildTr:function(_b){ 3353 3354 _b.id=this.buildTrId(_b.id); … … 3627 3628 } 3628 3629 SpinelzUtil.clearBrowserSelection(); 3630 },size:function(){ 3631 return this.lineIdArray.size(); 3629 3632 },submit:function(_35){ 3630 3633 if(!this.flagAvailable){ … … 4370 4373 } 4371 4374 },setTabActive:function(tab){ 4375 if(!$(tab)){ 4376 return; 4377 } 4372 4378 var _2c=$(tab).immediateDescendants(); 4373 4379 this.css.refreshClassNames(_2c[0],"tabLeftActive"); … … 4375 4381 this.css.refreshClassNames(_2c[2],"tabRightActive"); 4376 4382 },setTabInactive:function(tab){ 4383 if(!$(tab)){ 4384 return; 4385 } 4377 4386 var _2e=$(tab).immediateDescendants(); 4378 4387 this.css.refreshClassNames(_2e[0],"tabLeftInactive"); rubricks_core/trunk/public/javascripts/spinelz/tabBox.js
r5351 r5757 184 184 } 185 185 },setTabActive:function(tab){ 186 if(!$(tab)){ 187 return; 188 } 186 189 var _2c=$(tab).immediateDescendants(); 187 190 this.css.refreshClassNames(_2c[0],"tabLeftActive"); … … 189 192 this.css.refreshClassNames(_2c[2],"tabRightActive"); 190 193 },setTabInactive:function(tab){ 194 if(!$(tab)){ 195 return; 196 } 191 197 var _2e=$(tab).immediateDescendants(); 192 198 this.css.refreshClassNames(_2e[0],"tabLeftInactive"); rubricks_core/trunk/public/javascripts/spinelz_lib/spinelz_util.js
r5747 r5757 721 721 },isMac:function(){ 722 722 return (this.getUserAgent().toLowerCase().indexOf("macintosh")!=-1); 723 },isFF:function(){ 724 return (this.getUserAgent().toLowerCase().indexOf("firefox")!=-1); 725 },isFF3:function(){ 726 return (this.getUserAgent().toLowerCase().indexOf("firefox/3")!=-1); 723 727 }}; 724 728 var ShortcutManager=Class.create(); … … 1008 1012 Element.update(_10f,html); 1009 1013 }}; 1014 if(UserAgent.isFF3()){ 1015 function __$(_112){ 1016 if(arguments.length>1){ 1017 for(var i=0,_114=[],_115=arguments.length;i<_115;i++){ 1018 _114.push($(arguments[i])); 1019 } 1020 return _114; 1021 } 1022 if(typeof _112=="string"){ 1023 _112=document.getElementById(_112); 1024 } 1025 if(_112&&_112.nodeType==1&&!_112._extendedBySpinelz&&_112.tagName&&_112!=window){ 1026 _112.__getElementsByClassName=_112.getElementsByClassName; 1027 _112.getElementsByClassName=function(_116){ 1028 return $A(_112.__getElementsByClassName(_116)); 1029 }; 1030 _112._extendedBySpinelz=true; 1031 } 1032 return Element.extend(_112); 1033 } 1034 $=__$; 1035 } 1010 1036 rubricks_core/trunk/public/javascripts/spinelz_lib/spinelz_util_for_rubricks.js
r5747 r5757 5387 5387 },isMac:function(){ 5388 5388 return (this.getUserAgent().toLowerCase().indexOf("macintosh")!=-1); 5389 },isFF:function(){ 5390 return (this.getUserAgent().toLowerCase().indexOf("firefox")!=-1); 5391 },isFF3:function(){ 5392 return (this.getUserAgent().toLowerCase().indexOf("firefox/3")!=-1); 5389 5393 }}; 5390 5394 var ShortcutManager=Class.create(); … … 5674 5678 Element.update(_10f,html); 5675 5679 }}; 5680 if(UserAgent.isFF3()){ 5681 function __$(_112){ 5682 if(arguments.length>1){ 5683 for(var i=0,_114=[],_115=arguments.length;i<_115;i++){ 5684 _114.push($(arguments[i])); 5685 } 5686 return _114; 5687 } 5688 if(typeof _112=="string"){ 5689 _112=document.getElementById(_112); 5690 } 5691 if(_112&&_112.nodeType==1&&!_112._extendedBySpinelz&&_112.tagName&&_112!=window){ 5692 _112.__getElementsByClassName=_112.getElementsByClassName; 5693 _112.getElementsByClassName=function(_116){ 5694 return $A(_112.__getElementsByClassName(_116)); 5695 }; 5696 _112._extendedBySpinelz=true; 5697 } 5698 return Element.extend(_112); 5699 } 5700 $=__$; 5701 } 5676 5702 rubricks_core/trunk/public/javascripts/src_rubricks_common_validate.js
r5695 r5757 120 120 }); 121 121 }, 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 }, 122 129 avoid_endless_loop: function(avoid_validate_type, options){ 123 130 return (!options || !options['except'] || !options['except'].include(avoid_validate_type)); … … 140 147 }, 141 148 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; 143 151 } 144 152 }; rubricks_core/trunk/public/javascripts/src_spinelz/selectableTable.js
r5695 r5757 145 145 ); 146 146 } 147 this.length = this.size(); 147 148 }, 148 149 buildTr: function(objTr) { … … 418 419 SpinelzUtil.clearBrowserSelection(); 419 420 }, 421 size: function() { 422 return this.lineIdArray.size(); 423 }, 420 424 submit: function(trId) { 421 425 if(!this.flagAvailable) {return;} rubricks_core/trunk/public/javascripts/src_spinelz/tabBox.js
r5351 r5757 287 287 288 288 setTabActive: function(tab) { 289 if (!$(tab)) return; 289 290 var tabChildren = $(tab).immediateDescendants(); 290 291 this.css.refreshClassNames(tabChildren[0], 'tabLeftActive'); … … 294 295 295 296 setTabInactive: function(tab) { 297 if (!$(tab)) return; 296 298 var tabChildren = $(tab).immediateDescendants(); 297 299 this.css.refreshClassNames(tabChildren[0], 'tabLeftInactive'); rubricks_core/trunk/public/javascripts/src_spinelz_lib/spinelz_util.js
r5747 r5757 1053 1053 isMac: function() { 1054 1054 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); 1055 1061 } 1056 1062 } … … 1495 1501 } 1496 1502 } 1503 1504 1505 /** override $ function */ 1506 if (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 213 213 } 214 214 form.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; 217 219 padding-top: 3px; 218 220 } … … 225 227 } 226 228 div.system_user_select_list { 227 border: solid 1px #b2b2b2; 229 border-style: solid; 230 border-width: 1px; 228 231 } 229 232 td.system_user_select_list { … … 232 235 } 233 236 div.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; 237 243 } 238 244 select.system_user_select_selected { … … 241 247 } 242 248 div.system_user_select_title { 243 b ackground: #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;}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-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;}
