├── README.md ├── pom.xml ├── src └── main │ ├── java │ ├── Application.java │ └── com │ │ └── zhy │ │ └── zooweb │ │ ├── config │ │ ├── H2Config.java │ │ └── Init.java │ │ ├── dao │ │ ├── h2 │ │ │ └── ZkCfgManager.java │ │ └── zookeeper │ │ │ ├── ZkCache.java │ │ │ ├── ZkManager.java │ │ │ └── ZkManagerImpl.java │ │ ├── model │ │ ├── Tree.java │ │ └── TreeRoot.java │ │ └── web │ │ ├── IndexController.java │ │ ├── ZkCacheServlet.java │ │ ├── ZkCfgController.java │ │ └── ZkController.java │ └── resources │ ├── application.properties │ ├── db │ └── schema.sql │ ├── log4j2.xml │ └── static │ ├── index.html │ ├── info.html │ └── js │ ├── easyui │ ├── easyloader.js │ ├── jquery.easyui.min.js │ ├── locale │ │ ├── easyui-lang-af.js │ │ ├── easyui-lang-ar.js │ │ ├── easyui-lang-bg.js │ │ ├── easyui-lang-ca.js │ │ ├── easyui-lang-cs.js │ │ ├── easyui-lang-cz.js │ │ ├── easyui-lang-da.js │ │ ├── easyui-lang-de.js │ │ ├── easyui-lang-el.js │ │ ├── easyui-lang-en.js │ │ ├── easyui-lang-es.js │ │ ├── easyui-lang-fr.js │ │ ├── easyui-lang-it.js │ │ ├── easyui-lang-jp.js │ │ ├── easyui-lang-nl.js │ │ ├── easyui-lang-pt_BR.js │ │ ├── easyui-lang-ru.js │ │ ├── easyui-lang-tr.js │ │ ├── easyui-lang-zh_CN.js │ │ └── easyui-lang-zh_TW.js │ ├── plugins │ │ ├── jquery.accordion.js │ │ ├── jquery.calendar.js │ │ ├── jquery.combo.js │ │ ├── jquery.combobox.js │ │ ├── jquery.combogrid.js │ │ ├── jquery.combotree.js │ │ ├── jquery.datagrid.js │ │ ├── jquery.datebox.js │ │ ├── jquery.datetimebox.js │ │ ├── jquery.dialog.js │ │ ├── jquery.draggable.js │ │ ├── jquery.droppable.js │ │ ├── jquery.form.js │ │ ├── jquery.layout.js │ │ ├── jquery.linkbutton.js │ │ ├── jquery.menu.js │ │ ├── jquery.menubutton.js │ │ ├── jquery.messager.js │ │ ├── jquery.numberbox.js │ │ ├── jquery.numberspinner.js │ │ ├── jquery.pagination.js │ │ ├── jquery.panel.js │ │ ├── jquery.parser.js │ │ ├── jquery.progressbar.js │ │ ├── jquery.propertygrid.js │ │ ├── jquery.resizable.js │ │ ├── jquery.searchbox.js │ │ ├── jquery.slider.js │ │ ├── jquery.spinner.js │ │ ├── jquery.splitbutton.js │ │ ├── jquery.tabs.js │ │ ├── jquery.timespinner.js │ │ ├── jquery.tree.js │ │ ├── jquery.treegrid.js │ │ ├── jquery.validatebox.js │ │ └── jquery.window.js │ └── themes │ │ ├── black │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── accordion_arrows.png │ │ │ ├── blank.gif │ │ │ ├── calendar_arrows.png │ │ │ ├── combo_arrow.png │ │ │ ├── datagrid_icons.png │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── linkbutton_bg.png │ │ │ ├── loading.gif │ │ │ ├── menu_arrows.png │ │ │ ├── messager_icons.png │ │ │ ├── pagination_icons.png │ │ │ ├── panel_tools.png │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── spinner_arrows.png │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ ├── validatebox_arrows.png │ │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ │ ├── bootstrap │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── accordion_arrows.png │ │ │ ├── blank.gif │ │ │ ├── calendar_arrows.png │ │ │ ├── combo_arrow.png │ │ │ ├── datagrid_icons.png │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── linkbutton_bg.png │ │ │ ├── loading.gif │ │ │ ├── menu_arrows.png │ │ │ ├── messager_icons.png │ │ │ ├── pagination_icons.png │ │ │ ├── panel_tools.png │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── spinner_arrows.png │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ ├── validatebox_arrows.png │ │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ │ ├── cupertino │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ │ ├── blank.gif │ │ │ ├── calendar_nextmonth.gif │ │ │ ├── calendar_nextyear.gif │ │ │ ├── calendar_prevmonth.gif │ │ │ ├── calendar_prevyear.gif │ │ │ ├── datagrid_row_collapse.gif │ │ │ ├── datagrid_row_expand.gif │ │ │ ├── datebox_arrow.png │ │ │ ├── menu.gif │ │ │ ├── menu_downarrow.png │ │ │ ├── menu_rightarrow.png │ │ │ ├── menu_sep.png │ │ │ ├── menu_split_downarrow.png │ │ │ ├── messager_error.gif │ │ │ ├── messager_info.gif │ │ │ ├── messager_question.gif │ │ │ ├── messager_warning.gif │ │ │ ├── pagination_loading.gif │ │ │ ├── panel_loading.gif │ │ │ ├── slider_handle.png │ │ │ ├── tabs_close.gif │ │ │ ├── tree_arrows.gif │ │ │ ├── tree_checkbox_0.gif │ │ │ ├── tree_checkbox_1.gif │ │ │ ├── tree_checkbox_2.gif │ │ │ ├── tree_dnd_no.png │ │ │ ├── tree_dnd_yes.png │ │ │ ├── tree_elbow.png │ │ │ ├── tree_file.gif │ │ │ ├── tree_folder.gif │ │ │ ├── tree_folder_open.gif │ │ │ ├── tree_loading.gif │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ ├── validatebox_pointer.gif │ │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ │ ├── dark-hive │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ │ ├── blank.gif │ │ │ ├── calendar_nextmonth.gif │ │ │ ├── calendar_nextyear.gif │ │ │ ├── calendar_prevmonth.gif │ │ │ ├── calendar_prevyear.gif │ │ │ ├── datagrid_row_collapse.gif │ │ │ ├── datagrid_row_expand.gif │ │ │ ├── datebox_arrow.png │ │ │ ├── menu.gif │ │ │ ├── menu_downarrow.png │ │ │ ├── menu_rightarrow.png │ │ │ ├── menu_sep.png │ │ │ ├── menu_split_downarrow.png │ │ │ ├── messager_error.gif │ │ │ ├── messager_info.gif │ │ │ ├── messager_question.gif │ │ │ ├── messager_warning.gif │ │ │ ├── pagination_loading.gif │ │ │ ├── panel_loading.gif │ │ │ ├── slider_handle.png │ │ │ ├── tabs_close.gif │ │ │ ├── tree_arrows.gif │ │ │ ├── tree_checkbox_0.gif │ │ │ ├── tree_checkbox_1.gif │ │ │ ├── tree_checkbox_2.gif │ │ │ ├── tree_dnd_no.png │ │ │ ├── tree_dnd_yes.png │ │ │ ├── tree_elbow.png │ │ │ ├── tree_file.gif │ │ │ ├── tree_folder.gif │ │ │ ├── tree_folder_open.gif │ │ │ ├── tree_loading.gif │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ ├── validatebox_pointer.gif │ │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ │ ├── default │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── accordion_arrows.png │ │ │ ├── blank.gif │ │ │ ├── calendar_arrows.png │ │ │ ├── combo_arrow.png │ │ │ ├── datagrid_icons.png │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── linkbutton_bg.png │ │ │ ├── loading.gif │ │ │ ├── menu_arrows.png │ │ │ ├── messager_icons.png │ │ │ ├── pagination_icons.png │ │ │ ├── panel_tools.png │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── spinner_arrows.png │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ ├── validatebox_arrows.png │ │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ │ ├── gray │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── accordion_arrows.png │ │ │ ├── blank.gif │ │ │ ├── calendar_arrows.png │ │ │ ├── combo_arrow.png │ │ │ ├── datagrid_icons.png │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── linkbutton_bg.png │ │ │ ├── loading.gif │ │ │ ├── menu_arrows.png │ │ │ ├── messager_icons.png │ │ │ ├── pagination_icons.png │ │ │ ├── panel_tools.png │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── spinner_arrows.png │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ ├── validatebox_arrows.png │ │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ │ ├── icon.css │ │ ├── icons │ │ ├── back.png │ │ ├── blank.gif │ │ ├── cancel.png │ │ ├── cut.png │ │ ├── edit_add.png │ │ ├── edit_remove.png │ │ ├── filesave.png │ │ ├── help.png │ │ ├── mini_add.png │ │ ├── mini_edit.png │ │ ├── mini_refresh.png │ │ ├── no.png │ │ ├── ok.png │ │ ├── pencil.png │ │ ├── print.png │ │ ├── redo.png │ │ ├── reload.png │ │ ├── search.png │ │ ├── sum.png │ │ ├── tip.png │ │ └── undo.png │ │ ├── metro │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── accordion_arrows.png │ │ │ ├── blank.gif │ │ │ ├── calendar_arrows.png │ │ │ ├── combo_arrow.png │ │ │ ├── datagrid_icons.png │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── linkbutton_bg.png │ │ │ ├── loading.gif │ │ │ ├── menu_arrows.png │ │ │ ├── messager_icons.png │ │ │ ├── pagination_icons.png │ │ │ ├── panel_tools.png │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── spinner_arrows.png │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ ├── validatebox_arrows.png │ │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ │ ├── pepper-grinder │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ │ ├── blank.gif │ │ │ ├── calendar_nextmonth.gif │ │ │ ├── calendar_nextyear.gif │ │ │ ├── calendar_prevmonth.gif │ │ │ ├── calendar_prevyear.gif │ │ │ ├── datagrid_row_collapse.gif │ │ │ ├── datagrid_row_expand.gif │ │ │ ├── datebox_arrow.png │ │ │ ├── menu.gif │ │ │ ├── menu_downarrow.png │ │ │ ├── menu_rightarrow.png │ │ │ ├── menu_sep.png │ │ │ ├── menu_split_downarrow.png │ │ │ ├── messager_error.gif │ │ │ ├── messager_info.gif │ │ │ ├── messager_question.gif │ │ │ ├── messager_warning.gif │ │ │ ├── pagination_loading.gif │ │ │ ├── panel_loading.gif │ │ │ ├── slider_handle.png │ │ │ ├── tabs_close.gif │ │ │ ├── tree_arrows.gif │ │ │ ├── tree_checkbox_0.gif │ │ │ ├── tree_checkbox_1.gif │ │ │ ├── tree_checkbox_2.gif │ │ │ ├── tree_dnd_no.png │ │ │ ├── tree_dnd_yes.png │ │ │ ├── tree_elbow.png │ │ │ ├── tree_file.gif │ │ │ ├── tree_folder.gif │ │ │ ├── tree_folder_open.gif │ │ │ ├── tree_loading.gif │ │ │ ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png │ │ │ ├── ui-bg_diagonal-maze_40_000000_10x10.png │ │ │ ├── ui-bg_fine-grain_10_eceadf_60x60.png │ │ │ ├── ui-bg_fine-grain_10_f8f7f6_60x60.png │ │ │ ├── ui-bg_fine-grain_15_eceadf_60x60.png │ │ │ ├── ui-bg_fine-grain_15_f7f3de_60x60.png │ │ │ ├── ui-bg_fine-grain_15_ffffff_60x60.png │ │ │ ├── ui-bg_fine-grain_65_654b24_60x60.png │ │ │ ├── ui-bg_fine-grain_68_b83400_60x60.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_3572ac_256x240.png │ │ │ ├── ui-icons_8c291d_256x240.png │ │ │ ├── ui-icons_b83400_256x240.png │ │ │ ├── ui-icons_fbdb93_256x240.png │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ ├── validatebox_pointer.gif │ │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ │ └── sunny │ │ ├── accordion.css │ │ ├── calendar.css │ │ ├── combo.css │ │ ├── combobox.css │ │ ├── datagrid.css │ │ ├── datebox.css │ │ ├── dialog.css │ │ ├── easyui.css │ │ ├── images │ │ ├── blank.gif │ │ ├── calendar_nextmonth.gif │ │ ├── calendar_nextyear.gif │ │ ├── calendar_prevmonth.gif │ │ ├── calendar_prevyear.gif │ │ ├── datagrid_row_collapse.gif │ │ ├── datagrid_row_expand.gif │ │ ├── datebox_arrow.png │ │ ├── menu.gif │ │ ├── menu_downarrow.png │ │ ├── menu_rightarrow.png │ │ ├── menu_sep.png │ │ ├── menu_split_downarrow.png │ │ ├── messager_error.gif │ │ ├── messager_info.gif │ │ ├── messager_question.gif │ │ ├── messager_warning.gif │ │ ├── pagination_loading.gif │ │ ├── panel_loading.gif │ │ ├── slider_handle.png │ │ ├── tabs_close.gif │ │ ├── tree_arrows.gif │ │ ├── tree_checkbox_0.gif │ │ ├── tree_checkbox_1.gif │ │ ├── tree_checkbox_2.gif │ │ ├── tree_dnd_no.png │ │ ├── tree_dnd_yes.png │ │ ├── tree_elbow.png │ │ ├── tree_file.gif │ │ ├── tree_folder.gif │ │ ├── tree_folder_open.gif │ │ ├── tree_loading.gif │ │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png │ │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png │ │ ├── ui-icons_3d3d3d_256x240.png │ │ ├── ui-icons_bd7b00_256x240.png │ │ ├── ui-icons_d19405_256x240.png │ │ ├── ui-icons_eb990f_256x240.png │ │ ├── ui-icons_ed9f26_256x240.png │ │ ├── ui-icons_fadc7a_256x240.png │ │ ├── ui-icons_ffe180_256x240.png │ │ ├── validatebox_pointer.gif │ │ └── validatebox_warning.png │ │ ├── layout.css │ │ ├── linkbutton.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── messager.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── progressbar.css │ │ ├── propertygrid.css │ │ ├── searchbox.css │ │ ├── slider.css │ │ ├── spinner.css │ │ ├── splitbutton.css │ │ ├── tabs.css │ │ ├── tree.css │ │ ├── validatebox.css │ │ └── window.css │ ├── init.js │ ├── initInfo.js │ ├── jquery-1.8.3.min.js │ └── jquery.js └── zooweb-2.2.jar /README.md: -------------------------------------------------------------------------------- 1 | # zooweb 2 | zookeeper的一个客户端,基于淘宝的web客户端改的, 3 | 原地址http://172.16.1.13:8080/zkWeb-1.0/ 是一个war包,需要web容器依赖 4 | 改造成springboot的前后端分离模式,响应速度更快,更像是一个随用随启的软件了。 5 | 能正常看zonode结构、数据、添加、修改等。 6 | 7 | 启动方式: 8 | 下载zooweb-2.2.jar 9 | 然后java -jar zooweb-2.2.jar 启动 10 | 通过页面 http://127.0.0.1:9345 访问 11 | -------------------------------------------------------------------------------- /src/main/java/Application.java: -------------------------------------------------------------------------------- 1 | import com.zhy.zooweb.web.ZkCacheServlet; 2 | import org.springframework.boot.SpringApplication; 3 | import org.springframework.boot.autoconfigure.SpringBootApplication; 4 | import org.springframework.boot.web.servlet.ServletRegistrationBean; 5 | import org.springframework.context.annotation.Bean; 6 | import org.springframework.context.annotation.ComponentScan; 7 | 8 | /** 9 | * Spring Boot 应用启动类 10 | * Created by zhuhongyu 11 | */ 12 | @ComponentScan(basePackages = "com.zhy.zooweb") 13 | @SpringBootApplication 14 | public class Application { 15 | 16 | public static void main(String[] args) { 17 | SpringApplication.run(Application.class, args); 18 | } 19 | 20 | @Bean 21 | public ServletRegistrationBean zkCacheServlet() { 22 | ServletRegistrationBean registration = new ServletRegistrationBean(new ZkCacheServlet()); 23 | registration.addUrlMappings("/hello"); 24 | return registration; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/com/zhy/zooweb/dao/zookeeper/ZkManager.java: -------------------------------------------------------------------------------- 1 | package com.zhy.zooweb.dao.zookeeper; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | public interface ZkManager { 7 | 8 | ZkManagerImpl connect(String host, int timeout); 9 | 10 | List getChildren(String path); 11 | 12 | String getData(String path); 13 | 14 | Map getNodeMeta(String nodePath); 15 | 16 | List> getACLs(String nodePath); 17 | 18 | boolean createNode(String path, String nodeName, String data); 19 | 20 | boolean deleteNode(String nodePath); 21 | 22 | boolean setData(String nodePath, String data); 23 | 24 | enum Meta { 25 | czxid, mzxid, ctime, mtime, version, cversion, aversion, ephemeralOwner, dataLength, numChildren, pzxid 26 | } 27 | 28 | enum Acl { 29 | scheme, id, perms 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/main/java/com/zhy/zooweb/model/TreeRoot.java: -------------------------------------------------------------------------------- 1 | package com.zhy.zooweb.model; 2 | 3 | import java.util.ArrayList; 4 | import java.util.HashMap; 5 | import java.util.Map; 6 | 7 | public class TreeRoot extends ArrayList{ 8 | 9 | private static final long serialVersionUID = -5814745768637302855L; 10 | 11 | public TreeRoot() { 12 | Map atr = new HashMap(); 13 | atr.put("path", "/"); 14 | Tree root = new Tree(0, "/", Tree.STATE_CLOSED, null, atr); 15 | this.add(root); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/zhy/zooweb/web/IndexController.java: -------------------------------------------------------------------------------- 1 | package com.zhy.zooweb.web; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.web.bind.annotation.RequestMapping; 5 | 6 | @Controller 7 | public class IndexController { 8 | 9 | @RequestMapping("") 10 | public String index() { 11 | return "redirect:/index.html"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=zktb 2 | server.port=9345 3 | #h2 4 | spring.datasource.schema=classpath:db/schema.sql 5 | #spring.datasource.url=jdbc:h2:mem:zoodb 6 | spring.datasource.url=jdbc:h2:file:./db 7 | spring.datasource.driver-class-name=org.h2.Driver 8 | spring.h2.console.path=/h2 9 | spring.h2.console.enabled=true 10 | spring.datasource.username=sa 11 | spring.datasource.password=zhuhongyu 12 | -------------------------------------------------------------------------------- /src/main/resources/db/schema.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS ZK(ID VARCHAR PRIMARY KEY, DES VARCHAR, CONNECTSTR VARCHAR, SESSIONTIMEOUT VARCHAR) -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #666; 30 | border-color: #000; 31 | } 32 | .accordion .accordion-header { 33 | background: #3d3d3d; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #0052A3; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #fff; 41 | } 42 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/combo.css: -------------------------------------------------------------------------------- 1 | .combo { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .combo .combo-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0px 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .combo-arrow { 26 | width: 18px; 27 | height: 20px; 28 | overflow: hidden; 29 | display: inline-block; 30 | vertical-align: top; 31 | cursor: pointer; 32 | opacity: 0.6; 33 | filter: alpha(opacity=60); 34 | } 35 | .combo-arrow-hover { 36 | opacity: 1.0; 37 | filter: alpha(opacity=100); 38 | } 39 | .combo-panel { 40 | overflow: auto; 41 | } 42 | .combo-arrow { 43 | background: url('images/combo_arrow.png') no-repeat center center; 44 | } 45 | .combo, 46 | .combo-panel { 47 | background-color: #666; 48 | } 49 | .combo { 50 | border-color: #000; 51 | background-color: #666; 52 | } 53 | .combo-arrow { 54 | background-color: #3d3d3d; 55 | } 56 | .combo-arrow-hover { 57 | background-color: #777; 58 | } 59 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item { 2 | padding: 2px; 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-hover { 8 | background-color: #777; 9 | color: #fff; 10 | } 11 | .combobox-item-selected { 12 | background-color: #0052A3; 13 | color: #fff; 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | font-size: 12px; 8 | text-align: center; 9 | } 10 | .datebox-current, 11 | .datebox-close, 12 | .datebox-ok { 13 | text-decoration: none; 14 | font-weight: bold; 15 | opacity: 0.6; 16 | filter: alpha(opacity=60); 17 | } 18 | .datebox-current, 19 | .datebox-close { 20 | float: left; 21 | } 22 | .datebox-close { 23 | float: right; 24 | } 25 | .datebox-button-hover { 26 | opacity: 1.0; 27 | filter: alpha(opacity=100); 28 | } 29 | .datebox .combo-arrow { 30 | background-image: url('images/datebox_arrow.png'); 31 | background-position: center center; 32 | } 33 | .datebox-button { 34 | background-color: #555; 35 | } 36 | .datebox-current, 37 | .datebox-close, 38 | .datebox-ok { 39 | color: #fff; 40 | } 41 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #444; 11 | border-right: 1px solid #777; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #555; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #222; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #222; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/Thumbs.db -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/validatebox_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/validatebox_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/black/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | _vertical-align: middle; 7 | } 8 | a.m-btn-active { 9 | background-position: bottom right; 10 | } 11 | a.m-btn-active span.l-btn-left { 12 | background-position: bottom left; 13 | } 14 | a.m-btn-plain-active { 15 | background: transparent; 16 | padding: 0 5px 0 0; 17 | border-width: 1px; 18 | border-style: solid; 19 | -moz-border-radius: 5px 5px 5px 5px; 20 | -webkit-border-radius: 5px 5px 5px 5px; 21 | border-radius: 5px 5px 5px 5px; 22 | } 23 | .m-btn-downarrow { 24 | background: url('images/menu_arrows.png') no-repeat 2px center; 25 | } 26 | a.m-btn-plain-active { 27 | border-color: #555; 28 | background-color: #777; 29 | color: #fff; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #000; 37 | } 38 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | } 9 | .progressbar-text { 10 | text-align: center; 11 | position: absolute; 12 | } 13 | .progressbar-value { 14 | position: relative; 15 | overflow: hidden; 16 | width: 0; 17 | -moz-border-radius: 5px 0 0 5px; 18 | -webkit-border-radius: 5px 0 0 5px; 19 | border-radius: 5px 0 0 5px; 20 | } 21 | .progressbar { 22 | border-color: #000; 23 | } 24 | .progressbar-text { 25 | color: #fff; 26 | } 27 | .progressbar-value .progressbar-text { 28 | background-color: #0052A3; 29 | color: #fff; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #222; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #3d3d3d; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #222; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #3d3d3d; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/black/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | _vertical-align: middle; 11 | } 12 | a.s-btn-active { 13 | background-position: bottom right; 14 | } 15 | a.s-btn-active span.l-btn-left { 16 | background-position: bottom left; 17 | } 18 | a.s-btn-plain-active { 19 | background: transparent; 20 | padding: 0 5px 0 0; 21 | border-width: 1px; 22 | border-style: solid; 23 | -moz-border-radius: 5px 5px 5px 5px; 24 | -webkit-border-radius: 5px 5px 5px 5px; 25 | border-radius: 5px 5px 5px 5px; 26 | } 27 | .s-btn-downarrow { 28 | background: url('images/menu_arrows.png') no-repeat 2px center; 29 | border-color: #cccccc; 30 | } 31 | a:hover.l-btn .s-btn-downarrow, 32 | a.s-btn-active .s-btn-downarrow, 33 | a.s-btn-plain-active .s-btn-downarrow { 34 | background-position: 1px center; 35 | padding: 0; 36 | border-width: 0 0 0 1px; 37 | } 38 | a.s-btn-plain-active { 39 | border-color: #555; 40 | background-color: #777; 41 | color: #fff; 42 | } 43 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #ffffff; 30 | border-color: #D4D4D4; 31 | } 32 | .accordion .accordion-header { 33 | background: #F2F2F2; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #0081c2; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #fff; 41 | } 42 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item { 2 | padding: 2px; 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-hover { 8 | background-color: #e6e6e6; 9 | color: #00438a; 10 | } 11 | .combobox-item-selected { 12 | background-color: #0081c2; 13 | color: #fff; 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | font-size: 12px; 8 | text-align: center; 9 | } 10 | .datebox-current, 11 | .datebox-close, 12 | .datebox-ok { 13 | text-decoration: none; 14 | font-weight: bold; 15 | opacity: 0.6; 16 | filter: alpha(opacity=60); 17 | } 18 | .datebox-current, 19 | .datebox-close { 20 | float: left; 21 | } 22 | .datebox-close { 23 | float: right; 24 | } 25 | .datebox-button-hover { 26 | opacity: 1.0; 27 | filter: alpha(opacity=100); 28 | } 29 | .datebox .combo-arrow { 30 | background-image: url('images/datebox_arrow.png'); 31 | background-position: center center; 32 | } 33 | .datebox-button { 34 | background-color: #F5F5F5; 35 | } 36 | .datebox-current, 37 | .datebox-close, 38 | .datebox-ok { 39 | color: #444; 40 | } 41 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #F5F5F5; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #e6e6e6; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #e6e6e6; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/Thumbs.db -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/validatebox_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/validatebox_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/bootstrap/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | _vertical-align: middle; 7 | } 8 | a.m-btn-active { 9 | background-position: bottom right; 10 | } 11 | a.m-btn-active span.l-btn-left { 12 | background-position: bottom left; 13 | } 14 | a.m-btn-plain-active { 15 | background: transparent; 16 | padding: 0 5px 0 0; 17 | border-width: 1px; 18 | border-style: solid; 19 | -moz-border-radius: 5px 5px 5px 5px; 20 | -webkit-border-radius: 5px 5px 5px 5px; 21 | border-radius: 5px 5px 5px 5px; 22 | } 23 | .m-btn-downarrow { 24 | background: url('images/menu_arrows.png') no-repeat 2px center; 25 | } 26 | a.m-btn-plain-active { 27 | border-color: #ddd; 28 | background-color: #e6e6e6; 29 | color: #00438a; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #D4D4D4; 37 | } 38 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | } 9 | .progressbar-text { 10 | text-align: center; 11 | position: absolute; 12 | } 13 | .progressbar-value { 14 | position: relative; 15 | overflow: hidden; 16 | width: 0; 17 | -moz-border-radius: 5px 0 0 5px; 18 | -webkit-border-radius: 5px 0 0 5px; 19 | border-radius: 5px 0 0 5px; 20 | } 21 | .progressbar { 22 | border-color: #D4D4D4; 23 | } 24 | .progressbar-text { 25 | color: #333; 26 | } 27 | .progressbar-value .progressbar-text { 28 | background-color: #0081c2; 29 | color: #fff; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #e6e6e6; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #F2F2F2; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #e6e6e6; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #F2F2F2; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/bootstrap/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | _vertical-align: middle; 11 | } 12 | a.s-btn-active { 13 | background-position: bottom right; 14 | } 15 | a.s-btn-active span.l-btn-left { 16 | background-position: bottom left; 17 | } 18 | a.s-btn-plain-active { 19 | background: transparent; 20 | padding: 0 5px 0 0; 21 | border-width: 1px; 22 | border-style: solid; 23 | -moz-border-radius: 5px 5px 5px 5px; 24 | -webkit-border-radius: 5px 5px 5px 5px; 25 | border-radius: 5px 5px 5px 5px; 26 | } 27 | .s-btn-downarrow { 28 | background: url('images/menu_arrows.png') no-repeat 2px center; 29 | border-color: #bbb; 30 | } 31 | a:hover.l-btn .s-btn-downarrow, 32 | a.s-btn-active .s-btn-downarrow, 33 | a.s-btn-plain-active .s-btn-downarrow { 34 | background-position: 1px center; 35 | padding: 0; 36 | border-width: 0 0 0 1px; 37 | } 38 | a.s-btn-plain-active { 39 | border-color: #ddd; 40 | background-color: #e6e6e6; 41 | color: #00438a; 42 | } 43 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion{ 2 | background:#fff; 3 | overflow:hidden; 4 | } 5 | .accordion .accordion-header{ 6 | background:#d7ebf9 url('images/ui-bg_glass_80_d7ebf9_1x400.png') repeat-x 50% 50%; 7 | border-top-width:0; 8 | color:#2779AA; 9 | cursor:pointer; 10 | } 11 | .accordion .accordion-header .panel-title{ 12 | font-weight:normal; 13 | } 14 | .accordion .accordion-header-selected .panel-title{ 15 | font-weight:bold; 16 | } 17 | .accordion-noborder .accordion-header{ 18 | border-width:0 0 1px; 19 | } 20 | .accordion-noborder .accordion-body{ 21 | border-width:0px; 22 | } 23 | .accordion-collapse{ 24 | background:url('images/ui-icons_2694e8_256x240.png') no-repeat 0px -16px; 25 | } 26 | .accordion-expand{ 27 | background:url('images/ui-icons_2694e8_256x240.png') no-repeat -65px -16px; 28 | } 29 | .accordion .panel-tool a:hover{ 30 | background-color:#ffef8f; 31 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/combo.css: -------------------------------------------------------------------------------- 1 | .combo{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #AED0EA; 8 | background:#fff; 9 | } 10 | .combo-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .combo-arrow{ 22 | background:#d7ebf9 url('images/ui-icons_2694e8_256x240.png') no-repeat -63px -14px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | } 30 | .combo-arrow-hover{ 31 | background-color:#e4f1fb; 32 | } 33 | .combo-panel{ 34 | background:#f2f5f7 url('images/ui-bg_highlight-hard_100_f2f5f7_1x100.png') repeat-x; 35 | overflow:auto; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item{ 2 | padding:2px; 3 | font-size:12px; 4 | padding:3px; 5 | padding-right:0px; 6 | } 7 | .combobox-item-hover{ 8 | background:#d7ebf9 url('images/ui-bg_glass_80_d7ebf9_1x400.png') repeat-x 50% 50%; 9 | } 10 | .combobox-item-selected{ 11 | background:#3baae3 url('images/ui-bg_glass_50_3baae3_1x400.png') repeat-x 50% 50%; 12 | color:#fff; 13 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox .combo-arrow{ 2 | background:url('images/datebox_arrow.png') no-repeat center center; 3 | } 4 | .datebox-calendar-inner{ 5 | height:180px; 6 | } 7 | .datebox-button{ 8 | height:18px; 9 | padding:2px 5px; 10 | font-size:12px; 11 | background-color:#d7ebf9; 12 | text-align:center; 13 | } 14 | .datebox-current,.datebox-close{ 15 | float:left; 16 | color:#888; 17 | text-decoration:none; 18 | font-weight:bold; 19 | } 20 | .datebox-close{ 21 | float:right; 22 | } 23 | .datebox-ok{ 24 | color:#888; 25 | text-decoration:none; 26 | font-weight:bold; 27 | } 28 | .datebox-button-hover{ 29 | color:#444; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content{ 2 | overflow:auto; 3 | } 4 | .dialog-toolbar{ 5 | background:#fafafa; 6 | padding:2px 5px; 7 | border-bottom:1px solid #eee; 8 | } 9 | .dialog-tool-separator{ 10 | float:left; 11 | height:24px; 12 | border-left:1px solid #ccc; 13 | border-right:1px solid #fff; 14 | margin:2px 1px; 15 | } 16 | .dialog-button{ 17 | border-top:1px solid #eee; 18 | background:#fafafa; 19 | padding:5px 5px; 20 | text-align:right; 21 | } 22 | .dialog-button .l-btn{ 23 | margin-left:5px; 24 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/calendar_nextmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/calendar_nextmonth.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/calendar_nextyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/calendar_nextyear.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/calendar_prevmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/calendar_prevmonth.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/calendar_prevyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/calendar_prevyear.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/datagrid_row_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/datagrid_row_collapse.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/datagrid_row_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/datagrid_row_expand.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/menu.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/menu_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/menu_downarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/menu_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/menu_rightarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/menu_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/menu_sep.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/menu_split_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/menu_split_downarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/messager_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/messager_error.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/messager_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/messager_info.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/messager_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/messager_question.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/messager_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/messager_warning.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/pagination_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/pagination_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/panel_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/panel_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tabs_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tabs_close.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_arrows.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_checkbox_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_checkbox_0.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_checkbox_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_checkbox_1.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_checkbox_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_checkbox_2.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_dnd_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_dnd_no.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_dnd_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_dnd_yes.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_elbow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_file.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_folder.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_folder_open.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/tree_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/tree_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/validatebox_pointer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/validatebox_pointer.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/cupertino/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow{ 2 | display:inline-block; 3 | width:12px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 4px center; 7 | } 8 | 9 | a.m-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active{ 16 | background:#e4f1fb url('images/ui-bg_glass_100_e4f1fb_1x400.png') repeat-x 50% 50%; 17 | border:1px solid #AED0EA; 18 | _padding:0px 5px 0px 0px; 19 | border-radius:3px; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body{ 2 | padding:5px 10px; 3 | } 4 | .messager-button{ 5 | text-align:center; 6 | padding-top:10px; 7 | } 8 | .messager-icon{ 9 | float:left; 10 | width:47px; 11 | height:35px; 12 | } 13 | .messager-error{ 14 | background:url('images/messager_error.gif') no-repeat scroll left top; 15 | } 16 | .messager-info{ 17 | background:url('images/messager_info.gif') no-repeat scroll left top; 18 | } 19 | .messager-question{ 20 | background:url('images/messager_question.gif') no-repeat scroll left top; 21 | } 22 | .messager-warning{ 23 | background:url('images/messager_warning.gif') no-repeat scroll left top; 24 | } 25 | .messager-input{ 26 | width: 262px; 27 | border:1px solid #ccc; 28 | } 29 | .messager-progress{ 30 | padding:10px; 31 | } 32 | .messager-p-msg{ 33 | margin-bottom:5px; 34 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/pagination.css: -------------------------------------------------------------------------------- 1 | .pagination{ 2 | zoom:1; 3 | } 4 | .pagination table{ 5 | float:left; 6 | height:30px; 7 | } 8 | .pagination-btn-separator{ 9 | float:left; 10 | height:24px; 11 | border-left:1px solid #ccc; 12 | border-right:1px solid #fff; 13 | margin:3px 1px; 14 | } 15 | .pagination-num{ 16 | border:1px solid #ccc; 17 | margin:0 2px; 18 | } 19 | .pagination-page-list{ 20 | margin:0px 6px; 21 | } 22 | .pagination-info{ 23 | float:right; 24 | padding-right:6px; 25 | padding-top:8px; 26 | font-size:12px; 27 | } 28 | .pagination span{ 29 | font-size:12px; 30 | white-space:nowrap; 31 | } 32 | .pagination-first{ 33 | background:url('images/ui-icons_2694e8_256x240.png') no-repeat -80px -160px; 34 | } 35 | .pagination-prev{ 36 | background:url('images/ui-icons_2694e8_256x240.png') no-repeat -48px -160px; 37 | } 38 | .pagination-next{ 39 | background:url('images/ui-icons_2694e8_256x240.png') no-repeat -32px -160px; 40 | } 41 | .pagination-last{ 42 | background:url('images/ui-icons_2694e8_256x240.png') no-repeat -64px -160px; 43 | } 44 | .pagination-load{ 45 | background:url('images/ui-icons_2694e8_256x240.png') no-repeat -64px -80px; 46 | } 47 | .pagination-loading{ 48 | background:url('images/pagination_loading.gif') no-repeat; 49 | } 50 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar{ 2 | border:1px solid #AED0EA; 3 | border-radius:5px; 4 | overflow:hidden; 5 | } 6 | .progressbar-text{ 7 | text-align:center; 8 | color:#444; 9 | position:absolute; 10 | } 11 | .progressbar-value{ 12 | background:#3baae3 url('images/ui-bg_glass_50_3baae3_1x400.png') repeat 50% 50%; 13 | border-radius:5px; 14 | border-top-right-radius:0px; 15 | border-bottom-right-radius:0px; 16 | width:0; 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body,.propertygrid .datagrid-group{ 2 | background:#f2f5f7; 3 | } 4 | .propertygrid .datagrid-group{ 5 | height:21px; 6 | overflow:hidden; 7 | } 8 | .propertygrid .datagrid-view1 .datagrid-body td{ 9 | border-color:#f2f5f7; 10 | } 11 | .propertygrid .datagrid-view1 .datagrid-row-over,.propertygrid .datagrid-view1 .datagrid-row-selected{ 12 | background:#f2f5f7; 13 | } 14 | .propertygrid .datagrid-group span{ 15 | color:#416AA3; 16 | font-weight:bold; 17 | padding-left:4px; 18 | } 19 | .propertygrid .datagrid-row-collapse,.propertygrid .datagrid-row-expand{ 20 | background-position:3px center; 21 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/searchbox.css: -------------------------------------------------------------------------------- 1 | .searchbox{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #AED0EA; 8 | background:#fff; 9 | } 10 | .searchbox-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .searchbox-button{ 22 | background:url('images/ui-icons_eb990f_256x240.png') no-repeat -160px -110px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .searchbox-button-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | } 36 | .searchbox-prompt{ 37 | font-size:12px; 38 | color:#ccc; 39 | } 40 | .searchbox a.l-btn-plain{ 41 | background-color:#e4f1fb; 42 | border-radius: 0px; 43 | height:20px; 44 | border:0; 45 | padding:0 6px 0 0; 46 | vertical-align:top; 47 | } 48 | .searchbox a.l-btn .l-btn-left{ 49 | padding:2px 0 2px 2px; 50 | } 51 | .searchbox a.l-btn-plain:hover{ 52 | border-radius:0px; 53 | border:0; 54 | padding:0 6px 0 0; 55 | } 56 | .searchbox a.m-btn-plain-active{ 57 | border-radius:0px; 58 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #AED0EA; 8 | } 9 | .spinner-text{ 10 | font-size:12px; 11 | border:0px; 12 | line-height:20px; 13 | height:20px; 14 | padding:0px; 15 | *height:18px; 16 | *line-height:18px; 17 | _height:18px; 18 | _line-height:18px; 19 | } 20 | .spinner-arrow{ 21 | display:inline-block; 22 | vertical-align:top; 23 | margin:0; 24 | padding:0; 25 | } 26 | .spinner-arrow-up,.spinner-arrow-down{ 27 | display:block; 28 | background:#d7ebf9 url('images/ui-icons_2694e8_256x240.png') no-repeat 2px -2px; 29 | font-size:1px; 30 | width:18px; 31 | height:10px; 32 | } 33 | .spinner-arrow-down{ 34 | background:#d7ebf9 url('images/ui-icons_2694e8_256x240.png') no-repeat -63px -3px; 35 | } 36 | .spinner-arrow-hover{ 37 | background-color:#e4f1fb; 38 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow{ 2 | display:inline-block; 3 | width:16px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 9px center; 7 | } 8 | 9 | a.s-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.s-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.s-btn-active .s-btn-downarrow{ 16 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 17 | } 18 | a:hover.l-btn .s-btn-downarrow{ 19 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 20 | } 21 | 22 | a.s-btn-plain-active{ 23 | background:#e4f1fb url('images/ui-bg_glass_100_e4f1fb_1x400.png') repeat-x 50% 50%; 24 | border:1px solid #AED0EA; 25 | _padding:0px 5px 0px 0px; 26 | border-radius:3px; 27 | } 28 | a.s-btn-plain-active .s-btn-downarrow{ 29 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 30 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/cupertino/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid{ 2 | background:#FFFFEE url('images/validatebox_warning.png') no-repeat right 1px; 3 | } 4 | .validatebox-tip{ 5 | position:absolute; 6 | width:200px; 7 | height:auto; 8 | display:none; 9 | z-index:9900000; 10 | } 11 | .validatebox-tip-content{ 12 | display:inline-block; 13 | position:absolute; 14 | top:0px; 15 | left:10px; 16 | padding:3px 5px; 17 | border:1px solid #CC9933; 18 | background:#FFFFCC; 19 | z-index:9900001; 20 | font-size:12px; 21 | } 22 | .validatebox-tip-pointer{ 23 | background:url('images/validatebox_pointer.gif') no-repeat left top; 24 | display:inline-block; 25 | width:10px; 26 | height:19px; 27 | position:absolute; 28 | left:1px; 29 | top:0px; 30 | z-index:9900002; 31 | } 32 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion{ 2 | background:#fff; 3 | overflow:hidden; 4 | } 5 | .accordion .accordion-header{ 6 | background:#444 url('images/ui-bg_highlight-soft_44_444444_1x100.png') repeat-x 50% 50%; 7 | border-top-width:0; 8 | color:#fff; 9 | cursor:pointer; 10 | } 11 | .accordion .accordion-header .panel-title{ 12 | font-weight:normal; 13 | } 14 | .accordion .accordion-header-selected .panel-title{ 15 | font-weight:bold; 16 | } 17 | .accordion-noborder .accordion-header{ 18 | border-width:0 0 1px; 19 | } 20 | .accordion-noborder .accordion-body{ 21 | border-width:0px; 22 | } 23 | .accordion-collapse{ 24 | background:url('images/ui-icons_ffffff_256x240.png') no-repeat 0px -16px; 25 | } 26 | .accordion-expand{ 27 | background:url('images/ui-icons_ffffff_256x240.png') no-repeat -65px -16px; 28 | } 29 | .accordion .panel-tool a:hover{ 30 | background-color:#0972a5; 31 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/combo.css: -------------------------------------------------------------------------------- 1 | .combo{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #333; 8 | background:#fff; 9 | } 10 | .combo-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .combo-arrow{ 22 | background:#444 url('images/ui-icons_ffffff_256x240.png') no-repeat -63px -14px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | } 30 | .combo-arrow-hover{ 31 | background-color:#0972a5; 32 | } 33 | .combo-panel{ 34 | background:#000 url('images/ui-bg_loop_25_000000_21x21.png') repeat; 35 | overflow:auto; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item{ 2 | padding:2px; 3 | font-size:12px; 4 | padding:3px; 5 | padding-right:0px; 6 | } 7 | .combobox-item-hover{ 8 | background:#222 url('images/ui-bg_highlight-soft_35_222222_1x100.png') repeat-x 50% 50%; 9 | } 10 | .combobox-item-selected{ 11 | background:#003147 url('images/ui-bg_highlight-soft_33_003147_1x100.png') repeat-x 50% 50%; 12 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox .combo-arrow{ 2 | background:url('images/datebox_arrow.png') no-repeat center center; 3 | } 4 | .datebox-calendar-inner{ 5 | height:180px; 6 | } 7 | .datebox-button{ 8 | height:18px; 9 | padding:2px 5px; 10 | font-size:12px; 11 | background:url('images/ui-bg_highlight-soft_44_444444_1x100.png') repeat-x 50% 50%; 12 | text-align:center; 13 | } 14 | .datebox-current,.datebox-close{ 15 | float:left; 16 | color:#ccc; 17 | text-decoration:none; 18 | font-weight:bold; 19 | } 20 | .datebox-close{ 21 | float:right; 22 | } 23 | .datebox-ok{ 24 | color:#ccc; 25 | text-decoration:none; 26 | font-weight:bold; 27 | } 28 | .datebox-button-hover{ 29 | color:#fff; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content{ 2 | overflow:auto; 3 | } 4 | .dialog-toolbar{ 5 | background:#888; 6 | padding:2px 5px; 7 | border-bottom:1px solid #888; 8 | } 9 | .dialog-tool-separator{ 10 | float:left; 11 | height:24px; 12 | border-left:1px solid #444; 13 | border-right:1px solid #ccc; 14 | margin:2px 1px; 15 | } 16 | .dialog-button{ 17 | border-top:1px solid #888; 18 | background:#888; 19 | padding:5px 5px; 20 | text-align:right; 21 | } 22 | .dialog-button .l-btn{ 23 | margin-left:5px; 24 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/calendar_nextmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/calendar_nextmonth.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/calendar_nextyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/calendar_nextyear.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/calendar_prevmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/calendar_prevmonth.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/calendar_prevyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/calendar_prevyear.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/datagrid_row_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/datagrid_row_collapse.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/datagrid_row_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/datagrid_row_expand.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/menu.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/menu_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/menu_downarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/menu_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/menu_rightarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/menu_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/menu_sep.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/menu_split_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/menu_split_downarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/messager_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/messager_error.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/messager_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/messager_info.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/messager_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/messager_question.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/messager_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/messager_warning.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/pagination_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/pagination_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/panel_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/panel_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tabs_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tabs_close.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_arrows.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_checkbox_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_checkbox_0.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_checkbox_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_checkbox_1.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_checkbox_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_checkbox_2.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_dnd_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_dnd_no.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_dnd_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_dnd_yes.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_elbow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_file.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_folder.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_folder_open.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/tree_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/tree_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/validatebox_pointer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/validatebox_pointer.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/dark-hive/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow{ 2 | display:inline-block; 3 | width:12px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 4px center; 7 | } 8 | 9 | a.m-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active{ 16 | color:#fff; 17 | background:#0972a5 url('images/ui-bg_highlight-hard_20_0972a5_1x100.png') repeat-x 50% 50%; 18 | border:1px solid #333; 19 | _padding:0px 5px 0px 0px; 20 | border-radius:3px; 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body{ 2 | padding:5px 10px; 3 | } 4 | .messager-button{ 5 | text-align:center; 6 | padding-top:10px; 7 | } 8 | .messager-icon{ 9 | float:left; 10 | width:47px; 11 | height:35px; 12 | } 13 | .messager-error{ 14 | background:url('images/messager_error.gif') no-repeat scroll left top; 15 | } 16 | .messager-info{ 17 | background:url('images/messager_info.gif') no-repeat scroll left top; 18 | } 19 | .messager-question{ 20 | background:url('images/messager_question.gif') no-repeat scroll left top; 21 | } 22 | .messager-warning{ 23 | background:url('images/messager_warning.gif') no-repeat scroll left top; 24 | } 25 | .messager-input{ 26 | width: 262px; 27 | border:1px solid #ccc; 28 | } 29 | .messager-progress{ 30 | padding:10px; 31 | } 32 | .messager-p-msg{ 33 | margin-bottom:5px; 34 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/pagination.css: -------------------------------------------------------------------------------- 1 | .pagination{ 2 | zoom:1; 3 | } 4 | .pagination table{ 5 | float:left; 6 | height:30px; 7 | } 8 | .pagination-btn-separator{ 9 | float:left; 10 | height:24px; 11 | border-left:1px solid #ccc; 12 | border-right:1px solid #fff; 13 | margin:3px 1px; 14 | } 15 | .pagination-num{ 16 | border:1px solid #ccc; 17 | margin:0 2px; 18 | } 19 | .pagination-page-list{ 20 | margin:0px 6px; 21 | } 22 | .pagination-info{ 23 | float:right; 24 | padding-right:6px; 25 | padding-top:8px; 26 | font-size:12px; 27 | } 28 | .pagination span{ 29 | font-size:12px; 30 | white-space:nowrap; 31 | } 32 | .pagination-first{ 33 | background:url('images/ui-icons_222222_256x240.png') no-repeat -80px -160px; 34 | } 35 | .pagination-prev{ 36 | background:url('images/ui-icons_222222_256x240.png') no-repeat -48px -160px; 37 | } 38 | .pagination-next{ 39 | background:url('images/ui-icons_222222_256x240.png') no-repeat -32px -160px; 40 | } 41 | .pagination-last{ 42 | background:url('images/ui-icons_222222_256x240.png') no-repeat -64px -160px; 43 | } 44 | .pagination-load{ 45 | background:url('images/ui-icons_222222_256x240.png') no-repeat -64px -80px; 46 | } 47 | .pagination-loading{ 48 | background:url('images/pagination_loading.gif') no-repeat; 49 | } 50 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar{ 2 | border:1px solid #333; 3 | border-radius:5px; 4 | overflow:hidden; 5 | } 6 | .progressbar-text{ 7 | text-align:center; 8 | color:#fff; 9 | position:absolute; 10 | } 11 | .progressbar-value{ 12 | background:#000 url('images/ui-bg_highlight-hard_20_0972a5_1x100.png') repeat 50% 50%; 13 | border-radius:5px; 14 | border-top-right-radius:0px; 15 | border-bottom-right-radius:0px; 16 | width:0; 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body,.propertygrid .datagrid-group{ 2 | background:#ccc; 3 | } 4 | .propertygrid .datagrid-group{ 5 | height:21px; 6 | overflow:hidden; 7 | } 8 | .propertygrid .datagrid-view1 .datagrid-body td{ 9 | border-color:#ccc; 10 | } 11 | .propertygrid .datagrid-view1 .datagrid-row-over,.propertygrid .datagrid-view1 .datagrid-row-selected{ 12 | background:#ccc; 13 | } 14 | .propertygrid .datagrid-group span{ 15 | color:#416AA3; 16 | font-weight:bold; 17 | padding-left:4px; 18 | } 19 | .propertygrid .datagrid-row-collapse,.propertygrid .datagrid-row-expand{ 20 | background-position:3px center; 21 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/searchbox.css: -------------------------------------------------------------------------------- 1 | .searchbox{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #333; 8 | background:#fff; 9 | } 10 | .searchbox-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .searchbox-button{ 22 | background:url('images/ui-icons_222222_256x240.png') no-repeat -160px -110px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .searchbox-button-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | } 36 | .searchbox-prompt{ 37 | font-size:12px; 38 | color:#ccc; 39 | } 40 | .searchbox a.l-btn-plain{ 41 | background-color:#888; 42 | border-radius: 0px; 43 | height:20px; 44 | border:0; 45 | padding:0 6px 0 0; 46 | vertical-align:top; 47 | } 48 | .searchbox a.l-btn .l-btn-left{ 49 | padding:2px 0 2px 2px; 50 | } 51 | .searchbox a.l-btn-plain:hover{ 52 | border-radius:0px; 53 | border:0; 54 | padding:0 6px 0 0; 55 | } 56 | .searchbox a.m-btn-plain-active{ 57 | border-radius:0px; 58 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #333; 8 | } 9 | .spinner-text{ 10 | font-size:12px; 11 | border:0px; 12 | line-height:20px; 13 | height:20px; 14 | padding:0px; 15 | *height:18px; 16 | *line-height:18px; 17 | _height:18px; 18 | _line-height:18px; 19 | } 20 | .spinner-arrow{ 21 | display:inline-block; 22 | vertical-align:top; 23 | margin:0; 24 | padding:0; 25 | } 26 | .spinner-arrow-up,.spinner-arrow-down{ 27 | display:block; 28 | background:#444 url('images/ui-icons_ffffff_256x240.png') no-repeat 2px -2px; 29 | font-size:1px; 30 | width:18px; 31 | height:10px; 32 | } 33 | .spinner-arrow-down{ 34 | background:#444 url('images/ui-icons_ffffff_256x240.png') no-repeat -63px -3px; 35 | } 36 | .spinner-arrow-hover{ 37 | background-color:#0972a5; 38 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow{ 2 | display:inline-block; 3 | width:16px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 9px center; 7 | } 8 | 9 | a.s-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.s-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.s-btn-active .s-btn-downarrow{ 16 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 17 | } 18 | a:hover.l-btn .s-btn-downarrow{ 19 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 20 | } 21 | 22 | a.s-btn-plain-active{ 23 | color:#fff; 24 | background:#0972a5 url('images/ui-bg_highlight-hard_20_0972a5_1x100.png') repeat-x 50% 50%; 25 | border:1px solid #333; 26 | _padding:0px 5px 0px 0px; 27 | border-radius:3px; 28 | } 29 | a.s-btn-plain-active .s-btn-downarrow{ 30 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 31 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/dark-hive/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid{ 2 | background:#FFFFEE url('images/validatebox_warning.png') no-repeat right 1px; 3 | } 4 | .validatebox-tip{ 5 | position:absolute; 6 | width:200px; 7 | height:auto; 8 | display:none; 9 | z-index:9900000; 10 | } 11 | .validatebox-tip-content{ 12 | display:inline-block; 13 | position:absolute; 14 | top:0px; 15 | left:10px; 16 | padding:3px 5px; 17 | border:1px solid #CC9933; 18 | background:#FFFFCC; 19 | z-index:9900001; 20 | font-size:12px; 21 | } 22 | .validatebox-tip-pointer{ 23 | background:url('images/validatebox_pointer.gif') no-repeat left top; 24 | display:inline-block; 25 | width:10px; 26 | height:19px; 27 | position:absolute; 28 | left:1px; 29 | top:0px; 30 | z-index:9900002; 31 | } 32 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #ffffff; 30 | border-color: #95B8E7; 31 | } 32 | .accordion .accordion-header { 33 | background: #E0ECFF; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #FBEC88; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #000000; 41 | } 42 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/combo.css: -------------------------------------------------------------------------------- 1 | .combo { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .combo .combo-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0px 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .combo-arrow { 26 | width: 18px; 27 | height: 20px; 28 | overflow: hidden; 29 | display: inline-block; 30 | vertical-align: top; 31 | cursor: pointer; 32 | opacity: 0.6; 33 | filter: alpha(opacity=60); 34 | } 35 | .combo-arrow-hover { 36 | opacity: 1.0; 37 | filter: alpha(opacity=100); 38 | } 39 | .combo-panel { 40 | overflow: auto; 41 | } 42 | .combo-arrow { 43 | background: url('images/combo_arrow.png') no-repeat center center; 44 | } 45 | .combo, 46 | .combo-panel { 47 | background-color: #ffffff; 48 | } 49 | .combo { 50 | border-color: #95B8E7; 51 | background-color: #ffffff; 52 | } 53 | .combo-arrow { 54 | background-color: #E0ECFF; 55 | } 56 | .combo-arrow-hover { 57 | background-color: #eaf2ff; 58 | } 59 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item { 2 | padding: 2px; 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-hover { 8 | background-color: #eaf2ff; 9 | color: #000000; 10 | } 11 | .combobox-item-selected { 12 | background-color: #FBEC88; 13 | color: #000000; 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | font-size: 12px; 8 | text-align: center; 9 | } 10 | .datebox-current, 11 | .datebox-close, 12 | .datebox-ok { 13 | text-decoration: none; 14 | font-weight: bold; 15 | opacity: 0.6; 16 | filter: alpha(opacity=60); 17 | } 18 | .datebox-current, 19 | .datebox-close { 20 | float: left; 21 | } 22 | .datebox-close { 23 | float: right; 24 | } 25 | .datebox-button-hover { 26 | opacity: 1.0; 27 | filter: alpha(opacity=100); 28 | } 29 | .datebox .combo-arrow { 30 | background-image: url('images/datebox_arrow.png'); 31 | background-position: center center; 32 | } 33 | .datebox-button { 34 | background-color: #F4F4F4; 35 | } 36 | .datebox-current, 37 | .datebox-close, 38 | .datebox-ok { 39 | color: #444; 40 | } 41 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #F4F4F4; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #dddddd; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #dddddd; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/Thumbs.db -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/validatebox_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/validatebox_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/default/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | _vertical-align: middle; 7 | } 8 | a.m-btn-active { 9 | background-position: bottom right; 10 | } 11 | a.m-btn-active span.l-btn-left { 12 | background-position: bottom left; 13 | } 14 | a.m-btn-plain-active { 15 | background: transparent; 16 | padding: 0 5px 0 0; 17 | border-width: 1px; 18 | border-style: solid; 19 | -moz-border-radius: 5px 5px 5px 5px; 20 | -webkit-border-radius: 5px 5px 5px 5px; 21 | border-radius: 5px 5px 5px 5px; 22 | } 23 | .m-btn-downarrow { 24 | background: url('images/menu_arrows.png') no-repeat 2px center; 25 | } 26 | a.m-btn-plain-active { 27 | border-color: #b7d2ff; 28 | background-color: #eaf2ff; 29 | color: #000000; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #95B8E7; 37 | } 38 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | } 9 | .progressbar-text { 10 | text-align: center; 11 | position: absolute; 12 | } 13 | .progressbar-value { 14 | position: relative; 15 | overflow: hidden; 16 | width: 0; 17 | -moz-border-radius: 5px 0 0 5px; 18 | -webkit-border-radius: 5px 0 0 5px; 19 | border-radius: 5px 0 0 5px; 20 | } 21 | .progressbar { 22 | border-color: #95B8E7; 23 | } 24 | .progressbar-text { 25 | color: #000000; 26 | } 27 | .progressbar-value .progressbar-text { 28 | background-color: #FBEC88; 29 | color: #000000; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #dddddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #E0ECFF; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #dddddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #E0ECFF; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/default/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | _vertical-align: middle; 11 | } 12 | a.s-btn-active { 13 | background-position: bottom right; 14 | } 15 | a.s-btn-active span.l-btn-left { 16 | background-position: bottom left; 17 | } 18 | a.s-btn-plain-active { 19 | background: transparent; 20 | padding: 0 5px 0 0; 21 | border-width: 1px; 22 | border-style: solid; 23 | -moz-border-radius: 5px 5px 5px 5px; 24 | -webkit-border-radius: 5px 5px 5px 5px; 25 | border-radius: 5px 5px 5px 5px; 26 | } 27 | .s-btn-downarrow { 28 | background: url('images/menu_arrows.png') no-repeat 2px center; 29 | border-color: #aac5e7; 30 | } 31 | a:hover.l-btn .s-btn-downarrow, 32 | a.s-btn-active .s-btn-downarrow, 33 | a.s-btn-plain-active .s-btn-downarrow { 34 | background-position: 1px center; 35 | padding: 0; 36 | border-width: 0 0 0 1px; 37 | } 38 | a.s-btn-plain-active { 39 | border-color: #b7d2ff; 40 | background-color: #eaf2ff; 41 | color: #000000; 42 | } 43 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #ffffff; 30 | border-color: #D3D3D3; 31 | } 32 | .accordion .accordion-header { 33 | background: #f3f3f3; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #0092DC; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #fff; 41 | } 42 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item { 2 | padding: 2px; 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-hover { 8 | background-color: #e2e2e2; 9 | color: #000000; 10 | } 11 | .combobox-item-selected { 12 | background-color: #0092DC; 13 | color: #fff; 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | font-size: 12px; 8 | text-align: center; 9 | } 10 | .datebox-current, 11 | .datebox-close, 12 | .datebox-ok { 13 | text-decoration: none; 14 | font-weight: bold; 15 | opacity: 0.6; 16 | filter: alpha(opacity=60); 17 | } 18 | .datebox-current, 19 | .datebox-close { 20 | float: left; 21 | } 22 | .datebox-close { 23 | float: right; 24 | } 25 | .datebox-button-hover { 26 | opacity: 1.0; 27 | filter: alpha(opacity=100); 28 | } 29 | .datebox .combo-arrow { 30 | background-image: url('images/datebox_arrow.png'); 31 | background-position: center center; 32 | } 33 | .datebox-button { 34 | background-color: #fafafa; 35 | } 36 | .datebox-current, 37 | .datebox-close, 38 | .datebox-ok { 39 | color: #444; 40 | } 41 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ccc; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #fafafa; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #ddd; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #ddd; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/Thumbs.db -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/validatebox_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/validatebox_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/gray/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | _vertical-align: middle; 7 | } 8 | a.m-btn-active { 9 | background-position: bottom right; 10 | } 11 | a.m-btn-active span.l-btn-left { 12 | background-position: bottom left; 13 | } 14 | a.m-btn-plain-active { 15 | background: transparent; 16 | padding: 0 5px 0 0; 17 | border-width: 1px; 18 | border-style: solid; 19 | -moz-border-radius: 5px 5px 5px 5px; 20 | -webkit-border-radius: 5px 5px 5px 5px; 21 | border-radius: 5px 5px 5px 5px; 22 | } 23 | .m-btn-downarrow { 24 | background: url('images/menu_arrows.png') no-repeat 2px center; 25 | } 26 | a.m-btn-plain-active { 27 | border-color: #ccc; 28 | background-color: #e2e2e2; 29 | color: #000000; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #D3D3D3; 37 | } 38 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 5px 5px 5px 5px; 5 | -webkit-border-radius: 5px 5px 5px 5px; 6 | border-radius: 5px 5px 5px 5px; 7 | overflow: hidden; 8 | } 9 | .progressbar-text { 10 | text-align: center; 11 | position: absolute; 12 | } 13 | .progressbar-value { 14 | position: relative; 15 | overflow: hidden; 16 | width: 0; 17 | -moz-border-radius: 5px 0 0 5px; 18 | -webkit-border-radius: 5px 0 0 5px; 19 | border-radius: 5px 0 0 5px; 20 | } 21 | .progressbar { 22 | border-color: #D3D3D3; 23 | } 24 | .progressbar-text { 25 | color: #000000; 26 | } 27 | .progressbar-value .progressbar-text { 28 | background-color: #0092DC; 29 | color: #fff; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #ddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #f3f3f3; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #ddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #f3f3f3; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/gray/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | _vertical-align: middle; 11 | } 12 | a.s-btn-active { 13 | background-position: bottom right; 14 | } 15 | a.s-btn-active span.l-btn-left { 16 | background-position: bottom left; 17 | } 18 | a.s-btn-plain-active { 19 | background: transparent; 20 | padding: 0 5px 0 0; 21 | border-width: 1px; 22 | border-style: solid; 23 | -moz-border-radius: 5px 5px 5px 5px; 24 | -webkit-border-radius: 5px 5px 5px 5px; 25 | border-radius: 5px 5px 5px 5px; 26 | } 27 | .s-btn-downarrow { 28 | background: url('images/menu_arrows.png') no-repeat 2px center; 29 | border-color: #bfbfbf; 30 | } 31 | a:hover.l-btn .s-btn-downarrow, 32 | a.s-btn-active .s-btn-downarrow, 33 | a.s-btn-plain-active .s-btn-downarrow { 34 | background-position: 1px center; 35 | padding: 0; 36 | border-width: 0 0 0 1px; 37 | } 38 | a.s-btn-plain-active { 39 | border-color: #ccc; 40 | background-color: #e2e2e2; 41 | color: #000000; 42 | } 43 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/back.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/cancel.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/cut.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/edit_add.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/edit_remove.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/filesave.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/help.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/mini_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/mini_add.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/mini_edit.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/mini_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/mini_refresh.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/no.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/ok.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/pencil.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/print.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/redo.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/reload.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/search.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/sum.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/tip.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/icons/undo.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion { 2 | overflow: hidden; 3 | border-width: 1px; 4 | border-style: solid; 5 | } 6 | .accordion .accordion-header { 7 | border-width: 0 0 1px; 8 | cursor: pointer; 9 | } 10 | .accordion .accordion-body { 11 | border-width: 0 0 1px; 12 | } 13 | .accordion-noborder { 14 | border-width: 0; 15 | } 16 | .accordion-noborder .accordion-header { 17 | border-width: 0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body { 20 | border-width: 0 0 1px; 21 | } 22 | .accordion-collapse { 23 | background: url('images/accordion_arrows.png') no-repeat 0 0; 24 | } 25 | .accordion-expand { 26 | background: url('images/accordion_arrows.png') no-repeat -16px 0; 27 | } 28 | .accordion { 29 | background: #fff; 30 | border-color: #ddd; 31 | } 32 | .accordion .accordion-header { 33 | background: #ffffff; 34 | filter: none; 35 | } 36 | .accordion .accordion-header-selected { 37 | background: #CCE6FF; 38 | } 39 | .accordion .accordion-header-selected .panel-title { 40 | color: #000; 41 | } 42 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/combo.css: -------------------------------------------------------------------------------- 1 | .combo { 2 | display: inline-block; 3 | white-space: nowrap; 4 | margin: 0; 5 | padding: 0; 6 | border-width: 1px; 7 | border-style: solid; 8 | overflow: hidden; 9 | vertical-align: middle; 10 | } 11 | .combo .combo-text { 12 | font-size: 12px; 13 | border: 0px; 14 | line-height: 20px; 15 | height: 20px; 16 | margin: 0; 17 | padding: 0px 2px; 18 | *margin-top: -1px; 19 | *height: 18px; 20 | *line-height: 18px; 21 | _height: 18px; 22 | _line-height: 18px; 23 | vertical-align: baseline; 24 | } 25 | .combo-arrow { 26 | width: 18px; 27 | height: 20px; 28 | overflow: hidden; 29 | display: inline-block; 30 | vertical-align: top; 31 | cursor: pointer; 32 | opacity: 0.6; 33 | filter: alpha(opacity=60); 34 | } 35 | .combo-arrow-hover { 36 | opacity: 1.0; 37 | filter: alpha(opacity=100); 38 | } 39 | .combo-panel { 40 | overflow: auto; 41 | } 42 | .combo-arrow { 43 | background: url('images/combo_arrow.png') no-repeat center center; 44 | } 45 | .combo, 46 | .combo-panel { 47 | background-color: #fff; 48 | } 49 | .combo { 50 | border-color: #ddd; 51 | background-color: #fff; 52 | } 53 | .combo-arrow { 54 | background-color: #ffffff; 55 | } 56 | .combo-arrow-hover { 57 | background-color: #E6E6E6; 58 | } 59 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item { 2 | padding: 2px; 3 | font-size: 12px; 4 | padding: 3px; 5 | padding-right: 0px; 6 | } 7 | .combobox-item-hover { 8 | background-color: #E6E6E6; 9 | color: #444; 10 | } 11 | .combobox-item-selected { 12 | background-color: #CCE6FF; 13 | color: #000; 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox-calendar-inner { 2 | height: 180px; 3 | } 4 | .datebox-button { 5 | height: 18px; 6 | padding: 2px 5px; 7 | font-size: 12px; 8 | text-align: center; 9 | } 10 | .datebox-current, 11 | .datebox-close, 12 | .datebox-ok { 13 | text-decoration: none; 14 | font-weight: bold; 15 | opacity: 0.6; 16 | filter: alpha(opacity=60); 17 | } 18 | .datebox-current, 19 | .datebox-close { 20 | float: left; 21 | } 22 | .datebox-close { 23 | float: right; 24 | } 25 | .datebox-button-hover { 26 | opacity: 1.0; 27 | filter: alpha(opacity=100); 28 | } 29 | .datebox .combo-arrow { 30 | background-image: url('images/datebox_arrow.png'); 31 | background-position: center center; 32 | } 33 | .datebox-button { 34 | background-color: #fff; 35 | } 36 | .datebox-current, 37 | .datebox-close, 38 | .datebox-ok { 39 | color: #777; 40 | } 41 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content { 2 | overflow: auto; 3 | } 4 | .dialog-toolbar { 5 | padding: 2px 5px; 6 | } 7 | .dialog-tool-separator { 8 | float: left; 9 | height: 24px; 10 | border-left: 1px solid #ddd; 11 | border-right: 1px solid #fff; 12 | margin: 2px 1px; 13 | } 14 | .dialog-button { 15 | padding: 5px; 16 | text-align: right; 17 | } 18 | .dialog-button .l-btn { 19 | margin-left: 5px; 20 | } 21 | .dialog-toolbar, 22 | .dialog-button { 23 | background: #fff; 24 | } 25 | .dialog-toolbar { 26 | border-bottom: 1px solid #ddd; 27 | } 28 | .dialog-button { 29 | border-top: 1px solid #ddd; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/Thumbs.db -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/accordion_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/calendar_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/combo_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/datagrid_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/layout_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/linkbutton_bg.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/menu_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/messager_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/pagination_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/panel_tools.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/searchbox_button.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/spinner_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/tabs_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/tree_icons.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/validatebox_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/validatebox_arrows.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/metro/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow { 2 | display: inline-block; 3 | width: 16px; 4 | height: 16px; 5 | line-height: 16px; 6 | _vertical-align: middle; 7 | } 8 | a.m-btn-active { 9 | background-position: bottom right; 10 | } 11 | a.m-btn-active span.l-btn-left { 12 | background-position: bottom left; 13 | } 14 | a.m-btn-plain-active { 15 | background: transparent; 16 | padding: 0 5px 0 0; 17 | border-width: 1px; 18 | border-style: solid; 19 | -moz-border-radius: 0px 0px 0px 0px; 20 | -webkit-border-radius: 0px 0px 0px 0px; 21 | border-radius: 0px 0px 0px 0px; 22 | } 23 | .m-btn-downarrow { 24 | background: url('images/menu_arrows.png') no-repeat 2px center; 25 | } 26 | a.m-btn-plain-active { 27 | border-color: #ddd; 28 | background-color: #E6E6E6; 29 | color: #444; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body { 2 | padding: 10px; 3 | overflow: hidden; 4 | } 5 | .messager-button { 6 | text-align: center; 7 | padding-top: 10px; 8 | } 9 | .messager-icon { 10 | float: left; 11 | width: 32px; 12 | height: 32px; 13 | margin: 0 10px 10px 0; 14 | } 15 | .messager-error { 16 | background: url('images/messager_icons.png') no-repeat scroll -64px 0; 17 | } 18 | .messager-info { 19 | background: url('images/messager_icons.png') no-repeat scroll 0 0; 20 | } 21 | .messager-question { 22 | background: url('images/messager_icons.png') no-repeat scroll -32px 0; 23 | } 24 | .messager-warning { 25 | background: url('images/messager_icons.png') no-repeat scroll -96px 0; 26 | } 27 | .messager-progress { 28 | padding: 10px; 29 | } 30 | .messager-p-msg { 31 | margin-bottom: 5px; 32 | } 33 | .messager-body .messager-input { 34 | width: 100%; 35 | padding: 1px 0; 36 | border: 1px solid #ddd; 37 | } 38 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar { 2 | border-width: 1px; 3 | border-style: solid; 4 | -moz-border-radius: 0px 0px 0px 0px; 5 | -webkit-border-radius: 0px 0px 0px 0px; 6 | border-radius: 0px 0px 0px 0px; 7 | overflow: hidden; 8 | } 9 | .progressbar-text { 10 | text-align: center; 11 | position: absolute; 12 | } 13 | .progressbar-value { 14 | position: relative; 15 | overflow: hidden; 16 | width: 0; 17 | -moz-border-radius: 0px 0 0 0px; 18 | -webkit-border-radius: 0px 0 0 0px; 19 | border-radius: 0px 0 0 0px; 20 | } 21 | .progressbar { 22 | border-color: #ddd; 23 | } 24 | .progressbar-text { 25 | color: #444; 26 | } 27 | .progressbar-value .progressbar-text { 28 | background-color: #CCE6FF; 29 | color: #000; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body td { 2 | padding-bottom: 1px; 3 | border-width: 0 1px 0 0; 4 | } 5 | .propertygrid .datagrid-group { 6 | height: 21px; 7 | overflow: hidden; 8 | border-width: 0 0 1px 0; 9 | border-style: solid; 10 | } 11 | .propertygrid .datagrid-group span { 12 | font-weight: bold; 13 | } 14 | .propertygrid .datagrid-view1 .datagrid-body td { 15 | border-color: #ddd; 16 | } 17 | .propertygrid .datagrid-view1 .datagrid-group { 18 | border-color: #ffffff; 19 | } 20 | .propertygrid .datagrid-view2 .datagrid-group { 21 | border-color: #ddd; 22 | } 23 | .propertygrid .datagrid-group, 24 | .propertygrid .datagrid-view1 .datagrid-body, 25 | .propertygrid .datagrid-view1 .datagrid-row-over, 26 | .propertygrid .datagrid-view1 .datagrid-row-selected { 27 | background: #ffffff; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/metro/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow { 2 | display: inline-block; 3 | margin: 0 0 0 4px; 4 | padding: 0 0 0 1px; 5 | width: 14px; 6 | height: 16px; 7 | line-height: 16px; 8 | border-width: 0; 9 | border-style: solid; 10 | _vertical-align: middle; 11 | } 12 | a.s-btn-active { 13 | background-position: bottom right; 14 | } 15 | a.s-btn-active span.l-btn-left { 16 | background-position: bottom left; 17 | } 18 | a.s-btn-plain-active { 19 | background: transparent; 20 | padding: 0 5px 0 0; 21 | border-width: 1px; 22 | border-style: solid; 23 | -moz-border-radius: 0px 0px 0px 0px; 24 | -webkit-border-radius: 0px 0px 0px 0px; 25 | border-radius: 0px 0px 0px 0px; 26 | } 27 | .s-btn-downarrow { 28 | background: url('images/menu_arrows.png') no-repeat 2px center; 29 | border-color: #b3b3b3; 30 | } 31 | a:hover.l-btn .s-btn-downarrow, 32 | a.s-btn-active .s-btn-downarrow, 33 | a.s-btn-plain-active .s-btn-downarrow { 34 | background-position: 1px center; 35 | padding: 0; 36 | border-width: 0 0 0 1px; 37 | } 38 | a.s-btn-plain-active { 39 | border-color: #ddd; 40 | background-color: #E6E6E6; 41 | color: #444; 42 | } 43 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion{ 2 | background:#fff; 3 | overflow:hidden; 4 | } 5 | .accordion .accordion-header{ 6 | background:#fff url('images/ui-bg_fine-grain_15_ffffff_60x60.png') repeat-x 50% 50%; 7 | border-top-width:0; 8 | color:#654B24; 9 | cursor:pointer; 10 | } 11 | .accordion .accordion-header .panel-title{ 12 | font-weight:normal; 13 | } 14 | .accordion .accordion-header-selected .panel-title{ 15 | font-weight:bold; 16 | } 17 | .accordion-noborder .accordion-header{ 18 | border-width:0 0 1px; 19 | } 20 | .accordion-noborder .accordion-body{ 21 | border-width:0px; 22 | } 23 | .accordion-collapse{ 24 | background:url('images/ui-icons_b83400_256x240.png') no-repeat 0px -16px; 25 | } 26 | .accordion-expand{ 27 | background:url('images/ui-icons_b83400_256x240.png') no-repeat -65px -16px; 28 | } 29 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/combo.css: -------------------------------------------------------------------------------- 1 | .combo{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #D9D6C4; 8 | background:#fff; 9 | } 10 | .combo-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .combo-arrow{ 22 | background:#eceadf url('images/ui-icons_b83400_256x240.png') no-repeat -63px -14px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | } 30 | .combo-arrow-hover{ 31 | background-color:#654b24; 32 | } 33 | .combo-panel{ 34 | background:#eceadf url('images/ui-bg_fine-grain_10_eceadf_60x60.png') repeat; 35 | overflow:auto; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item{ 2 | padding:2px; 3 | font-size:12px; 4 | padding:3px; 5 | padding-right:0px; 6 | } 7 | .combobox-item-hover{ 8 | background:#654b24 url('images/ui-bg_fine-grain_65_654b24_60x60.png') repeat-x 50% 50%; 9 | color:#fff; 10 | } 11 | .combobox-item-selected{ 12 | background:#b83400 url('images/ui-bg_fine-grain_68_b83400_60x60.png') repeat-x 50% 50%; 13 | color:#fff; 14 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox .combo-arrow{ 2 | background:url('images/datebox_arrow.png') no-repeat center center; 3 | } 4 | .datebox-calendar-inner{ 5 | height:180px; 6 | } 7 | .datebox-button{ 8 | height:18px; 9 | padding:2px 5px; 10 | font-size:12px; 11 | background-color:#eceadf; 12 | text-align:center; 13 | } 14 | .datebox-current,.datebox-close{ 15 | float:left; 16 | color:#888; 17 | text-decoration:none; 18 | font-weight:bold; 19 | } 20 | .datebox-close{ 21 | float:right; 22 | } 23 | .datebox-ok{ 24 | color:#888; 25 | text-decoration:none; 26 | font-weight:bold; 27 | } 28 | .datebox-button-hover{ 29 | color:#444; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content{ 2 | overflow:auto; 3 | } 4 | .dialog-toolbar{ 5 | background:#fafafa; 6 | padding:2px 5px; 7 | border-bottom:1px solid #eee; 8 | } 9 | .dialog-tool-separator{ 10 | float:left; 11 | height:24px; 12 | border-left:1px solid #ccc; 13 | border-right:1px solid #fff; 14 | margin:2px 1px; 15 | } 16 | .dialog-button{ 17 | border-top:1px solid #eee; 18 | background:#fafafa; 19 | padding:5px 5px; 20 | text-align:right; 21 | } 22 | .dialog-button .l-btn{ 23 | margin-left:5px; 24 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/calendar_nextmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/calendar_nextmonth.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/calendar_nextyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/calendar_nextyear.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/calendar_prevmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/calendar_prevmonth.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/calendar_prevyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/calendar_prevyear.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/datagrid_row_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/datagrid_row_collapse.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/datagrid_row_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/datagrid_row_expand.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu_downarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu_rightarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu_sep.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu_split_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/menu_split_downarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/messager_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/messager_error.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/messager_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/messager_info.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/messager_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/messager_question.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/messager_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/messager_warning.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/pagination_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/pagination_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/panel_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/panel_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tabs_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tabs_close.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_arrows.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_checkbox_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_checkbox_0.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_checkbox_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_checkbox_1.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_checkbox_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_checkbox_2.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_dnd_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_dnd_no.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_dnd_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_dnd_yes.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_elbow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_file.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_folder.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_folder_open.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/tree_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/validatebox_pointer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/validatebox_pointer.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/pepper-grinder/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow{ 2 | display:inline-block; 3 | width:12px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 4px center; 7 | } 8 | 9 | a.m-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active{ 16 | background:#654b24 url('images/ui-bg_fine-grain_65_654b24_60x60.png') repeat-x 50% 50%; 17 | border:1px solid #CBC7BD; 18 | _padding:0px 5px 0px 0px; 19 | border-radius:3px; 20 | color:#fff; 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body{ 2 | padding:5px 10px; 3 | } 4 | .messager-button{ 5 | text-align:center; 6 | padding-top:10px; 7 | } 8 | .messager-icon{ 9 | float:left; 10 | width:47px; 11 | height:35px; 12 | } 13 | .messager-error{ 14 | background:url('images/messager_error.gif') no-repeat scroll left top; 15 | } 16 | .messager-info{ 17 | background:url('images/messager_info.gif') no-repeat scroll left top; 18 | } 19 | .messager-question{ 20 | background:url('images/messager_question.gif') no-repeat scroll left top; 21 | } 22 | .messager-warning{ 23 | background:url('images/messager_warning.gif') no-repeat scroll left top; 24 | } 25 | .messager-input{ 26 | width: 262px; 27 | border:1px solid #ccc; 28 | } 29 | .messager-progress{ 30 | padding:10px; 31 | } 32 | .messager-p-msg{ 33 | margin-bottom:5px; 34 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/pagination.css: -------------------------------------------------------------------------------- 1 | .pagination{ 2 | zoom:1; 3 | } 4 | .pagination table{ 5 | float:left; 6 | height:30px; 7 | } 8 | .pagination-btn-separator{ 9 | float:left; 10 | height:24px; 11 | border-left:1px solid #ccc; 12 | border-right:1px solid #fff; 13 | margin:3px 1px; 14 | } 15 | .pagination-num{ 16 | border:1px solid #ccc; 17 | margin:0 2px; 18 | } 19 | .pagination-page-list{ 20 | margin:0px 6px; 21 | } 22 | .pagination-info{ 23 | float:right; 24 | padding-right:6px; 25 | padding-top:8px; 26 | font-size:12px; 27 | } 28 | .pagination span{ 29 | font-size:12px; 30 | white-space:nowrap; 31 | } 32 | .pagination-first{ 33 | background:url('images/ui-icons_b83400_256x240.png') no-repeat -80px -160px; 34 | } 35 | .pagination-prev{ 36 | background:url('images/ui-icons_b83400_256x240.png') no-repeat -48px -160px; 37 | } 38 | .pagination-next{ 39 | background:url('images/ui-icons_b83400_256x240.png') no-repeat -32px -160px; 40 | } 41 | .pagination-last{ 42 | background:url('images/ui-icons_b83400_256x240.png') no-repeat -64px -160px; 43 | } 44 | .pagination-load{ 45 | background:url('images/ui-icons_b83400_256x240.png') no-repeat -64px -80px; 46 | } 47 | .pagination-loading{ 48 | background:url('images/pagination_loading.gif') no-repeat; 49 | } 50 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar{ 2 | border:1px solid #8E846B; 3 | border-radius:5px; 4 | overflow:hidden; 5 | } 6 | .progressbar-text{ 7 | text-align:center; 8 | color:#444; 9 | position:absolute; 10 | } 11 | .progressbar-value{ 12 | background:#b83400 url('images/ui-bg_fine-grain_68_b83400_60x60.png') repeat 50% 50%; 13 | border-radius:5px; 14 | border-top-right-radius:0px; 15 | border-bottom-right-radius:0px; 16 | width:0; 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body,.propertygrid .datagrid-group{ 2 | background:#eceadf; 3 | } 4 | .propertygrid .datagrid-group{ 5 | height:21px; 6 | overflow:hidden; 7 | } 8 | .propertygrid .datagrid-view1 .datagrid-body td{ 9 | border-color:#eceadf; 10 | } 11 | .propertygrid .datagrid-view1 .datagrid-row-over,.propertygrid .datagrid-view1 .datagrid-row-selected{ 12 | background:#eceadf; 13 | } 14 | .propertygrid .datagrid-group span{ 15 | color:#654B24; 16 | font-weight:bold; 17 | padding-left:4px; 18 | } 19 | .propertygrid .datagrid-row-collapse,.propertygrid .datagrid-row-expand{ 20 | background-position:3px center; 21 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #D9D6C4; 8 | } 9 | .spinner-text{ 10 | font-size:12px; 11 | border:0px; 12 | line-height:20px; 13 | height:20px; 14 | padding:0px; 15 | *height:18px; 16 | *line-height:18px; 17 | _height:18px; 18 | _line-height:18px; 19 | } 20 | .spinner-arrow{ 21 | display:inline-block; 22 | vertical-align:top; 23 | margin:0; 24 | padding:0; 25 | } 26 | .spinner-arrow-up,.spinner-arrow-down{ 27 | display:block; 28 | background:#eceadf url('images/ui-icons_b83400_256x240.png') no-repeat 2px -2px; 29 | font-size:1px; 30 | width:18px; 31 | height:10px; 32 | } 33 | .spinner-arrow-down{ 34 | background:#eceadf url('images/ui-icons_b83400_256x240.png') no-repeat -63px -3px; 35 | } 36 | .spinner-arrow-hover{ 37 | background-color:#f8f7f6; 38 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow{ 2 | display:inline-block; 3 | width:16px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 9px center; 7 | } 8 | 9 | a.s-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.s-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.s-btn-active .s-btn-downarrow{ 16 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 17 | } 18 | a:hover.l-btn .s-btn-downarrow{ 19 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 20 | } 21 | 22 | a.s-btn-plain-active{ 23 | background:#654b24 url('images/ui-bg_fine-grain_65_654b24_60x60.png') repeat-x 50% 50%; 24 | border:1px solid #CBC7BD; 25 | _padding:0px 5px 0px 0px; 26 | border-radius:3px; 27 | color:#fff; 28 | } 29 | a.s-btn-plain-active .s-btn-downarrow{ 30 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 31 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/pepper-grinder/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid{ 2 | background:#FFFFEE url('images/validatebox_warning.png') no-repeat right 1px; 3 | } 4 | .validatebox-tip{ 5 | position:absolute; 6 | width:200px; 7 | height:auto; 8 | display:none; 9 | z-index:9900000; 10 | } 11 | .validatebox-tip-content{ 12 | display:inline-block; 13 | position:absolute; 14 | top:0px; 15 | left:10px; 16 | padding:3px 5px; 17 | border:1px solid #CC9933; 18 | background:#FFFFCC; 19 | z-index:9900001; 20 | font-size:12px; 21 | } 22 | .validatebox-tip-pointer{ 23 | background:url('images/validatebox_pointer.gif') no-repeat left top; 24 | display:inline-block; 25 | width:10px; 26 | height:19px; 27 | position:absolute; 28 | left:1px; 29 | top:0px; 30 | z-index:9900002; 31 | } 32 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion{ 2 | background:#fff; 3 | overflow:hidden; 4 | } 5 | .accordion .accordion-header{ 6 | background:#fece2f url('images/ui-bg_gloss-wave_70_ffdd57_500x100.png') repeat-x 50% 50%; 7 | border-top-width:0; 8 | color:#4C3000; 9 | cursor:pointer; 10 | } 11 | .accordion .accordion-header .panel-title{ 12 | font-weight:normal; 13 | } 14 | .accordion .accordion-header-selected .panel-title{ 15 | font-weight:bold; 16 | } 17 | .accordion-noborder .accordion-header{ 18 | border-width:0 0 1px; 19 | } 20 | .accordion-noborder .accordion-body{ 21 | border-width:0px; 22 | } 23 | .accordion-collapse{ 24 | background:url('images/ui-icons_bd7b00_256x240.png') no-repeat 0px -16px; 25 | } 26 | .accordion-expand{ 27 | background:url('images/ui-icons_bd7b00_256x240.png') no-repeat -65px -16px; 28 | } 29 | .accordion .panel-tool a:hover{ 30 | background-color:#fff9e5; 31 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/combo.css: -------------------------------------------------------------------------------- 1 | .combo{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #8E846B; 8 | background:#fff; 9 | } 10 | .combo-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .combo-arrow{ 22 | background:#fece2f url('images/ui-icons_bd7b00_256x240.png') no-repeat -63px -14px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | } 30 | .combo-arrow-hover{ 31 | background-color:#ffdd57; 32 | } 33 | .combo-panel{ 34 | background:#FEEEBD url('images/ui-bg_highlight-soft_100_feeebd_1x100.png') repeat-x; 35 | overflow:auto; 36 | } 37 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item{ 2 | padding:2px; 3 | font-size:12px; 4 | padding:3px; 5 | padding-right:0px; 6 | } 7 | .combobox-item-hover{ 8 | background:#fece2f url('images/ui-bg_gloss-wave_60_fece2f_500x100.png') repeat-x 50% 50%; 9 | } 10 | .combobox-item-selected{ 11 | background:#ffdd57 url('images/ui-bg_gloss-wave_70_ffdd57_500x100.png') repeat-x 50% 50%; 12 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox .combo-arrow{ 2 | background:url('images/datebox_arrow.png') no-repeat center center; 3 | } 4 | .datebox-calendar-inner{ 5 | height:180px; 6 | } 7 | .datebox-button{ 8 | height:18px; 9 | padding:2px 5px; 10 | font-size:12px; 11 | background-color:#fff9e5; 12 | text-align:center; 13 | } 14 | .datebox-current,.datebox-close{ 15 | float:left; 16 | color:#888; 17 | text-decoration:none; 18 | font-weight:bold; 19 | } 20 | .datebox-close{ 21 | float:right; 22 | } 23 | .datebox-ok{ 24 | color:#888; 25 | text-decoration:none; 26 | font-weight:bold; 27 | } 28 | .datebox-button-hover{ 29 | color:#444; 30 | } 31 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content{ 2 | overflow:auto; 3 | } 4 | .dialog-toolbar{ 5 | background:#fafafa; 6 | padding:2px 5px; 7 | border-bottom:1px solid #eee; 8 | } 9 | .dialog-tool-separator{ 10 | float:left; 11 | height:24px; 12 | border-left:1px solid #ccc; 13 | border-right:1px solid #fff; 14 | margin:2px 1px; 15 | } 16 | .dialog-button{ 17 | border-top:1px solid #eee; 18 | background:#fafafa; 19 | padding:5px 5px; 20 | text-align:right; 21 | } 22 | .dialog-button .l-btn{ 23 | margin-left:5px; 24 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/blank.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/calendar_nextmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/calendar_nextmonth.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/calendar_nextyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/calendar_nextyear.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/calendar_prevmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/calendar_prevmonth.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/calendar_prevyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/calendar_prevyear.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/datagrid_row_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/datagrid_row_collapse.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/datagrid_row_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/datagrid_row_expand.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/datebox_arrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/menu.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/menu_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/menu_downarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/menu_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/menu_rightarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/menu_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/menu_sep.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/menu_split_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/menu_split_downarrow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/messager_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/messager_error.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/messager_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/messager_info.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/messager_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/messager_question.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/messager_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/messager_warning.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/pagination_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/pagination_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/panel_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/panel_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/slider_handle.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tabs_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tabs_close.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_arrows.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_checkbox_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_checkbox_0.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_checkbox_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_checkbox_1.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_checkbox_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_checkbox_2.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_dnd_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_dnd_no.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_dnd_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_dnd_yes.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_elbow.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_file.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_folder.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_folder_open.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/tree_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/tree_loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_3d3d3d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_3d3d3d_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_bd7b00_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_bd7b00_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_d19405_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_d19405_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_eb990f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_eb990f_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_ed9f26_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_ed9f26_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_fadc7a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_fadc7a_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_ffe180_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/ui-icons_ffe180_256x240.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/validatebox_pointer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/validatebox_pointer.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/src/main/resources/static/js/easyui/themes/sunny/images/validatebox_warning.png -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow{ 2 | display:inline-block; 3 | width:12px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 4px center; 7 | } 8 | 9 | a.m-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active{ 16 | background:#fece2f url('images/ui-bg_gloss-wave_60_fece2f_500x100.png') repeat-x 50% 50%; 17 | border:1px solid #D19405; 18 | _padding:0px 5px 0px 0px; 19 | border-radius:3px; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body{ 2 | padding:5px 10px; 3 | } 4 | .messager-button{ 5 | text-align:center; 6 | padding-top:10px; 7 | } 8 | .messager-icon{ 9 | float:left; 10 | width:47px; 11 | height:35px; 12 | } 13 | .messager-error{ 14 | background:url('images/messager_error.gif') no-repeat scroll left top; 15 | } 16 | .messager-info{ 17 | background:url('images/messager_info.gif') no-repeat scroll left top; 18 | } 19 | .messager-question{ 20 | background:url('images/messager_question.gif') no-repeat scroll left top; 21 | } 22 | .messager-warning{ 23 | background:url('images/messager_warning.gif') no-repeat scroll left top; 24 | } 25 | .messager-input{ 26 | width: 262px; 27 | border:1px solid #ccc; 28 | } 29 | .messager-progress{ 30 | padding:10px; 31 | } 32 | .messager-p-msg{ 33 | margin-bottom:5px; 34 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/pagination.css: -------------------------------------------------------------------------------- 1 | .pagination{ 2 | zoom:1; 3 | } 4 | .pagination table{ 5 | float:left; 6 | height:30px; 7 | } 8 | .pagination-btn-separator{ 9 | float:left; 10 | height:24px; 11 | border-left:1px solid #ccc; 12 | border-right:1px solid #fff; 13 | margin:3px 1px; 14 | } 15 | .pagination-num{ 16 | border:1px solid #ccc; 17 | margin:0 2px; 18 | } 19 | .pagination-page-list{ 20 | margin:0px 6px; 21 | } 22 | .pagination-info{ 23 | float:right; 24 | padding-right:6px; 25 | padding-top:8px; 26 | font-size:12px; 27 | } 28 | .pagination span{ 29 | font-size:12px; 30 | white-space:nowrap; 31 | } 32 | .pagination-first{ 33 | background:url('images/ui-icons_ed9f26_256x240.png') no-repeat -80px -160px; 34 | } 35 | .pagination-prev{ 36 | background:url('images/ui-icons_ed9f26_256x240.png') no-repeat -48px -160px; 37 | } 38 | .pagination-next{ 39 | background:url('images/ui-icons_ed9f26_256x240.png') no-repeat -32px -160px; 40 | } 41 | .pagination-last{ 42 | background:url('images/ui-icons_ed9f26_256x240.png') no-repeat -64px -160px; 43 | } 44 | .pagination-load{ 45 | background:url('images/ui-icons_ed9f26_256x240.png') no-repeat -64px -80px; 46 | } 47 | .pagination-loading{ 48 | background:url('images/pagination_loading.gif') no-repeat; 49 | } 50 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar{ 2 | border:1px solid #8E846B; 3 | border-radius:5px; 4 | overflow:hidden; 5 | } 6 | .progressbar-text{ 7 | text-align:center; 8 | color:#444; 9 | position:absolute; 10 | } 11 | .progressbar-value{ 12 | background:#817865 url('images/ui-bg_diagonals-medium_20_d34d17_40x40.png') repeat 50% 50%; 13 | border-radius:5px; 14 | border-top-right-radius:0px; 15 | border-bottom-right-radius:0px; 16 | width:0; 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body,.propertygrid .datagrid-group{ 2 | background:#fff9e5; 3 | } 4 | .propertygrid .datagrid-group{ 5 | height:21px; 6 | overflow:hidden; 7 | } 8 | .propertygrid .datagrid-view1 .datagrid-body td{ 9 | border-color:#fff9e5; 10 | } 11 | .propertygrid .datagrid-view1 .datagrid-row-over,.propertygrid .datagrid-view1 .datagrid-row-selected{ 12 | background:#fff9e5; 13 | } 14 | .propertygrid .datagrid-group span{ 15 | color:#416AA3; 16 | font-weight:bold; 17 | padding-left:4px; 18 | } 19 | .propertygrid .datagrid-row-collapse,.propertygrid .datagrid-row-expand{ 20 | background-position:3px center; 21 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/searchbox.css: -------------------------------------------------------------------------------- 1 | .searchbox{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #8E846B; 8 | background:#fff; 9 | } 10 | .searchbox-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .searchbox-button{ 22 | background:url('images/ui-icons_eb990f_256x240.png') no-repeat -160px -110px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .searchbox-button-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | } 36 | .searchbox-prompt{ 37 | font-size:12px; 38 | color:#ccc; 39 | } 40 | .searchbox a.l-btn-plain{ 41 | background-color:#fff9e5; 42 | border-radius: 0px; 43 | height:20px; 44 | border:0; 45 | padding:0 6px 0 0; 46 | vertical-align:top; 47 | } 48 | .searchbox a.l-btn .l-btn-left{ 49 | padding:2px 0 2px 2px; 50 | } 51 | .searchbox a.l-btn-plain:hover{ 52 | border-radius:0px; 53 | border:0; 54 | padding:0 6px 0 0; 55 | } 56 | .searchbox a.m-btn-plain-active{ 57 | border-radius:0px; 58 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #8E846B; 8 | } 9 | .spinner-text{ 10 | font-size:12px; 11 | border:0px; 12 | line-height:20px; 13 | height:20px; 14 | padding:0px; 15 | *height:18px; 16 | *line-height:18px; 17 | _height:18px; 18 | _line-height:18px; 19 | } 20 | .spinner-arrow{ 21 | display:inline-block; 22 | vertical-align:top; 23 | margin:0; 24 | padding:0; 25 | } 26 | .spinner-arrow-up,.spinner-arrow-down{ 27 | display:block; 28 | background:#fece2f url('images/ui-icons_bd7b00_256x240.png') no-repeat 2px -2px; 29 | font-size:1px; 30 | width:18px; 31 | height:10px; 32 | } 33 | .spinner-arrow-down{ 34 | background:#fece2f url('images/ui-icons_bd7b00_256x240.png') no-repeat -63px -3px; 35 | } 36 | .spinner-arrow-hover{ 37 | background-color:#ffdd57; 38 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow{ 2 | display:inline-block; 3 | width:16px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 9px center; 7 | } 8 | 9 | a.s-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.s-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.s-btn-active .s-btn-downarrow{ 16 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 17 | } 18 | a:hover.l-btn .s-btn-downarrow{ 19 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 20 | } 21 | 22 | a.s-btn-plain-active{ 23 | background:#fece2f url('images/ui-bg_gloss-wave_60_fece2f_500x100.png') repeat-x 50% 50%; 24 | border:1px solid #D19405; 25 | _padding:0px 5px 0px 0px; 26 | border-radius:3px; 27 | } 28 | a.s-btn-plain-active .s-btn-downarrow{ 29 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 30 | } -------------------------------------------------------------------------------- /src/main/resources/static/js/easyui/themes/sunny/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid{ 2 | background:#FFFFEE url('images/validatebox_warning.png') no-repeat right 1px; 3 | } 4 | .validatebox-tip{ 5 | position:absolute; 6 | width:200px; 7 | height:auto; 8 | display:none; 9 | z-index:9900000; 10 | } 11 | .validatebox-tip-content{ 12 | display:inline-block; 13 | position:absolute; 14 | top:0px; 15 | left:10px; 16 | padding:3px 5px; 17 | border:1px solid #CC9933; 18 | background:#FFFFCC; 19 | z-index:9900001; 20 | font-size:12px; 21 | } 22 | .validatebox-tip-pointer{ 23 | background:url('images/validatebox_pointer.gif') no-repeat left top; 24 | display:inline-block; 25 | width:10px; 26 | height:19px; 27 | position:absolute; 28 | left:1px; 29 | top:0px; 30 | z-index:9900002; 31 | } 32 | -------------------------------------------------------------------------------- /zooweb-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuhongyu345/zooweb/b8d24bad9cd6d50001b3a3db6198042f2ff38e8f/zooweb-2.2.jar --------------------------------------------------------------------------------