bloggit 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History +4 -0
- data/Manifest +422 -0
- data/Rakefile +64 -0
- data/ReadMe +69 -0
- data/Todo +26 -0
- data/bin/bloggit +5 -0
- data/docs/index.html +57 -0
- data/docs/specifications.html +100 -0
- data/docs/src/_layout.rhtml +53 -0
- data/docs/src/index.markdown +5 -0
- data/docs/src/specifications.markdown +48 -0
- data/lib/bloggit.rb +28 -0
- data/lib/bloggit/boilerplate/Rakefile +2 -0
- data/lib/bloggit/boilerplate/pages/about.page +5 -0
- data/lib/bloggit/boilerplate/plugins/haloscan/init.rb +5 -0
- data/lib/bloggit/boilerplate/settings.yml +28 -0
- data/lib/bloggit/boilerplate/themes/default/styles/main.css +145 -0
- data/lib/bloggit/boilerplate/themes/default/templates/archive.rhtml +20 -0
- data/lib/bloggit/boilerplate/themes/default/templates/home.rhtml +6 -0
- data/lib/bloggit/boilerplate/themes/default/templates/layouts/main.rhtml +15 -0
- data/lib/bloggit/boilerplate/themes/default/templates/layouts/two-columns.rhtml +21 -0
- data/lib/bloggit/boilerplate/themes/default/templates/page.rhtml +8 -0
- data/lib/bloggit/boilerplate/themes/default/templates/post.rhtml +3 -0
- data/lib/bloggit/boilerplate/themes/default/templates/snippets/blog_entry.rhtml +16 -0
- data/lib/bloggit/boilerplate/themes/default/templates/snippets/navigation.rhtml +12 -0
- data/lib/bloggit/boilerplate/themes/default/templates/snippets/tag_list.rhtml +9 -0
- data/lib/bloggit/boilerplate/themes/default/templates/tag_archive.rhtml +38 -0
- data/lib/bloggit/checksum.rb +39 -0
- data/lib/bloggit/client/index.html +2 -0
- data/lib/bloggit/client/scripts/adapter/jquery/ext-jquery-adapter.js +12 -0
- data/lib/bloggit/client/scripts/adapter/jquery/jquery-plugins.js +965 -0
- data/lib/bloggit/client/scripts/adapter/jquery/jquery.js +2201 -0
- data/lib/bloggit/client/scripts/adapter/prototype/effects.js +1098 -0
- data/lib/bloggit/client/scripts/adapter/prototype/ext-prototype-adapter.js +12 -0
- data/lib/bloggit/client/scripts/adapter/prototype/prototype.js +2523 -0
- data/lib/bloggit/client/scripts/adapter/prototype/scriptaculous.js +59 -0
- data/lib/bloggit/client/scripts/adapter/yui/ext-yui-adapter.js +12 -0
- data/lib/bloggit/client/scripts/adapter/yui/yui-utilities.js +18 -0
- data/lib/bloggit/client/scripts/app.js +121 -0
- data/lib/bloggit/client/scripts/ext-all.js +256 -0
- data/lib/bloggit/client/scripts/resources/css/README.txt +3 -0
- data/lib/bloggit/client/scripts/resources/css/basic-dialog.css +286 -0
- data/lib/bloggit/client/scripts/resources/css/box.css +111 -0
- data/lib/bloggit/client/scripts/resources/css/button.css +148 -0
- data/lib/bloggit/client/scripts/resources/css/combo.css +46 -0
- data/lib/bloggit/client/scripts/resources/css/core.css +290 -0
- data/lib/bloggit/client/scripts/resources/css/date-picker.css +155 -0
- data/lib/bloggit/client/scripts/resources/css/dd.css +61 -0
- data/lib/bloggit/client/scripts/resources/css/debug.css +55 -0
- data/lib/bloggit/client/scripts/resources/css/ext-all.css +3167 -0
- data/lib/bloggit/client/scripts/resources/css/form.css +359 -0
- data/lib/bloggit/client/scripts/resources/css/grid.css +295 -0
- data/lib/bloggit/client/scripts/resources/css/layout.css +252 -0
- data/lib/bloggit/client/scripts/resources/css/menu.css +116 -0
- data/lib/bloggit/client/scripts/resources/css/panel.css +258 -0
- data/lib/bloggit/client/scripts/resources/css/qtips.css +119 -0
- data/lib/bloggit/client/scripts/resources/css/reset-min.css +9 -0
- data/lib/bloggit/client/scripts/resources/css/resizable.css +143 -0
- data/lib/bloggit/client/scripts/resources/css/tabs.css +134 -0
- data/lib/bloggit/client/scripts/resources/css/toolbar.css +160 -0
- data/lib/bloggit/client/scripts/resources/css/tree.css +179 -0
- data/lib/bloggit/client/scripts/resources/css/window.css +155 -0
- data/lib/bloggit/client/scripts/resources/css/ytheme-aero.css +581 -0
- data/lib/bloggit/client/scripts/resources/css/ytheme-gray.css +438 -0
- data/lib/bloggit/client/scripts/resources/css/ytheme-vista.css +511 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/aero-close-over.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/aero-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-center.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-left.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-right.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/collapse-over.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/expand-over.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/hd-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/w-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/grid-blue-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/grid-hrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/grid-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/grid-vista-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/pspbrwse.jbf +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/sort-col-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/sort_asc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/sort_desc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/ns-collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/ns-expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/panel-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/panel-title-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/panel-title-light-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/tab-close-on.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/tab-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/qtip/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/e-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/ne-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/ne-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/nw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/nw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/s-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/se-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/sw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/sw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-bg.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-btm-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/toolbar/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/toolbar/tb-btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/btn-arrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/hd-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/progress.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/progress2.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/corners-blue.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/corners.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/l-blue.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/l.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/r-blue.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/r.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/tb-blue.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/tb.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/dd/drop-add.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/dd/drop-no.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/dd/drop-yes.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/date-trigger.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/error-tip-corners.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/exclamation.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/text-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/trigger.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/Thumbs.db +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/arrow-left-white.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/arrow-right-white.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/col-move-bottom.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/col-move-top.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/dirty.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/done.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/drop-no.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/drop-yes.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/footer-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-blue-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-blue-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-hrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-loading.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-vista-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hd-pop.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-asc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-desc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-lock.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-lock.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-unlock.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-unlock.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/invalid_line.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/loading.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/mso-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/nowait.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-first-disabled.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-first.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-last-disabled.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-last.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-next-disabled.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-next.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-prev-disabled.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-prev.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/pick-button.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/refresh.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/sort_asc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/sort_desc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/wait.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/ns-collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/ns-expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/panel-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/panel-title-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/panel-title-light-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/stick.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/stuck.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/tab-close-on.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/tab-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/checked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/group-checked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/menu-parent.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/menu.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/unchecked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/qtip/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/qtip/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/qtip/tip-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shadow-c.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shadow-lr.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shadow.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shared/calendar.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shared/left-btn.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shared/right-btn.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shared/warning.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/e-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/ne-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/ne-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/nw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/nw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/s-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/se-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/square.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/sw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/sw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-inactive-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-inactive-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/btn-arrow-light.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/btn-arrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/btn-over-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/gray-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/tb-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/tb-btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-add.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-between.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-no.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-over.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-under.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-yes.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-minus-nl.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-minus.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-plus-nl.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-plus.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-line.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-minus-nl.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-minus.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-plus-nl.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-plus.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/folder-open.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/folder.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/leaf.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/loading.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/dlg-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/hd-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/grid/grid-hrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/ns-collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/ns-expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/panel-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/panel-title-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/panel-title-light-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/stick.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/tab-close-on.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/tab-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/checked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/group-checked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/menu-parent.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/menu.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/unchecked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/qtip/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/qtip/tip-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/e-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/ne-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/ne-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/nw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/nw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/s-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/se-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/sw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/sw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/toolbar/gray-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/toolbar/tb-btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-center.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-left.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-right.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/dlg-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/hd-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/w-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/grid/grid-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/grid/grid-vista-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/ns-collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/ns-expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/panel-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/panel-title-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/panel-title-light-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/stick.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/tab-close-on.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/tab-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/qtip/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/qtip/tip-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/e-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/ne-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/ne-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/nw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/nw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/s-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/se-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/sw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/sw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/toolbar/gray-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/toolbar/tb-btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/license.txt +25 -0
- data/lib/bloggit/client/scripts/resources/raw-images/shadow.psd +0 -0
- data/lib/bloggit/client/scripts/resources/resources.jsb +522 -0
- data/lib/bloggit/client/templates/json.rhtml +5 -0
- data/lib/bloggit/client/templates/main.rhtml +109 -0
- data/lib/bloggit/commandline.rb +52 -0
- data/lib/bloggit/commands/page_cmd.rb +17 -0
- data/lib/bloggit/commands/plugin_cmd.rb +89 -0
- data/lib/bloggit/commands/post_cmd.rb +17 -0
- data/lib/bloggit/commands/site_cmd.rb +82 -0
- data/lib/bloggit/commands/theme_cmd.rb +16 -0
- data/lib/bloggit/etc/hash.rb +24 -0
- data/lib/bloggit/etc/string.rb +5 -0
- data/lib/bloggit/generator.rb +331 -0
- data/lib/bloggit/hooks.rb +21 -0
- data/lib/bloggit/media.rb +40 -0
- data/lib/bloggit/page.rb +98 -0
- data/lib/bloggit/plugin.rb +52 -0
- data/lib/bloggit/post.rb +169 -0
- data/lib/bloggit/publisher.rb +115 -0
- data/lib/bloggit/server.rb +102 -0
- data/lib/bloggit/site.rb +183 -0
- data/lib/bloggit/tag.rb +61 -0
- data/lib/bloggit/tasks/client.rb +9 -0
- data/lib/bloggit/tasks/publishing.rb +36 -0
- data/lib/bloggit/tasks/scm.rb +78 -0
- data/lib/bloggit/tasks/specs.rb +128 -0
- data/lib/bloggit/template.rb +334 -0
- data/lib/bloggit/text_formatter.rb +50 -0
- data/lib/util/fixed_hoe.rb +553 -0
- data/test/fixtures/test.blog/Rakefile +7 -0
- data/test/fixtures/test.blog/pages/about.page +7 -0
- data/test/fixtures/test.blog/pages/coming-soon.page +3 -0
- data/test/fixtures/test.blog/pages/todo.page +23 -0
- data/test/fixtures/test.blog/plugins/example/init.rb +69 -0
- data/test/fixtures/test.blog/plugins/haloscan/init.rb +25 -0
- data/test/fixtures/test.blog/plugins/js_search/init.rb +51 -0
- data/test/fixtures/test.blog/plugins/rdoc_formatter/init.rb +14 -0
- data/test/fixtures/test.blog/posts/2004.03.07_to-boldly-go.post +11 -0
- data/test/fixtures/test.blog/posts/2007.03.25_sure-whatever.post +10 -0
- data/test/fixtures/test.blog/posts/2007.03.27_rdoc-anyone.post +13 -0
- data/test/fixtures/test.blog/posts/2010.12.07_35-already.post +5 -0
- data/test/fixtures/test.blog/settings.yml +34 -0
- data/test/fixtures/test.blog/themes/default/styles/main.css +145 -0
- data/test/fixtures/test.blog/themes/default/templates/archive.rhtml +22 -0
- data/test/fixtures/test.blog/themes/default/templates/home.rhtml +9 -0
- data/test/fixtures/test.blog/themes/default/templates/layouts/main.rhtml +17 -0
- data/test/fixtures/test.blog/themes/default/templates/layouts/two-columns.rhtml +21 -0
- data/test/fixtures/test.blog/themes/default/templates/page.rhtml +8 -0
- data/test/fixtures/test.blog/themes/default/templates/post.rhtml +15 -0
- data/test/fixtures/test.blog/themes/default/templates/snippets/blog_entry.rhtml +10 -0
- data/test/fixtures/test.blog/themes/default/templates/snippets/navigation.rhtml +12 -0
- data/test/fixtures/test.blog/themes/default/templates/snippets/tag_list.rhtml +9 -0
- data/test/fixtures/test.blog/themes/default/templates/tag_archive.rhtml +41 -0
- data/test/helpers.rb +25 -0
- data/test/unit/bloggit_test.rb +9 -0
- data/test/unit/page_test.rb +28 -0
- data/test/unit/post_test.rb +36 -0
- data/test/unit/site_test.rb +27 -0
- data/test/unit/template_test.rb +21 -0
- data/test/unit/text_formatter_test.rb +43 -0
- metadata +520 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Ext JS Library 1.0.1
|
|
3
|
+
* Copyright(c) 2006-2007, Ext JS, LLC.
|
|
4
|
+
* licensing@extjs.com
|
|
5
|
+
*
|
|
6
|
+
* http://www.extjs.com/license
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
.x-dd-drag-proxy{
|
|
10
|
+
position:absolute;
|
|
11
|
+
left:0;top:0;
|
|
12
|
+
visibility:hidden;
|
|
13
|
+
z-index:15000;
|
|
14
|
+
}
|
|
15
|
+
.x-dd-drag-ghost{
|
|
16
|
+
color: black;
|
|
17
|
+
font: normal 11px arial, helvetica, sans-serif;
|
|
18
|
+
-moz-opacity: 0.85;
|
|
19
|
+
opacity:.85;
|
|
20
|
+
filter: alpha(opacity=85);
|
|
21
|
+
border-top:1px solid #dddddd;
|
|
22
|
+
border-left:1px solid #dddddd;
|
|
23
|
+
border-right:1px solid #bbbbbb;
|
|
24
|
+
border-bottom:1px solid #bbbbbb;
|
|
25
|
+
padding:3px;
|
|
26
|
+
padding-left:20px;
|
|
27
|
+
background-color:white;
|
|
28
|
+
white-space:nowrap;
|
|
29
|
+
}
|
|
30
|
+
.x-dd-drag-repair .x-dd-drag-ghost{
|
|
31
|
+
-moz-opacity: 0.4;
|
|
32
|
+
opacity:.4;
|
|
33
|
+
filter: alpha(opacity=40);
|
|
34
|
+
border:0 none;
|
|
35
|
+
padding:0;
|
|
36
|
+
background-color:transparent;
|
|
37
|
+
}
|
|
38
|
+
.x-dd-drag-repair .x-dd-drop-icon{
|
|
39
|
+
visibility:hidden;
|
|
40
|
+
}
|
|
41
|
+
.x-dd-drop-icon{
|
|
42
|
+
position:absolute;
|
|
43
|
+
top:3px;
|
|
44
|
+
left:3px;
|
|
45
|
+
display:block;
|
|
46
|
+
width:16px;
|
|
47
|
+
height:16px;
|
|
48
|
+
background-color:transparent;
|
|
49
|
+
background-position: center;
|
|
50
|
+
background-repeat: no-repeat;
|
|
51
|
+
z-index:1;
|
|
52
|
+
}
|
|
53
|
+
.x-dd-drop-nodrop .x-dd-drop-icon{
|
|
54
|
+
background-image: url(../images/default/dd/drop-no.gif);
|
|
55
|
+
}
|
|
56
|
+
.x-dd-drop-ok .x-dd-drop-icon{
|
|
57
|
+
background-image: url(../images/default/dd/drop-yes.gif);
|
|
58
|
+
}
|
|
59
|
+
.x-dd-drop-ok-add .x-dd-drop-icon{
|
|
60
|
+
background-image: url(../images/default/dd/drop-add.gif);
|
|
61
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Ext JS Library 1.0.1
|
|
3
|
+
* Copyright(c) 2006-2007, Ext JS, LLC.
|
|
4
|
+
* licensing@extjs.com
|
|
5
|
+
*
|
|
6
|
+
* http://www.extjs.com/license
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
#x-debug-browser .x-tree .x-tree-node a span {
|
|
10
|
+
color:#222297;
|
|
11
|
+
font-size:12px;
|
|
12
|
+
padding-top:2px;
|
|
13
|
+
font-family:"courier","courier new";
|
|
14
|
+
line-height:18px;
|
|
15
|
+
}
|
|
16
|
+
#x-debug-browser .x-tree a i {
|
|
17
|
+
color:#FF4545;
|
|
18
|
+
font-style:normal;
|
|
19
|
+
}
|
|
20
|
+
#x-debug-browser .x-tree a em {
|
|
21
|
+
color:#999;
|
|
22
|
+
}
|
|
23
|
+
#x-debug-browser .x-tree .x-tree-node .x-tree-selected a span{
|
|
24
|
+
background:#c3daf9;
|
|
25
|
+
}
|
|
26
|
+
#x-debug-browser pre, .x-debug-browser pre xmp {
|
|
27
|
+
font:normal 11px tahoma, arial, helvetica, sans-serif !important;
|
|
28
|
+
white-space: -moz-pre-wrap;
|
|
29
|
+
white-space: -pre-wrap;
|
|
30
|
+
white-space: -o-pre-wrap;
|
|
31
|
+
word-wrap: break-word;
|
|
32
|
+
}
|
|
33
|
+
#x-debug-browser pre {
|
|
34
|
+
display:block;
|
|
35
|
+
padding:5px !important;
|
|
36
|
+
border-bottom:1px solid #eeeeee !important;
|
|
37
|
+
}
|
|
38
|
+
#x-debug-browser pre xmp {
|
|
39
|
+
padding:0 !important;
|
|
40
|
+
margin:0 !important;
|
|
41
|
+
}
|
|
42
|
+
#x-debug-console .x-layout-panel-center, #x-debug-inspector .x-layout-panel-center {
|
|
43
|
+
border-right:1px solid #98c0f4;
|
|
44
|
+
}
|
|
45
|
+
#x-debug-console textarea {
|
|
46
|
+
border: 0 none;
|
|
47
|
+
font-size:12px;
|
|
48
|
+
font-family:"courier","courier new";
|
|
49
|
+
padding-top:4px;
|
|
50
|
+
padding-left:4px;
|
|
51
|
+
}
|
|
52
|
+
.x-debug-frame {
|
|
53
|
+
background:#eeeeee;
|
|
54
|
+
border:1px dashed #aaaaaa;
|
|
55
|
+
}
|
|
@@ -0,0 +1,3167 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Ext JS Library 1.0.1
|
|
3
|
+
* Copyright(c) 2006-2007, Ext JS, LLC.
|
|
4
|
+
* licensing@extjs.com
|
|
5
|
+
*
|
|
6
|
+
* http://www.extjs.com/license
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}img,body,html{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul {list-style:none;}caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;}q:before,q:after{content:'';}
|
|
10
|
+
.ext-el-mask {
|
|
11
|
+
z-index: 20000;
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: 0;
|
|
14
|
+
left: 0;
|
|
15
|
+
-moz-opacity: 0.5;
|
|
16
|
+
opacity: .50;
|
|
17
|
+
filter: alpha(opacity=50);
|
|
18
|
+
background-color: #CCC;
|
|
19
|
+
width: 100%;
|
|
20
|
+
height: 100%;
|
|
21
|
+
zoom: 1;
|
|
22
|
+
}
|
|
23
|
+
.ext-el-mask-msg {
|
|
24
|
+
z-index: 20001;
|
|
25
|
+
position: absolute;
|
|
26
|
+
top: 0;
|
|
27
|
+
left: 0;
|
|
28
|
+
border:1px solid #6593cf;
|
|
29
|
+
background: #c3daf9 url(../images/default/box/tb-blue.gif) repeat-x 0 -16px;
|
|
30
|
+
padding:2px;
|
|
31
|
+
}
|
|
32
|
+
.ext-el-mask-msg div {
|
|
33
|
+
padding:5px 10px 5px 10px;
|
|
34
|
+
background: #eee;
|
|
35
|
+
border:1px solid #a3bad9;
|
|
36
|
+
color:#333;
|
|
37
|
+
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
|
38
|
+
cursor:wait;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.ext-shim {
|
|
42
|
+
position:absolute;
|
|
43
|
+
visibility:hidden;
|
|
44
|
+
left:0;
|
|
45
|
+
top:0;
|
|
46
|
+
overflow:hidden;
|
|
47
|
+
}
|
|
48
|
+
.ext-ie .ext-shim {
|
|
49
|
+
filter: alpha(opacity=0);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.x-mask-loading div {
|
|
53
|
+
padding:5px 10px 5px 25px;
|
|
54
|
+
background: #eee url( '../images/default/grid/loading.gif' ) no-repeat 5px 5px;
|
|
55
|
+
line-height: 16px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
.x-hidden {
|
|
60
|
+
position:absolute;
|
|
61
|
+
left:-2000px;
|
|
62
|
+
top:-2000px;
|
|
63
|
+
visibility:hidden;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.x-masked {
|
|
67
|
+
overflow: hidden !important;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.x-masked select, .x-masked object, .x-masked embed {
|
|
71
|
+
visibility: hidden;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.x-layer {
|
|
75
|
+
visibility: hidden;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.x-unselectable, .x-unselectable * {
|
|
79
|
+
-moz-user-select: none;
|
|
80
|
+
-khtml-user-select: none;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.x-repaint {
|
|
84
|
+
zoom: 1;
|
|
85
|
+
background-color: transparent;
|
|
86
|
+
-moz-outline: none;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.x-item-disabled {
|
|
90
|
+
color: gray;
|
|
91
|
+
cursor: default;
|
|
92
|
+
opacity: .6;
|
|
93
|
+
-moz-opacity: .6;
|
|
94
|
+
filter: alpha(opacity=60);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.x-item-disabled * {
|
|
98
|
+
color: gray;
|
|
99
|
+
cursor: default !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.x-splitbar-proxy {
|
|
103
|
+
position: absolute;
|
|
104
|
+
visibility: hidden;
|
|
105
|
+
z-index: 20001;
|
|
106
|
+
background: #aaa;
|
|
107
|
+
zoom: 1;
|
|
108
|
+
line-height: 1px;
|
|
109
|
+
font-size: 1px;
|
|
110
|
+
overflow: hidden;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.x-splitbar-h, .x-splitbar-proxy-h {
|
|
114
|
+
cursor: e-resize;
|
|
115
|
+
cursor: col-resize;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.x-splitbar-v, .x-splitbar-proxy-v {
|
|
119
|
+
cursor: s-resize;
|
|
120
|
+
cursor: row-resize;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.x-color-palette {
|
|
124
|
+
width: 150px;
|
|
125
|
+
height: 92px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.x-color-palette a {
|
|
129
|
+
border: 1px solid #fff;
|
|
130
|
+
float: left;
|
|
131
|
+
padding: 2px;
|
|
132
|
+
text-decoration: none;
|
|
133
|
+
-moz-outline: 0 none;
|
|
134
|
+
outline: 0 none;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.x-color-palette a:hover, .x-color-palette a.x-color-palette-sel {
|
|
138
|
+
border: 1px solid #8BB8F3;
|
|
139
|
+
background: #deecfd;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.x-color-palette em {
|
|
143
|
+
display: block;
|
|
144
|
+
border: 1px solid #ACA899;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.x-color-palette em span {
|
|
148
|
+
cursor: pointer;
|
|
149
|
+
display: block;
|
|
150
|
+
height: 10px;
|
|
151
|
+
line-height: 10px;
|
|
152
|
+
width: 10px;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.x-ie-shadow {
|
|
156
|
+
display: none;
|
|
157
|
+
position: absolute;
|
|
158
|
+
overflow: hidden;
|
|
159
|
+
left:0;
|
|
160
|
+
top:0;
|
|
161
|
+
background:#999;
|
|
162
|
+
zoom:1;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.x-shadow {
|
|
166
|
+
display: none;
|
|
167
|
+
position: absolute;
|
|
168
|
+
overflow: hidden;
|
|
169
|
+
left:0;
|
|
170
|
+
top:0;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.x-shadow * {
|
|
174
|
+
overflow: hidden;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.x-shadow * {
|
|
178
|
+
padding: 0;
|
|
179
|
+
border: 0;
|
|
180
|
+
margin: 0;
|
|
181
|
+
clear: none;
|
|
182
|
+
zoom: 1;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
.x-shadow .xstc, .x-shadow .xsbc {
|
|
187
|
+
height: 6px;
|
|
188
|
+
float: left;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
.x-shadow .xstl, .x-shadow .xstr, .x-shadow .xsbl, .x-shadow .xsbr {
|
|
193
|
+
width: 6px;
|
|
194
|
+
height: 6px;
|
|
195
|
+
float: left;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
.x-shadow .xsc {
|
|
200
|
+
width: 100%;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.x-shadow .xsml, .x-shadow .xsmr {
|
|
204
|
+
width: 6px;
|
|
205
|
+
float: left;
|
|
206
|
+
height: 100%;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.x-shadow .xsmc {
|
|
210
|
+
float: left;
|
|
211
|
+
height: 100%;
|
|
212
|
+
background: transparent url( ../images/default/shadow-c.png );
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.x-shadow .xst, .x-shadow .xsb {
|
|
216
|
+
height: 6px;
|
|
217
|
+
overflow: hidden;
|
|
218
|
+
width: 100%;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.x-shadow .xsml {
|
|
222
|
+
background: transparent url( ../images/default/shadow-lr.png ) repeat-y 0 0;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.x-shadow .xsmr {
|
|
226
|
+
background: transparent url( ../images/default/shadow-lr.png ) repeat-y -6px 0;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.x-shadow .xstl {
|
|
230
|
+
background: transparent url( ../images/default/shadow.png ) no-repeat 0 0;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.x-shadow .xstc {
|
|
234
|
+
background: transparent url( ../images/default/shadow.png ) repeat-x 0 -30px;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.x-shadow .xstr {
|
|
238
|
+
background: transparent url( ../images/default/shadow.png ) repeat-x 0 -18px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.x-shadow .xsbl {
|
|
242
|
+
background: transparent url( ../images/default/shadow.png ) no-repeat 0 -12px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.x-shadow .xsbc {
|
|
246
|
+
background: transparent url( ../images/default/shadow.png ) repeat-x 0 -36px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.x-shadow .xsbr {
|
|
250
|
+
background: transparent url( ../images/default/shadow.png ) repeat-x 0 -6px;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.loading-indicator {
|
|
254
|
+
font-size: 11px;
|
|
255
|
+
background-image: url( '../images/default/grid/loading.gif' );
|
|
256
|
+
background-repeat: no-repeat;
|
|
257
|
+
background-position: left;
|
|
258
|
+
padding-left: 20px;
|
|
259
|
+
line-height: 16px;
|
|
260
|
+
margin: 3px;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.x-text-resize {
|
|
264
|
+
position: absolute;
|
|
265
|
+
left: -1000px;
|
|
266
|
+
top: -1000px;
|
|
267
|
+
visibility: hidden;
|
|
268
|
+
zoom: 1;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.x-drag-overlay {
|
|
272
|
+
width: 100%;
|
|
273
|
+
height: 100%;
|
|
274
|
+
display: none;
|
|
275
|
+
position: absolute;
|
|
276
|
+
left: 0;
|
|
277
|
+
top: 0;
|
|
278
|
+
background: white;
|
|
279
|
+
z-index: 20000;
|
|
280
|
+
-moz-opacity: 0;
|
|
281
|
+
opacity: 0;
|
|
282
|
+
filter: alpha(opacity=0);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.x-clear {
|
|
286
|
+
clear:both;
|
|
287
|
+
height:0;
|
|
288
|
+
overflow:hidden;
|
|
289
|
+
line-height:0;
|
|
290
|
+
font-size:0;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.x-tabs-wrap {
|
|
294
|
+
border-bottom:1px solid #6593cf;
|
|
295
|
+
padding-top:2px;
|
|
296
|
+
}
|
|
297
|
+
.x-tabs-strip-wrap{
|
|
298
|
+
width:100%;
|
|
299
|
+
}
|
|
300
|
+
.x-tabs-wrap table{
|
|
301
|
+
position:relative;
|
|
302
|
+
top:0; left:0;
|
|
303
|
+
}
|
|
304
|
+
.x-tabs-strip td{
|
|
305
|
+
padding:0;
|
|
306
|
+
padding-left:2px;
|
|
307
|
+
}
|
|
308
|
+
.x-tabs-strip a, .x-tabs-strip span, .x-tabs-strip em {
|
|
309
|
+
display:block;
|
|
310
|
+
}
|
|
311
|
+
.x-tabs-strip a {
|
|
312
|
+
text-decoration:none !important;
|
|
313
|
+
-moz-outline: none;
|
|
314
|
+
outline: none;
|
|
315
|
+
cursor:pointer;
|
|
316
|
+
}
|
|
317
|
+
.x-tabs-strip .x-tabs-text {
|
|
318
|
+
font:bold 11px tahoma,arial,helvetica;
|
|
319
|
+
color:#666;
|
|
320
|
+
overflow:hidden;
|
|
321
|
+
white-space: nowrap;
|
|
322
|
+
cursor:pointer;
|
|
323
|
+
text-overflow: ellipsis;
|
|
324
|
+
}
|
|
325
|
+
.x-tabs-strip .on .x-tabs-text {
|
|
326
|
+
cursor:default;
|
|
327
|
+
color:#083772;
|
|
328
|
+
}
|
|
329
|
+
.x-tabs-strip .disabled .x-tabs-text {
|
|
330
|
+
cursor:default;
|
|
331
|
+
color:#aaaaaa;
|
|
332
|
+
}
|
|
333
|
+
.x-tabs-strip .x-tabs-inner {
|
|
334
|
+
padding:4px 10px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.x-tabs-strip .on .x-tabs-right {
|
|
338
|
+
background: url(../images/default/tabs/tab-sprite.gif) no-repeat right 0;
|
|
339
|
+
}
|
|
340
|
+
.x-tabs-strip .on .x-tabs-left {
|
|
341
|
+
background: url(../images/default/tabs/tab-sprite.gif) no-repeat 0 -100px;
|
|
342
|
+
}
|
|
343
|
+
.x-tabs-strip .x-tabs-right {
|
|
344
|
+
background: url(../images/default/tabs/tab-sprite.gif) no-repeat right -50px;
|
|
345
|
+
}
|
|
346
|
+
.x-tabs-strip .x-tabs-left {
|
|
347
|
+
background: url(../images/default/tabs/tab-sprite.gif) no-repeat 0 -150px;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.x-tabs-strip a {
|
|
351
|
+
position:relative;
|
|
352
|
+
top:1px; left:0;
|
|
353
|
+
}
|
|
354
|
+
.x-tabs-strip .on a {
|
|
355
|
+
position:relative;
|
|
356
|
+
}
|
|
357
|
+
.x-tabs-strip .on .x-tabs-inner {
|
|
358
|
+
padding-bottom:5px;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.x-tabs-strip .x-tabs-closable .x-tabs-inner{
|
|
362
|
+
padding-right:22px;
|
|
363
|
+
position:relative;
|
|
364
|
+
}
|
|
365
|
+
.x-tabs-strip .x-tabs-closable .close-icon{
|
|
366
|
+
line-height: 1px;
|
|
367
|
+
font-size:1px;
|
|
368
|
+
background-image:url(../images/default/layout/tab-close.gif);
|
|
369
|
+
display:block;
|
|
370
|
+
position:absolute;
|
|
371
|
+
right:5px;top:4px;
|
|
372
|
+
width:11px;height:11px;
|
|
373
|
+
cursor:pointer;
|
|
374
|
+
}
|
|
375
|
+
.x-tabs-strip .on .close-icon{
|
|
376
|
+
background-image:url(../images/default/layout/tab-close-on.gif);
|
|
377
|
+
}
|
|
378
|
+
.x-tabs-strip .x-tabs-closable .close-over{
|
|
379
|
+
background-image:url(../images/default/layout/tab-close-on.gif);
|
|
380
|
+
}
|
|
381
|
+
.x-tabs-body {
|
|
382
|
+
border:1px solid #6593cf;
|
|
383
|
+
border-top:0 none;
|
|
384
|
+
}
|
|
385
|
+
.x-tabs-bottom .x-tabs-wrap {
|
|
386
|
+
border-top:1px solid #6593cf;
|
|
387
|
+
border-bottom:0 none;
|
|
388
|
+
padding-top:0;
|
|
389
|
+
padding-bottom:2px;
|
|
390
|
+
}
|
|
391
|
+
.x-tabs-bottom .x-tabs-strip .x-tabs-right {
|
|
392
|
+
background: url(../images/default/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom left;
|
|
393
|
+
}
|
|
394
|
+
.x-tabs-bottom .x-tabs-strip .x-tabs-left {
|
|
395
|
+
background: url(../images/default/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom right;
|
|
396
|
+
}
|
|
397
|
+
.x-tabs-bottom .x-tabs-strip .on .x-tabs-right {
|
|
398
|
+
background: url(../images/default/tabs/tab-btm-right-bg.gif) no-repeat bottom left;
|
|
399
|
+
}
|
|
400
|
+
.x-tabs-bottom .x-tabs-strip .on .x-tabs-left {
|
|
401
|
+
background: url(../images/default/tabs/tab-btm-left-bg.gif) no-repeat bottom right;
|
|
402
|
+
}
|
|
403
|
+
.x-tabs-bottom .x-tabs-strip a {
|
|
404
|
+
position:relative;
|
|
405
|
+
top:0; left:0;
|
|
406
|
+
}
|
|
407
|
+
.x-tabs-bottom .x-tabs-strip .on a {
|
|
408
|
+
margin-top:-1px;
|
|
409
|
+
}
|
|
410
|
+
.x-tabs-bottom .x-tabs-strip .on .x-tabs-inner {
|
|
411
|
+
padding-top:5px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.x-tabs-bottom .x-tabs-body {
|
|
415
|
+
border:1px solid #6593cf;
|
|
416
|
+
border-bottom:0 none;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
.x-form-field{
|
|
422
|
+
margin: 0 0 0 0;
|
|
423
|
+
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
.x-form-text, textarea.x-form-field{
|
|
428
|
+
padding: 1px 3px;
|
|
429
|
+
background:#fff url(../images/default/form/text-bg.gif) repeat-x 0 0;
|
|
430
|
+
border: 1px solid #B5B8C8;
|
|
431
|
+
}
|
|
432
|
+
.x-form-text {
|
|
433
|
+
height:22px;
|
|
434
|
+
line-height:18px;
|
|
435
|
+
vertical-align:middle;
|
|
436
|
+
}
|
|
437
|
+
.ext-ie .x-form-text {
|
|
438
|
+
margin-top:-1px;
|
|
439
|
+
margin-bottom:-1px;
|
|
440
|
+
height:22px;
|
|
441
|
+
line-height:18px;
|
|
442
|
+
}
|
|
443
|
+
.ext-strict .x-form-text {
|
|
444
|
+
height:18px;
|
|
445
|
+
}
|
|
446
|
+
.ext-safari .x-form-text {
|
|
447
|
+
height:20px;
|
|
448
|
+
}
|
|
449
|
+
.ext-gecko .x-form-text {
|
|
450
|
+
padding-top:2px;
|
|
451
|
+
padding-bottom:0;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
.x-form-select-one {
|
|
456
|
+
height:20px;
|
|
457
|
+
line-height:18px;
|
|
458
|
+
vertical-align:middle;
|
|
459
|
+
background-color:#fff;
|
|
460
|
+
border: 1px solid #B5B8C8;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
.x-form-field-wrap {
|
|
479
|
+
position:relative;
|
|
480
|
+
zoom:1;
|
|
481
|
+
white-space: nowrap;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.x-editor .x-form-check-wrap {
|
|
485
|
+
background:#fff;
|
|
486
|
+
}
|
|
487
|
+
.x-form-field-wrap .x-form-trigger{
|
|
488
|
+
width:17px;
|
|
489
|
+
height:21px;
|
|
490
|
+
border:0;
|
|
491
|
+
background:transparent url(../images/default/form/trigger.gif) no-repeat 0 0;
|
|
492
|
+
cursor:pointer;
|
|
493
|
+
border-bottom: 1px solid #B5B8C8;
|
|
494
|
+
position:absolute;
|
|
495
|
+
top:0;
|
|
496
|
+
}
|
|
497
|
+
.ext-safari .x-form-field-wrap .x-form-trigger{
|
|
498
|
+
height:19px;
|
|
499
|
+
}
|
|
500
|
+
.x-form-field-wrap .x-form-trigger-over{
|
|
501
|
+
background-position:-17px 0;
|
|
502
|
+
}
|
|
503
|
+
.x-form-field-wrap .x-form-trigger-click{
|
|
504
|
+
background-position:-34px 0;
|
|
505
|
+
}
|
|
506
|
+
.x-item-disabled .x-form-trigger-over{
|
|
507
|
+
background-position:0 0 !important;
|
|
508
|
+
}
|
|
509
|
+
.x-item-disabled .x-form-trigger-click{
|
|
510
|
+
background-position:0 0 !important;
|
|
511
|
+
}
|
|
512
|
+
.x-form-field-wrap .x-form-date-trigger{
|
|
513
|
+
background:transparent url(../images/default/form/date-trigger.gif) no-repeat 0 0;
|
|
514
|
+
cursor:pointer;
|
|
515
|
+
}
|
|
516
|
+
.ext-safari .x-form-field-wrap .x-form-date-trigger{
|
|
517
|
+
right:0;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
.x-form-focus{
|
|
522
|
+
border: 1px solid #7eadd9;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
.x-form-invalid, textarea.x-form-invalid{
|
|
527
|
+
background:#fff url(../images/default/grid/invalid_line.gif) repeat-x bottom;
|
|
528
|
+
border: 1px solid #dd7870;
|
|
529
|
+
}
|
|
530
|
+
.ext-safari .x-form-invalid{
|
|
531
|
+
background-color:#ffeeee;
|
|
532
|
+
border: 1px solid #ff7870;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
.x-editor {
|
|
538
|
+
visibility:hidden;
|
|
539
|
+
padding:0;
|
|
540
|
+
margin:0;
|
|
541
|
+
}
|
|
542
|
+
.x-form-check-wrap {
|
|
543
|
+
line-height:18px;
|
|
544
|
+
}
|
|
545
|
+
.ext-ie .x-form-check-wrap input {
|
|
546
|
+
width:15px;
|
|
547
|
+
height:15px;
|
|
548
|
+
}
|
|
549
|
+
.x-editor .x-form-check-wrap {
|
|
550
|
+
padding:3px;
|
|
551
|
+
}
|
|
552
|
+
.x-editor .x-form-checkbox {
|
|
553
|
+
height:13px;
|
|
554
|
+
border: 0 none;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.x-form-grow-sizer {
|
|
558
|
+
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
|
559
|
+
left: -10000px;
|
|
560
|
+
padding: 8px 3px;
|
|
561
|
+
position: absolute;
|
|
562
|
+
visibility:hidden;
|
|
563
|
+
top: -10000px;
|
|
564
|
+
white-space: pre-wrap;
|
|
565
|
+
white-space: -moz-pre-wrap;
|
|
566
|
+
white-space: -pre-wrap;
|
|
567
|
+
white-space: -o-pre-wrap;
|
|
568
|
+
word-wrap: break-word;
|
|
569
|
+
zoom:1;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
.x-form-item {
|
|
575
|
+
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
|
576
|
+
display:block;
|
|
577
|
+
margin-bottom:4px;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.x-form-item label {
|
|
581
|
+
display:block;
|
|
582
|
+
float:left;
|
|
583
|
+
width:100px;
|
|
584
|
+
padding:3px;
|
|
585
|
+
padding-left:0;
|
|
586
|
+
clear:left;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.x-form-element {
|
|
590
|
+
padding-left:105px;
|
|
591
|
+
position:relative;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.x-form-invalid-msg {
|
|
595
|
+
color:#ee0000;
|
|
596
|
+
padding:2px;
|
|
597
|
+
padding-left:18px;
|
|
598
|
+
font:normal 11px tahoma, arial, helvetica, sans-serif;
|
|
599
|
+
background: transparent url(../images/default/shared/warning.gif) no-repeat 0 2px;
|
|
600
|
+
line-height:16px;
|
|
601
|
+
width:200px;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.x-form-label-right label {
|
|
605
|
+
text-align:right;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.x-form-label-top .x-form-item label {
|
|
609
|
+
width:auto;
|
|
610
|
+
float:none;
|
|
611
|
+
clear:none;
|
|
612
|
+
display:inline;
|
|
613
|
+
margin-bottom:4px;
|
|
614
|
+
}
|
|
615
|
+
.x-form-label-top .x-form-element {
|
|
616
|
+
padding-left:0;
|
|
617
|
+
padding-top:4px;
|
|
618
|
+
}
|
|
619
|
+
.x-form-label-top .x-form-item {
|
|
620
|
+
padding-bottom:4px;
|
|
621
|
+
}
|
|
622
|
+
.x-form fieldset {
|
|
623
|
+
border:1px solid #B5B8C8;
|
|
624
|
+
padding:10px 10px 5px 10px;
|
|
625
|
+
margin-bottom:10px;
|
|
626
|
+
}
|
|
627
|
+
.x-form fieldset legend {
|
|
628
|
+
font:bold 11px tahoma, arial, helvetica, sans-serif;
|
|
629
|
+
color:#15428b;
|
|
630
|
+
}
|
|
631
|
+
.ext-ie .x-form fieldset legend {
|
|
632
|
+
margin-bottom:10px;
|
|
633
|
+
}
|
|
634
|
+
.ext-ie .x-form fieldset {
|
|
635
|
+
padding-top: 0;
|
|
636
|
+
}
|
|
637
|
+
.x-form-empty-field {
|
|
638
|
+
color:gray;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.x-small-editor .x-form-field {
|
|
642
|
+
font:normal 11px arial, tahoma, helvetica, sans-serif;
|
|
643
|
+
}
|
|
644
|
+
.x-small-editor .x-form-text {
|
|
645
|
+
height:20px;
|
|
646
|
+
line-height:16px;
|
|
647
|
+
vertical-align:middle;
|
|
648
|
+
}
|
|
649
|
+
.ext-ie .x-small-editor .x-form-text {
|
|
650
|
+
margin-top:-1px !important;
|
|
651
|
+
margin-bottom:-1px !important;
|
|
652
|
+
height:20px !important;
|
|
653
|
+
line-height:16px !important;
|
|
654
|
+
}
|
|
655
|
+
.ext-strict .x-small-editor .x-form-text {
|
|
656
|
+
height:16px !important;
|
|
657
|
+
}
|
|
658
|
+
.ext-safari .x-small-editor .x-form-field {
|
|
659
|
+
|
|
660
|
+
font:normal 12px arial, tahoma, helvetica, sans-serif;
|
|
661
|
+
}
|
|
662
|
+
.ext-ie .x-small-editor .x-form-text {
|
|
663
|
+
height:20px;
|
|
664
|
+
line-height:16px;
|
|
665
|
+
}
|
|
666
|
+
.ext-border-box .x-small-editor .x-form-text {
|
|
667
|
+
height:20px;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.x-small-editor .x-form-select-one {
|
|
671
|
+
height:20px;
|
|
672
|
+
line-height:16px;
|
|
673
|
+
vertical-align:middle;
|
|
674
|
+
}
|
|
675
|
+
.x-small-editor .x-form-num-field {
|
|
676
|
+
text-align:right;
|
|
677
|
+
}
|
|
678
|
+
.x-small-editor .x-form-field-wrap .x-form-trigger{
|
|
679
|
+
height:19px;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
.x-form-clear {
|
|
684
|
+
clear:both;
|
|
685
|
+
height:0;
|
|
686
|
+
overflow:hidden;
|
|
687
|
+
line-height:0;
|
|
688
|
+
font-size:0;
|
|
689
|
+
}
|
|
690
|
+
.x-form-clear-left {
|
|
691
|
+
clear:left;
|
|
692
|
+
height:0;
|
|
693
|
+
overflow:hidden;
|
|
694
|
+
line-height:0;
|
|
695
|
+
font-size:0;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.x-form-cb-label {
|
|
699
|
+
width:'auto' !important;
|
|
700
|
+
float:none !important;
|
|
701
|
+
clear:none !important;
|
|
702
|
+
display:inline !important;
|
|
703
|
+
margin-left:4px;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.x-form-column {
|
|
707
|
+
float:left;
|
|
708
|
+
padding:0;
|
|
709
|
+
margin:0;
|
|
710
|
+
width:48%;
|
|
711
|
+
overflow:hidden;
|
|
712
|
+
zoom:1;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
.x-form .x-form-btns-ct .x-btn{
|
|
717
|
+
float:right;
|
|
718
|
+
clear:none;
|
|
719
|
+
}
|
|
720
|
+
.x-form .x-form-btns-ct .x-form-btns td {
|
|
721
|
+
border:0;
|
|
722
|
+
padding:0;
|
|
723
|
+
}
|
|
724
|
+
.x-form .x-form-btns-ct .x-form-btns-right table{
|
|
725
|
+
float:right;
|
|
726
|
+
clear:none;
|
|
727
|
+
}
|
|
728
|
+
.x-form .x-form-btns-ct .x-form-btns-left table{
|
|
729
|
+
float:left;
|
|
730
|
+
clear:none;
|
|
731
|
+
}
|
|
732
|
+
.x-form .x-form-btns-ct .x-form-btns-center{
|
|
733
|
+
text-align:center;
|
|
734
|
+
}
|
|
735
|
+
.x-form .x-form-btns-ct .x-form-btns-center table{
|
|
736
|
+
margin:0 auto;
|
|
737
|
+
}
|
|
738
|
+
.x-form .x-form-btns-ct table td.x-form-btn-td{
|
|
739
|
+
padding:3px;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.x-form .x-form-btns-ct .x-btn-focus .x-btn-left{
|
|
743
|
+
background-position:0 -147px;
|
|
744
|
+
}
|
|
745
|
+
.x-form .x-form-btns-ct .x-btn-focus .x-btn-right{
|
|
746
|
+
background-position:0 -168px;
|
|
747
|
+
}
|
|
748
|
+
.x-form .x-form-btns-ct .x-btn-focus .x-btn-center{
|
|
749
|
+
background-position:0 -189px;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.x-form .x-form-btns-ct .x-btn-click .x-btn-center{
|
|
753
|
+
background-position:0 -126px;
|
|
754
|
+
}
|
|
755
|
+
.x-form .x-form-btns-ct .x-btn-click .x-btn-right{
|
|
756
|
+
background-position:0 -84px;
|
|
757
|
+
}
|
|
758
|
+
.x-form .x-form-btns-ct .x-btn-click .x-btn-left{
|
|
759
|
+
background-position:0 -63px;
|
|
760
|
+
}
|
|
761
|
+
.x-form-invalid-icon {
|
|
762
|
+
width:16px;
|
|
763
|
+
height:18px;
|
|
764
|
+
visibility:hidden;
|
|
765
|
+
position:absolute;
|
|
766
|
+
left:0;
|
|
767
|
+
top:0;
|
|
768
|
+
display:block;
|
|
769
|
+
background:transparent url(../images/default/form/exclamation.gif) no-repeat 0 2px;
|
|
770
|
+
}
|
|
771
|
+
.x-btn{
|
|
772
|
+
font:normal 11px tahoma, verdana, helvetica;
|
|
773
|
+
cursor:pointer;
|
|
774
|
+
white-space: nowrap;
|
|
775
|
+
}
|
|
776
|
+
.x-btn button{
|
|
777
|
+
border:0 none;
|
|
778
|
+
background:transparent;
|
|
779
|
+
font:normal 11px tahoma,verdana,helvetica;
|
|
780
|
+
padding-left:3px;
|
|
781
|
+
padding-right:3px;
|
|
782
|
+
cursor:pointer;
|
|
783
|
+
margin:0;
|
|
784
|
+
overflow:visible;
|
|
785
|
+
width:auto;
|
|
786
|
+
-moz-outline:0 none;
|
|
787
|
+
outline:0 none;
|
|
788
|
+
}
|
|
789
|
+
* html .ext-ie .x-btn button {
|
|
790
|
+
width:1px;
|
|
791
|
+
}
|
|
792
|
+
.ext-gecko .x-btn button {
|
|
793
|
+
padding-left:0;
|
|
794
|
+
padding-right:0;
|
|
795
|
+
}
|
|
796
|
+
.ext-ie .x-btn button {
|
|
797
|
+
padding-top:2px;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
.x-btn-icon .x-btn-center .x-btn-text{
|
|
802
|
+
background-position: center;
|
|
803
|
+
background-repeat: no-repeat;
|
|
804
|
+
height: 16px;
|
|
805
|
+
width: 16px;
|
|
806
|
+
cursor:pointer;
|
|
807
|
+
white-space: nowrap;
|
|
808
|
+
padding:0;
|
|
809
|
+
}
|
|
810
|
+
.x-btn-icon .x-btn-center{
|
|
811
|
+
padding:1px;
|
|
812
|
+
}
|
|
813
|
+
.x-btn em {
|
|
814
|
+
font-style:normal;
|
|
815
|
+
font-weight:normal;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
.x-btn-text-icon .x-btn-center .x-btn-text{
|
|
820
|
+
background-position: 0 2px;
|
|
821
|
+
background-repeat: no-repeat;
|
|
822
|
+
padding-left:18px;
|
|
823
|
+
padding-top:3px;
|
|
824
|
+
padding-bottom:3px;
|
|
825
|
+
padding-right:0;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.x-btn-left, .x-btn-right{
|
|
829
|
+
font-size:1px;
|
|
830
|
+
line-height:1px;
|
|
831
|
+
}
|
|
832
|
+
.x-btn-left{
|
|
833
|
+
width:3px;
|
|
834
|
+
height:21px;
|
|
835
|
+
background:url(../images/default/basic-dialog/btn-sprite.gif) no-repeat 0 0;
|
|
836
|
+
}
|
|
837
|
+
.x-btn-right{
|
|
838
|
+
width:3px;
|
|
839
|
+
height:21px;
|
|
840
|
+
background:url(../images/default/basic-dialog/btn-sprite.gif) no-repeat 0 -21px;
|
|
841
|
+
}
|
|
842
|
+
.x-btn-left i, .x-btn-right i{
|
|
843
|
+
display:block;
|
|
844
|
+
width:3px;
|
|
845
|
+
overflow:hidden;
|
|
846
|
+
font-size:1px;
|
|
847
|
+
line-height:1px;
|
|
848
|
+
}
|
|
849
|
+
.x-btn-center{
|
|
850
|
+
background:url(../images/default/basic-dialog/btn-sprite.gif) repeat-x 0 -42px;
|
|
851
|
+
vertical-align: middle;
|
|
852
|
+
text-align:center;
|
|
853
|
+
padding:0 5px;
|
|
854
|
+
cursor:pointer;
|
|
855
|
+
white-space:nowrap;
|
|
856
|
+
}
|
|
857
|
+
.x-btn-over .x-btn-left{
|
|
858
|
+
background-position:0 -63px;
|
|
859
|
+
}
|
|
860
|
+
.x-btn-over .x-btn-right{
|
|
861
|
+
background-position:0 -84px;
|
|
862
|
+
}
|
|
863
|
+
.x-btn-over .x-btn-center{
|
|
864
|
+
background-position:0 -105px;
|
|
865
|
+
}
|
|
866
|
+
.x-btn-click .x-btn-center, .x-btn-menu-active .x-btn-center{
|
|
867
|
+
background-position:0 -126px;
|
|
868
|
+
}
|
|
869
|
+
.x-btn-disabled *{
|
|
870
|
+
color:gray !important;
|
|
871
|
+
cursor:default !important;
|
|
872
|
+
}
|
|
873
|
+
.x-btn-menu-text-wrap .x-btn-center {
|
|
874
|
+
padding:0 3px;
|
|
875
|
+
}
|
|
876
|
+
.ext-gecko .x-btn-menu-text-wrap .x-btn-center {
|
|
877
|
+
padding:0 1px;
|
|
878
|
+
}
|
|
879
|
+
.x-btn-menu-arrow-wrap .x-btn-center {
|
|
880
|
+
padding:0;
|
|
881
|
+
}
|
|
882
|
+
.x-btn-menu-arrow-wrap .x-btn-center button {
|
|
883
|
+
width:12px !important;
|
|
884
|
+
height:21px;
|
|
885
|
+
padding:0 !important;
|
|
886
|
+
display:block;
|
|
887
|
+
background:transparent url(../images/default/basic-dialog/btn-arrow.gif) no-repeat left 3px;
|
|
888
|
+
}
|
|
889
|
+
.x-btn-with-menu .x-btn-center {
|
|
890
|
+
padding-right:2px !important;
|
|
891
|
+
}
|
|
892
|
+
.x-btn-with-menu .x-btn-center em {
|
|
893
|
+
display:block;
|
|
894
|
+
background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat right 0;
|
|
895
|
+
padding-right:10px;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.x-btn-text-icon .x-btn-with-menu .x-btn-center em {
|
|
899
|
+
display:block;
|
|
900
|
+
background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat right 3px;
|
|
901
|
+
padding-right:10px;
|
|
902
|
+
}
|
|
903
|
+
.x-toolbar{
|
|
904
|
+
border: 1px solid;
|
|
905
|
+
border-color:#eaf0f7 #eaf0f7 #a9bfd3 #eaf0f7;
|
|
906
|
+
display: block;
|
|
907
|
+
padding:2px;
|
|
908
|
+
background:#d0def0 url(../images/default/layout/panel-title-light-bg.gif) repeat-x;
|
|
909
|
+
}
|
|
910
|
+
.x-toolbar td {
|
|
911
|
+
vertical-align:middle;
|
|
912
|
+
}
|
|
913
|
+
.mso .x-toolbar, .x-grid-mso .x-toolbar{
|
|
914
|
+
border: 0 none;
|
|
915
|
+
background: url(../images/default/grid/mso-hd.gif);
|
|
916
|
+
}
|
|
917
|
+
.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
|
|
918
|
+
white-space: nowrap;
|
|
919
|
+
font:normal 11px tahoma, arial, helvetica, sans-serif;
|
|
920
|
+
}
|
|
921
|
+
.x-toolbar .x-item-disabled {
|
|
922
|
+
color:gray;
|
|
923
|
+
cursor:default;
|
|
924
|
+
opacity:.6;
|
|
925
|
+
-moz-opacity:.6;
|
|
926
|
+
filter:alpha(opacity=60);
|
|
927
|
+
}
|
|
928
|
+
.x-toolbar .x-item-disabled * {
|
|
929
|
+
color:gray;
|
|
930
|
+
cursor:default;
|
|
931
|
+
}
|
|
932
|
+
.x-toolbar .x-btn-left{
|
|
933
|
+
background:none;
|
|
934
|
+
}
|
|
935
|
+
.x-toolbar .x-btn-right{
|
|
936
|
+
background:none;
|
|
937
|
+
}
|
|
938
|
+
.x-toolbar .x-btn-center{
|
|
939
|
+
background:none;
|
|
940
|
+
padding:0 0;
|
|
941
|
+
}
|
|
942
|
+
.x-toolbar .x-btn-menu-text-wrap .x-btn-center button{
|
|
943
|
+
padding-right:2px;
|
|
944
|
+
}
|
|
945
|
+
.ext-gecko .x-toolbar .x-btn-menu-text-wrap .x-btn-center button{
|
|
946
|
+
padding-right:0;
|
|
947
|
+
}
|
|
948
|
+
.x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button{
|
|
949
|
+
padding:0 2px;
|
|
950
|
+
}
|
|
951
|
+
.x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button {
|
|
952
|
+
width:12px;
|
|
953
|
+
background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat 0 3px;
|
|
954
|
+
}
|
|
955
|
+
.x-toolbar .x-btn-text-icon .x-btn-menu-arrow-wrap .x-btn-center button {
|
|
956
|
+
width:12px;
|
|
957
|
+
background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat 0 3px;
|
|
958
|
+
}
|
|
959
|
+
.x-toolbar .x-btn-over .x-btn-menu-arrow-wrap .x-btn-center button {
|
|
960
|
+
background-position: 0 -47px;
|
|
961
|
+
}
|
|
962
|
+
.x-toolbar .x-btn-over .x-btn-left{
|
|
963
|
+
background:url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 0;
|
|
964
|
+
}
|
|
965
|
+
.x-toolbar .x-btn-over .x-btn-right{
|
|
966
|
+
background:url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -21px;
|
|
967
|
+
}
|
|
968
|
+
.x-toolbar .x-btn-over .x-btn-center{
|
|
969
|
+
background:url(../images/default/toolbar/tb-btn-sprite.gif) repeat-x 0 -42px;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.x-toolbar .x-btn-click .x-btn-left, .x-toolbar .x-btn-pressed .x-btn-left, .x-toolbar .x-btn-menu-active .x-btn-left{
|
|
973
|
+
background:url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -63px;
|
|
974
|
+
}
|
|
975
|
+
.x-toolbar .x-btn-click .x-btn-right, .x-toolbar .x-btn-pressed .x-btn-right, .x-toolbar .x-btn-menu-active .x-btn-right{
|
|
976
|
+
background:url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -84px;
|
|
977
|
+
}
|
|
978
|
+
.x-toolbar .x-btn-click .x-btn-center, .x-toolbar .x-btn-pressed .x-btn-center, .x-toolbar .x-btn-menu-active .x-btn-center{
|
|
979
|
+
background:url(../images/default/toolbar/tb-btn-sprite.gif) repeat-x 0 -105px;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.x-toolbar .ytb-text{
|
|
983
|
+
padding:2px;
|
|
984
|
+
}
|
|
985
|
+
.x-toolbar .ytb-sep {
|
|
986
|
+
background-image: url(../images/default/grid/grid-split.gif);
|
|
987
|
+
background-position: center;
|
|
988
|
+
background-repeat: no-repeat;
|
|
989
|
+
display: block;
|
|
990
|
+
font-size: 1px;
|
|
991
|
+
height: 16px;
|
|
992
|
+
width:4px;
|
|
993
|
+
overflow: hidden;
|
|
994
|
+
cursor:default;
|
|
995
|
+
margin: 0 2px 0;
|
|
996
|
+
border:0;
|
|
997
|
+
}
|
|
998
|
+
.x-toolbar .ytb-spacer {
|
|
999
|
+
width:2px;
|
|
1000
|
+
}
|
|
1001
|
+
.mso .x-toolbar .ytb-sep, .x-grid-mso .x-toolbar .ytb-sep{
|
|
1002
|
+
background-image: url(../images/default/grid/grid-blue-split.gif);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
.ext-ie .x-toolbar .x-form-field-wrap {
|
|
1007
|
+
padding-bottom:1px;
|
|
1008
|
+
}
|
|
1009
|
+
.ext-ie .x-toolbar .x-form-field-wrap .x-form-trigger {
|
|
1010
|
+
top:1px;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
|
|
1015
|
+
.x-grid-page-number{
|
|
1016
|
+
width:24px;
|
|
1017
|
+
height:14px;
|
|
1018
|
+
}
|
|
1019
|
+
.x-grid-page-first .x-btn-text{
|
|
1020
|
+
background-image: url(../images/default/grid/page-first.gif);
|
|
1021
|
+
}
|
|
1022
|
+
.x-grid-loading .x-btn-text{
|
|
1023
|
+
background-image: url(../images/default/grid/done.gif);
|
|
1024
|
+
}
|
|
1025
|
+
.x-grid-page-last .x-btn-text{
|
|
1026
|
+
background-image: url(../images/default/grid/page-last.gif);
|
|
1027
|
+
}
|
|
1028
|
+
.x-grid-page-next .x-btn-text{
|
|
1029
|
+
background-image: url(../images/default/grid/page-next.gif);
|
|
1030
|
+
}
|
|
1031
|
+
.x-grid-page-prev .x-btn-text{
|
|
1032
|
+
background-image: url(../images/default/grid/page-prev.gif);
|
|
1033
|
+
}
|
|
1034
|
+
.x-item-disabled .x-grid-loading .x-btn-text{
|
|
1035
|
+
background-image: url(../images/default/grid/loading.gif);
|
|
1036
|
+
}
|
|
1037
|
+
.x-item-disabled .x-grid-page-first .x-btn-text{
|
|
1038
|
+
background-image: url(../images/default/grid/page-first-disabled.gif);
|
|
1039
|
+
}
|
|
1040
|
+
.x-item-disabled .x-grid-page-last .x-btn-text{
|
|
1041
|
+
background-image: url(../images/default/grid/page-last-disabled.gif);
|
|
1042
|
+
}
|
|
1043
|
+
.x-item-disabled .x-grid-page-next .x-btn-text{
|
|
1044
|
+
background-image: url(../images/default/grid/page-next-disabled.gif);
|
|
1045
|
+
}
|
|
1046
|
+
.x-item-disabled .x-grid-page-prev .x-btn-text{
|
|
1047
|
+
background-image: url(../images/default/grid/page-prev-disabled.gif);
|
|
1048
|
+
}
|
|
1049
|
+
.x-paging-info {
|
|
1050
|
+
position:absolute;
|
|
1051
|
+
top:8px;
|
|
1052
|
+
right: 8px;
|
|
1053
|
+
color:#15428b;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.x-resizable-handle {
|
|
1057
|
+
position:absolute;
|
|
1058
|
+
z-index:100;
|
|
1059
|
+
|
|
1060
|
+
font-size:1px;
|
|
1061
|
+
line-height:6px;
|
|
1062
|
+
overflow:hidden;
|
|
1063
|
+
background:white;
|
|
1064
|
+
filter:alpha(opacity=0);
|
|
1065
|
+
opacity:0;
|
|
1066
|
+
zoom:1;
|
|
1067
|
+
}
|
|
1068
|
+
.x-resizable-handle-east{
|
|
1069
|
+
width:6px;
|
|
1070
|
+
cursor:e-resize;
|
|
1071
|
+
right:0;
|
|
1072
|
+
top:0;
|
|
1073
|
+
height:100%;
|
|
1074
|
+
}
|
|
1075
|
+
.ext-ie .x-resizable-handle-east {
|
|
1076
|
+
margin-right:-1px;
|
|
1077
|
+
}
|
|
1078
|
+
.x-resizable-handle-south{
|
|
1079
|
+
width:100%;
|
|
1080
|
+
cursor:s-resize;
|
|
1081
|
+
left:0;
|
|
1082
|
+
bottom:0;
|
|
1083
|
+
height:6px;
|
|
1084
|
+
}
|
|
1085
|
+
.ext-ie .x-resizable-handle-south {
|
|
1086
|
+
margin-bottom:-1px;
|
|
1087
|
+
}
|
|
1088
|
+
.x-resizable-handle-west{
|
|
1089
|
+
width:6px;
|
|
1090
|
+
cursor:w-resize;
|
|
1091
|
+
left:0;
|
|
1092
|
+
top:0;
|
|
1093
|
+
height:100%;
|
|
1094
|
+
}
|
|
1095
|
+
.x-resizable-handle-north{
|
|
1096
|
+
width:100%;
|
|
1097
|
+
cursor:n-resize;
|
|
1098
|
+
left:0;
|
|
1099
|
+
top:0;
|
|
1100
|
+
height:6px;
|
|
1101
|
+
}
|
|
1102
|
+
.x-resizable-handle-southeast{
|
|
1103
|
+
width:6px;
|
|
1104
|
+
cursor:se-resize;
|
|
1105
|
+
right:0;
|
|
1106
|
+
bottom:0;
|
|
1107
|
+
height:6px;
|
|
1108
|
+
z-index:101;
|
|
1109
|
+
}
|
|
1110
|
+
.x-resizable-handle-northwest{
|
|
1111
|
+
width:6px;
|
|
1112
|
+
cursor:nw-resize;
|
|
1113
|
+
left:0;
|
|
1114
|
+
top:0;
|
|
1115
|
+
height:6px;
|
|
1116
|
+
z-index:101;
|
|
1117
|
+
}
|
|
1118
|
+
.x-resizable-handle-northeast{
|
|
1119
|
+
width:6px;
|
|
1120
|
+
cursor:ne-resize;
|
|
1121
|
+
right:0;
|
|
1122
|
+
top:0;
|
|
1123
|
+
height:6px;
|
|
1124
|
+
z-index:101;
|
|
1125
|
+
}
|
|
1126
|
+
.x-resizable-handle-southwest{
|
|
1127
|
+
width:6px;
|
|
1128
|
+
cursor:sw-resize;
|
|
1129
|
+
left:0;
|
|
1130
|
+
bottom:0;
|
|
1131
|
+
height:6px;
|
|
1132
|
+
z-index:101;
|
|
1133
|
+
}
|
|
1134
|
+
.x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle{
|
|
1135
|
+
filter:alpha(opacity=100);
|
|
1136
|
+
opacity:1;
|
|
1137
|
+
}
|
|
1138
|
+
.x-resizable-over .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-east{
|
|
1139
|
+
background:url(../images/default/sizer/e-handle.gif);
|
|
1140
|
+
background-position: left;
|
|
1141
|
+
}
|
|
1142
|
+
.x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-west{
|
|
1143
|
+
background:url(../images/default/sizer/e-handle.gif);
|
|
1144
|
+
background-position: left;
|
|
1145
|
+
}
|
|
1146
|
+
.x-resizable-over .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-south{
|
|
1147
|
+
background:url(../images/default/sizer/s-handle.gif);
|
|
1148
|
+
background-position: top;
|
|
1149
|
+
}
|
|
1150
|
+
.x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north{
|
|
1151
|
+
background:url(../images/default/sizer/s-handle.gif);
|
|
1152
|
+
background-position: top;
|
|
1153
|
+
}
|
|
1154
|
+
.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast{
|
|
1155
|
+
background:url(../images/default/sizer/se-handle.gif);
|
|
1156
|
+
background-position: top left;
|
|
1157
|
+
}
|
|
1158
|
+
.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest{
|
|
1159
|
+
background:url(../images/default/sizer/nw-handle.gif);
|
|
1160
|
+
background-position:bottom right;
|
|
1161
|
+
}
|
|
1162
|
+
.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast{
|
|
1163
|
+
background:url(../images/default/sizer/ne-handle.gif);
|
|
1164
|
+
background-position: bottom left;
|
|
1165
|
+
}
|
|
1166
|
+
.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest{
|
|
1167
|
+
background:url(../images/default/sizer/sw-handle.gif);
|
|
1168
|
+
background-position: top right;
|
|
1169
|
+
}
|
|
1170
|
+
.x-resizable-proxy{
|
|
1171
|
+
border: 1px dashed #6593cf;
|
|
1172
|
+
position:absolute;
|
|
1173
|
+
overflow:hidden;
|
|
1174
|
+
display:none;
|
|
1175
|
+
left:0;top:0;
|
|
1176
|
+
z-index:50000;
|
|
1177
|
+
}
|
|
1178
|
+
.x-resizable-overlay{
|
|
1179
|
+
width:100%;
|
|
1180
|
+
height:100%;
|
|
1181
|
+
display:none;
|
|
1182
|
+
position:absolute;
|
|
1183
|
+
left:0;
|
|
1184
|
+
top:0;
|
|
1185
|
+
background:white;
|
|
1186
|
+
z-index:200000;
|
|
1187
|
+
-moz-opacity: 0;
|
|
1188
|
+
opacity:0;
|
|
1189
|
+
filter: alpha(opacity=0);
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
.x-grid {
|
|
1194
|
+
position:relative;
|
|
1195
|
+
overflow:hidden;
|
|
1196
|
+
background-color:#fff;
|
|
1197
|
+
}
|
|
1198
|
+
.x-grid-scroller {
|
|
1199
|
+
overflow:auto;
|
|
1200
|
+
}
|
|
1201
|
+
.x-grid-viewport, .x-grid-locked{
|
|
1202
|
+
position:absolute;
|
|
1203
|
+
left:0; top: 0;
|
|
1204
|
+
z-index:2;
|
|
1205
|
+
overflow:hidden;
|
|
1206
|
+
visibility:hidden;
|
|
1207
|
+
}
|
|
1208
|
+
.x-grid-cell-inner, .x-grid-hd-inner{
|
|
1209
|
+
overflow:hidden;
|
|
1210
|
+
-o-text-overflow: ellipsis;
|
|
1211
|
+
text-overflow: ellipsis;
|
|
1212
|
+
}
|
|
1213
|
+
.x-grid-hd-row td, .x-grid-row td{
|
|
1214
|
+
font:normal 11px arial, tahoma, helvetica, sans-serif;
|
|
1215
|
+
line-height:13px;
|
|
1216
|
+
white-space: nowrap;
|
|
1217
|
+
vertical-align: top;
|
|
1218
|
+
-moz-outline: none;
|
|
1219
|
+
-moz-user-focus: normal;
|
|
1220
|
+
}
|
|
1221
|
+
.x-grid-hd-row td {
|
|
1222
|
+
line-height:14px;
|
|
1223
|
+
}
|
|
1224
|
+
.x-grid-col {
|
|
1225
|
+
border-right: 1px solid #ebebeb;
|
|
1226
|
+
border-bottom: 1px solid #ebebeb;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
.x-grid-locked .x-grid-body td {
|
|
1231
|
+
background-color: #FBFDFF;
|
|
1232
|
+
border-right: 1px solid #deecfd;
|
|
1233
|
+
border-bottom: 1px solid #deecfd !important;
|
|
1234
|
+
}
|
|
1235
|
+
.x-grid-locked .x-grid-body td .x-grid-cell-inner {
|
|
1236
|
+
border-top:0 none;
|
|
1237
|
+
}
|
|
1238
|
+
.x-grid-locked .x-grid-row-alt td{
|
|
1239
|
+
background-color: #F5FAFE;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.x-grid-locked .x-grid-header table{
|
|
1243
|
+
border-right:1px solid transparent;
|
|
1244
|
+
}
|
|
1245
|
+
.x-grid-locked .x-grid-body table{
|
|
1246
|
+
border-right:1px solid #c3daf9;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.x-grid-locked .x-grid-body td .x-grid-cell-inner {
|
|
1250
|
+
|
|
1251
|
+
}
|
|
1252
|
+
.x-grid-row {
|
|
1253
|
+
cursor: default;
|
|
1254
|
+
}
|
|
1255
|
+
.x-grid-row-alt{
|
|
1256
|
+
background-color:#f1f1f1;
|
|
1257
|
+
}
|
|
1258
|
+
.x-grid-row-over td{
|
|
1259
|
+
background-color:#d9e8fb;
|
|
1260
|
+
}
|
|
1261
|
+
.x-grid-resize-proxy {
|
|
1262
|
+
width:3px;
|
|
1263
|
+
background-color:#cccccc;
|
|
1264
|
+
cursor: e-resize;
|
|
1265
|
+
cursor: col-resize;
|
|
1266
|
+
position:absolute;
|
|
1267
|
+
top:0;
|
|
1268
|
+
height:100px;
|
|
1269
|
+
overflow:hidden;
|
|
1270
|
+
visibility:hidden;
|
|
1271
|
+
border:0 none;
|
|
1272
|
+
z-index:7;
|
|
1273
|
+
}
|
|
1274
|
+
.x-grid-focus {
|
|
1275
|
+
position:absolute;
|
|
1276
|
+
top:0;
|
|
1277
|
+
-moz-outline:0 none;
|
|
1278
|
+
outline:0 none;
|
|
1279
|
+
-moz-user-select: normal;
|
|
1280
|
+
-khtml-user-select: normal;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
|
|
1284
|
+
.x-grid-header{
|
|
1285
|
+
background: #ebeadb url(../images/default/grid/grid-hrow.gif) repeat-x;
|
|
1286
|
+
overflow:hidden;
|
|
1287
|
+
position:relative;
|
|
1288
|
+
cursor:default;
|
|
1289
|
+
width:100%;
|
|
1290
|
+
}
|
|
1291
|
+
.x-grid-hd-row{
|
|
1292
|
+
height:22px;
|
|
1293
|
+
}
|
|
1294
|
+
.x-grid-hd {
|
|
1295
|
+
padding-right:1px;
|
|
1296
|
+
}
|
|
1297
|
+
.x-grid-hd-over .x-grid-hd-inner {
|
|
1298
|
+
border-bottom: 1px solid #c3daf9;
|
|
1299
|
+
}
|
|
1300
|
+
.x-grid-hd-over .x-grid-hd-text {
|
|
1301
|
+
background: #fafafa url(../images/default/grid/grid-hrow.gif) repeat-x 0 1px;
|
|
1302
|
+
padding-bottom:1px;
|
|
1303
|
+
border-bottom: 1px solid #b3cae9;
|
|
1304
|
+
}
|
|
1305
|
+
.x-grid-sort-icon{
|
|
1306
|
+
background-repeat: no-repeat;
|
|
1307
|
+
display: none;
|
|
1308
|
+
height: 4px;
|
|
1309
|
+
width: 13px;
|
|
1310
|
+
margin-left:3px;
|
|
1311
|
+
vertical-align: middle;
|
|
1312
|
+
}
|
|
1313
|
+
.x-grid-header .sort-asc .x-grid-sort-icon {
|
|
1314
|
+
background-image: url(../images/default/grid/sort_asc.gif);
|
|
1315
|
+
display: inline;
|
|
1316
|
+
}
|
|
1317
|
+
.x-grid-header .sort-desc .x-grid-sort-icon {
|
|
1318
|
+
background-image: url(../images/default/grid/sort_desc.gif);
|
|
1319
|
+
display: inline;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
|
|
1323
|
+
.x-grid-body {
|
|
1324
|
+
overflow:hidden;
|
|
1325
|
+
position:relative;
|
|
1326
|
+
width:100%;
|
|
1327
|
+
zoom:1;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.x-grid-cell-text,.x-grid-hd-text {
|
|
1331
|
+
display: block;
|
|
1332
|
+
padding: 3px 5px 3px 5px;
|
|
1333
|
+
-moz-user-select: none;
|
|
1334
|
+
-khtml-user-select: none;
|
|
1335
|
+
color:black;
|
|
1336
|
+
}
|
|
1337
|
+
.x-grid-hd-text {
|
|
1338
|
+
padding-top:4px;
|
|
1339
|
+
}
|
|
1340
|
+
.x-grid-split {
|
|
1341
|
+
background-image: url(../images/default/grid/grid-split.gif);
|
|
1342
|
+
background-position: center;
|
|
1343
|
+
background-repeat: no-repeat;
|
|
1344
|
+
cursor: e-resize;
|
|
1345
|
+
cursor: col-resize;
|
|
1346
|
+
display: block;
|
|
1347
|
+
font-size: 1px;
|
|
1348
|
+
height: 16px;
|
|
1349
|
+
overflow: hidden;
|
|
1350
|
+
position: absolute;
|
|
1351
|
+
top: 2px;
|
|
1352
|
+
width: 6px;
|
|
1353
|
+
z-index: 3;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.x-grid-hd-text {
|
|
1357
|
+
color:#15428b;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.x-dd-drag-proxy .x-grid-hd-inner{
|
|
1361
|
+
background: #ebeadb url(../images/default/grid/grid-hrow.gif) repeat-x;
|
|
1362
|
+
height:22px;
|
|
1363
|
+
width:120px;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
.col-move-top, .col-move-bottom{
|
|
1367
|
+
width:9px;
|
|
1368
|
+
height:9px;
|
|
1369
|
+
position:absolute;
|
|
1370
|
+
top:0;
|
|
1371
|
+
line-height:1px;
|
|
1372
|
+
font-size:1px;
|
|
1373
|
+
overflow:hidden;
|
|
1374
|
+
visibility:hidden;
|
|
1375
|
+
z-index:20000;
|
|
1376
|
+
}
|
|
1377
|
+
.col-move-top{
|
|
1378
|
+
background:transparent url(../images/default/grid/col-move-top.gif) no-repeat left top;
|
|
1379
|
+
}
|
|
1380
|
+
.col-move-bottom{
|
|
1381
|
+
background:transparent url(../images/default/grid/col-move-bottom.gif) no-repeat left top;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
.x-grid-row-selected td, .x-grid-locked .x-grid-row-selected td{
|
|
1386
|
+
background-color: #316ac5 !important;
|
|
1387
|
+
color: white;
|
|
1388
|
+
}
|
|
1389
|
+
.x-grid-row-selected span, .x-grid-row-selected b, .x-grid-row-selected div, .x-grid-row-selected strong, .x-grid-row-selected i{
|
|
1390
|
+
color: white !important;
|
|
1391
|
+
}
|
|
1392
|
+
.x-grid-row-selected .x-grid-cell-text{
|
|
1393
|
+
color: white;
|
|
1394
|
+
}
|
|
1395
|
+
.x-grid-cell-selected{
|
|
1396
|
+
background-color: #316ac5 !important;
|
|
1397
|
+
color: white;
|
|
1398
|
+
}
|
|
1399
|
+
.x-grid-cell-selected span{
|
|
1400
|
+
color: white !important;
|
|
1401
|
+
}
|
|
1402
|
+
.x-grid-cell-selected .x-grid-cell-text{
|
|
1403
|
+
color: white;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.x-grid-locked td.x-grid-row-marker, .x-grid-locked .x-grid-row-selected td.x-grid-row-marker{
|
|
1407
|
+
background: #ebeadb url(../images/default/grid/grid-hrow.gif) repeat-x 0 bottom !important;
|
|
1408
|
+
vertical-align:middle !important;
|
|
1409
|
+
color:black;
|
|
1410
|
+
padding:0;
|
|
1411
|
+
border-top:1px solid white;
|
|
1412
|
+
border-bottom:none !important;
|
|
1413
|
+
border-right:1px solid #6fa0df !important;
|
|
1414
|
+
text-align:center;
|
|
1415
|
+
}
|
|
1416
|
+
.x-grid-locked td.x-grid-row-marker div, .x-grid-locked .x-grid-row-selected td.x-grid-row-marker div{
|
|
1417
|
+
padding:0 4px;
|
|
1418
|
+
color:#15428b !important;
|
|
1419
|
+
text-align:center;
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
.x-grid-dirty-cell {
|
|
1424
|
+
background: transparent url(../images/default/grid/dirty.gif) no-repeat 0 0;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
.x-grid-topbar, .x-grid-bottombar{
|
|
1429
|
+
font:normal 11px arial, tahoma, helvetica, sans-serif;
|
|
1430
|
+
overflow:hidden;
|
|
1431
|
+
display:none;
|
|
1432
|
+
zoom:1;
|
|
1433
|
+
position:relative;
|
|
1434
|
+
}
|
|
1435
|
+
.x-grid-topbar .x-toolbar{
|
|
1436
|
+
border-right:0 none;
|
|
1437
|
+
}
|
|
1438
|
+
.x-grid-bottombar .x-toolbar{
|
|
1439
|
+
border-right:0 none;
|
|
1440
|
+
border-bottom:0 none;
|
|
1441
|
+
border-top:1px solid #a9bfd3;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.x-props-grid .x-grid-cell-selected .x-grid-cell-text{
|
|
1445
|
+
background-color: #316ac5 !important;
|
|
1446
|
+
}
|
|
1447
|
+
.x-props-grid .x-grid-col-value .x-grid-cell-text{
|
|
1448
|
+
background-color: white;
|
|
1449
|
+
}
|
|
1450
|
+
.x-props-grid .x-grid-col-name{
|
|
1451
|
+
background-color: #c3daf9;
|
|
1452
|
+
}
|
|
1453
|
+
.x-props-grid .x-grid-col-name .x-grid-cell-text{
|
|
1454
|
+
background-color: white;
|
|
1455
|
+
margin-left:10px;
|
|
1456
|
+
}
|
|
1457
|
+
.x-props-grid .x-grid-split-value {
|
|
1458
|
+
visibility:hidden;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
.xg-hmenu-sort-asc .x-menu-item-icon{
|
|
1463
|
+
background-image: url(../images/default/grid/hmenu-asc.gif);
|
|
1464
|
+
}
|
|
1465
|
+
.xg-hmenu-sort-desc .x-menu-item-icon{
|
|
1466
|
+
background-image: url(../images/default/grid/hmenu-desc.gif);
|
|
1467
|
+
}
|
|
1468
|
+
.xg-hmenu-lock .x-menu-item-icon{
|
|
1469
|
+
background-image: url(../images/default/grid/hmenu-lock.gif);
|
|
1470
|
+
}
|
|
1471
|
+
.xg-hmenu-unlock .x-menu-item-icon{
|
|
1472
|
+
background-image: url(../images/default/grid/hmenu-unlock.gif);
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
|
|
1476
|
+
.x-dd-drag-ghost .x-grid-dd-wrap {
|
|
1477
|
+
padding:1px 3px 3px 1px;
|
|
1478
|
+
}
|
|
1479
|
+
.x-layout-container{
|
|
1480
|
+
width:100%;
|
|
1481
|
+
height:100%;
|
|
1482
|
+
overflow:hidden;
|
|
1483
|
+
background-color:#c3daf9;
|
|
1484
|
+
}
|
|
1485
|
+
.x-layout-container .x-layout-tabs-body{
|
|
1486
|
+
border:0 none;
|
|
1487
|
+
}
|
|
1488
|
+
.x-layout-collapsed{
|
|
1489
|
+
position:absolute;
|
|
1490
|
+
left:-10000px;
|
|
1491
|
+
top:-10000px;
|
|
1492
|
+
visibility:hidden;
|
|
1493
|
+
background-color:#c3daf9;
|
|
1494
|
+
width:20px;
|
|
1495
|
+
height:20px;
|
|
1496
|
+
overflow:hidden;
|
|
1497
|
+
border:1px solid #98c0f4;
|
|
1498
|
+
z-index:20;
|
|
1499
|
+
}
|
|
1500
|
+
.ext-border-box .x-layout-collapsed{
|
|
1501
|
+
width:22px;
|
|
1502
|
+
height:22px;
|
|
1503
|
+
}
|
|
1504
|
+
.x-layout-collapsed-over{
|
|
1505
|
+
cursor:pointer;
|
|
1506
|
+
background-color:#d9e8fb;
|
|
1507
|
+
}
|
|
1508
|
+
.x-layout-collapsed-west .x-layout-collapsed-tools, .x-layout-collapsed-east .x-layout-collapsed-tools{
|
|
1509
|
+
position:absolute;
|
|
1510
|
+
top:0;
|
|
1511
|
+
left:0;
|
|
1512
|
+
width:20px;
|
|
1513
|
+
height:20px;
|
|
1514
|
+
}
|
|
1515
|
+
.x-layout-collapsed-north .x-layout-collapsed-tools, .x-layout-collapsed-south .x-layout-collapsed-tools{
|
|
1516
|
+
position:absolute;
|
|
1517
|
+
top:0;
|
|
1518
|
+
right:0;
|
|
1519
|
+
width:20px;
|
|
1520
|
+
height:20px;
|
|
1521
|
+
}
|
|
1522
|
+
.x-layout-collapsed .x-layout-tools-button{
|
|
1523
|
+
margin:0;
|
|
1524
|
+
}
|
|
1525
|
+
.x-layout-collapsed .x-layout-tools-button-inner{
|
|
1526
|
+
width:16px;
|
|
1527
|
+
height:16px;
|
|
1528
|
+
}
|
|
1529
|
+
.x-layout-inactive-content{
|
|
1530
|
+
position:absolute;
|
|
1531
|
+
left:-10000px;
|
|
1532
|
+
top:-10000px;
|
|
1533
|
+
visibility:hidden;
|
|
1534
|
+
}
|
|
1535
|
+
.x-layout-active-content{
|
|
1536
|
+
visibility:visible;
|
|
1537
|
+
}
|
|
1538
|
+
.x-layout-panel{
|
|
1539
|
+
position:absolute;border:1px solid #98c0f4;overflow:hidden;background-color:white;
|
|
1540
|
+
}
|
|
1541
|
+
.x-layout-panel-east, .x-layout-panel-west {
|
|
1542
|
+
z-index:10;
|
|
1543
|
+
}
|
|
1544
|
+
.x-layout-panel-north, .x-layout-panel-south {
|
|
1545
|
+
z-index:11;
|
|
1546
|
+
}
|
|
1547
|
+
.x-layout-collapsed-north, .x-layout-collapsed-south, .x-layout-collapsed-east, .x-layout-collapsed-west {
|
|
1548
|
+
z-index:12;
|
|
1549
|
+
}
|
|
1550
|
+
.x-layout-panel-body{
|
|
1551
|
+
overflow:hidden;
|
|
1552
|
+
}
|
|
1553
|
+
.x-layout-grid-wrapper{
|
|
1554
|
+
|
|
1555
|
+
}
|
|
1556
|
+
.x-layout-split{
|
|
1557
|
+
position:absolute;
|
|
1558
|
+
height:5px;
|
|
1559
|
+
width:5px;
|
|
1560
|
+
line-height:1px;
|
|
1561
|
+
font-size:1px;
|
|
1562
|
+
z-index:3;
|
|
1563
|
+
background-color:#c3daf9;
|
|
1564
|
+
}
|
|
1565
|
+
.x-layout-panel-hd{
|
|
1566
|
+
background-image: url(../images/default/layout/panel-title-light-bg.gif);
|
|
1567
|
+
color: black;
|
|
1568
|
+
border-bottom:1px solid #98c0f4;
|
|
1569
|
+
position:relative;
|
|
1570
|
+
}
|
|
1571
|
+
.x-layout-panel-hd-text{
|
|
1572
|
+
font:normal 11px tahoma, verdana, helvetica;
|
|
1573
|
+
padding: 4px;
|
|
1574
|
+
padding-left: 4px;
|
|
1575
|
+
display:block;
|
|
1576
|
+
white-space:nowrap;
|
|
1577
|
+
}
|
|
1578
|
+
.x-layout-panel-hd-tools{
|
|
1579
|
+
position:absolute;
|
|
1580
|
+
right:0;
|
|
1581
|
+
top:0;
|
|
1582
|
+
text-align:right;
|
|
1583
|
+
padding-top:2px;
|
|
1584
|
+
padding-right:2px;
|
|
1585
|
+
width:60px;
|
|
1586
|
+
}
|
|
1587
|
+
.x-layout-tools-button{
|
|
1588
|
+
z-index:6;
|
|
1589
|
+
padding:2px;
|
|
1590
|
+
cursor:pointer;
|
|
1591
|
+
float:right;
|
|
1592
|
+
}
|
|
1593
|
+
.x-layout-tools-button-over{
|
|
1594
|
+
padding:1px;
|
|
1595
|
+
border:1px solid #98c0f4;
|
|
1596
|
+
background-color:white;
|
|
1597
|
+
}
|
|
1598
|
+
.x-layout-tools-button-inner{
|
|
1599
|
+
height:12px;
|
|
1600
|
+
width:12px;
|
|
1601
|
+
line-height:1px;
|
|
1602
|
+
font-size:1px;
|
|
1603
|
+
background-repeat:no-repeat;
|
|
1604
|
+
background-position:center;
|
|
1605
|
+
}
|
|
1606
|
+
.x-layout-close{
|
|
1607
|
+
background-image:url(../images/default/layout/panel-close.gif);
|
|
1608
|
+
}
|
|
1609
|
+
.x-layout-stick{
|
|
1610
|
+
background-image:url(../images/default/layout/stick.gif);
|
|
1611
|
+
}
|
|
1612
|
+
.x-layout-collapse-west,.x-layout-expand-east{
|
|
1613
|
+
background-image:url(../images/default/layout/collapse.gif);
|
|
1614
|
+
}
|
|
1615
|
+
.x-layout-expand-west,.x-layout-collapse-east{
|
|
1616
|
+
background-image:url(../images/default/layout/expand.gif);
|
|
1617
|
+
}
|
|
1618
|
+
.x-layout-collapse-north,.x-layout-expand-south{
|
|
1619
|
+
background-image:url(../images/default/layout/ns-collapse.gif);
|
|
1620
|
+
}
|
|
1621
|
+
.x-layout-expand-north,.x-layout-collapse-south{
|
|
1622
|
+
background-image:url(../images/default/layout/ns-expand.gif);
|
|
1623
|
+
}
|
|
1624
|
+
.x-layout-split-h{
|
|
1625
|
+
background-image:url(../images/default/sizer/e-handle.gif);
|
|
1626
|
+
background-position: left;
|
|
1627
|
+
}
|
|
1628
|
+
.x-layout-split-v{
|
|
1629
|
+
background-image:url(../images/default/sizer/s-handle.gif);
|
|
1630
|
+
background-position: top;
|
|
1631
|
+
}
|
|
1632
|
+
.x-layout-panel .x-tabs-wrap{
|
|
1633
|
+
background:url(../images/default/layout/gradient-bg.gif);
|
|
1634
|
+
}
|
|
1635
|
+
.x-layout-panel .x-tabs-body {
|
|
1636
|
+
background-color:white;
|
|
1637
|
+
overflow:auto;height:100%;
|
|
1638
|
+
}
|
|
1639
|
+
.x-layout-component-panel, .x-layout-nested-layout {
|
|
1640
|
+
position:relative;
|
|
1641
|
+
padding:0;
|
|
1642
|
+
overflow:hidden;
|
|
1643
|
+
width:200px;
|
|
1644
|
+
height:200px;
|
|
1645
|
+
}
|
|
1646
|
+
.x-layout-nested-layout .x-layout-panel {
|
|
1647
|
+
border:0 none;
|
|
1648
|
+
}
|
|
1649
|
+
.x-layout-nested-layout .x-layout-panel-north {
|
|
1650
|
+
border-bottom:1px solid #98c0f4;
|
|
1651
|
+
}
|
|
1652
|
+
.x-layout-nested-layout .x-layout-panel-south {
|
|
1653
|
+
border-top:1px solid #98c0f4;
|
|
1654
|
+
}
|
|
1655
|
+
.x-layout-nested-layout .x-layout-panel-east {
|
|
1656
|
+
border-left:1px solid #98c0f4;
|
|
1657
|
+
}
|
|
1658
|
+
.x-layout-nested-layout .x-layout-panel-west {
|
|
1659
|
+
border-right:1px solid #98c0f4;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
.x-layout-panel-dragover {
|
|
1663
|
+
border: 2px solid #6593cf;
|
|
1664
|
+
}
|
|
1665
|
+
.x-layout-panel-proxy {
|
|
1666
|
+
background-image: url(../images/default/layout/gradient-bg.gif);
|
|
1667
|
+
background-color:#c3daf9;
|
|
1668
|
+
border:1px dashed #6593cf;
|
|
1669
|
+
z-index:10001;
|
|
1670
|
+
overflow:hidden;
|
|
1671
|
+
position:absolute;
|
|
1672
|
+
left:0;top:0;
|
|
1673
|
+
}
|
|
1674
|
+
.x-layout-slider {
|
|
1675
|
+
z-index:15;
|
|
1676
|
+
overflow:hidden;
|
|
1677
|
+
position:absolute;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.x-scroller-up, .x-scroller-down {
|
|
1681
|
+
background-color:#c3daf9;
|
|
1682
|
+
border: 1px solid #6593cf;
|
|
1683
|
+
border-top-color: #fff;
|
|
1684
|
+
border-left-color: #fff;
|
|
1685
|
+
border-right:0 none;
|
|
1686
|
+
cursor:pointer;
|
|
1687
|
+
overflow:hidden;
|
|
1688
|
+
line-height:16px;
|
|
1689
|
+
}
|
|
1690
|
+
.x-scroller-down {
|
|
1691
|
+
border-bottom: 0 none;
|
|
1692
|
+
border-top: 1px solid #6593cf;
|
|
1693
|
+
}
|
|
1694
|
+
.x-scroller-btn-over {
|
|
1695
|
+
background-color: #d9e8f8;
|
|
1696
|
+
}
|
|
1697
|
+
.x-scroller-btn-click {
|
|
1698
|
+
background-color: #AECEF7;
|
|
1699
|
+
}
|
|
1700
|
+
.x-scroller-btn-disabled {
|
|
1701
|
+
cursor:default;
|
|
1702
|
+
background-color: #c3daf9;
|
|
1703
|
+
-moz-opacity: 0.3;
|
|
1704
|
+
opacity:.30;
|
|
1705
|
+
filter: alpha(opacity=30);
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
.x-reader .x-layout-panel-north {
|
|
1711
|
+
border:0 none;
|
|
1712
|
+
}
|
|
1713
|
+
.x-reader .x-layout-panel-center{
|
|
1714
|
+
border:0 none;
|
|
1715
|
+
}
|
|
1716
|
+
.x-reader .x-layout-nested-layout .x-layout-panel-center{
|
|
1717
|
+
border:1px solid #99bbe8;
|
|
1718
|
+
border-top:0 none;
|
|
1719
|
+
}
|
|
1720
|
+
.x-reader .x-layout-nested-layout .x-layout-panel-south{
|
|
1721
|
+
border:1px solid #99bbe8;
|
|
1722
|
+
}
|
|
1723
|
+
.x-dlg-proxy {
|
|
1724
|
+
background-image: url(../images/default/gradient-bg.gif);
|
|
1725
|
+
background-color:#c3daf9;
|
|
1726
|
+
border:1px solid #6593cf;
|
|
1727
|
+
z-index:10001;
|
|
1728
|
+
overflow:hidden;
|
|
1729
|
+
position:absolute;
|
|
1730
|
+
left:0;top:0;
|
|
1731
|
+
}
|
|
1732
|
+
.x-dlg-shadow{
|
|
1733
|
+
background:#aaaaaa;
|
|
1734
|
+
position:absolute;
|
|
1735
|
+
left:0;top:0;
|
|
1736
|
+
}
|
|
1737
|
+
.x-dlg-focus{
|
|
1738
|
+
-moz-outline:0 none;
|
|
1739
|
+
outline:0 none;
|
|
1740
|
+
width:0;
|
|
1741
|
+
height:0;
|
|
1742
|
+
overflow:hidden;
|
|
1743
|
+
position:absolute;
|
|
1744
|
+
top:0;
|
|
1745
|
+
left:0;
|
|
1746
|
+
}
|
|
1747
|
+
.x-dlg-mask{
|
|
1748
|
+
z-index:10000;
|
|
1749
|
+
display:none;
|
|
1750
|
+
position:absolute;
|
|
1751
|
+
top:0;
|
|
1752
|
+
left:0;
|
|
1753
|
+
-moz-opacity: 0.5;
|
|
1754
|
+
opacity:.50;
|
|
1755
|
+
filter: alpha(opacity=50);
|
|
1756
|
+
background-color:#CCC;
|
|
1757
|
+
}
|
|
1758
|
+
body.x-body-masked select {
|
|
1759
|
+
visibility:hidden;
|
|
1760
|
+
}
|
|
1761
|
+
body.x-body-masked .x-dlg select {
|
|
1762
|
+
visibility:visible;
|
|
1763
|
+
}
|
|
1764
|
+
.x-dlg{
|
|
1765
|
+
z-index:10001;
|
|
1766
|
+
overflow:hidden;
|
|
1767
|
+
position:absolute;
|
|
1768
|
+
left:300;top:0;
|
|
1769
|
+
}
|
|
1770
|
+
.x-dlg .x-dlg-hd {
|
|
1771
|
+
background: url(../images/default/basic-dialog/hd-sprite.gif) repeat-x 0 -82px;
|
|
1772
|
+
background-color:navy;
|
|
1773
|
+
color:#FFF;
|
|
1774
|
+
font:bold 12px "sans serif", tahoma, verdana, helvetica;
|
|
1775
|
+
overflow:hidden;
|
|
1776
|
+
padding:5px;
|
|
1777
|
+
white-space: nowrap;
|
|
1778
|
+
}
|
|
1779
|
+
.x-dlg .x-dlg-hd-left {
|
|
1780
|
+
background: url(../images/default/basic-dialog/hd-sprite.gif) no-repeat 0 -41px;
|
|
1781
|
+
padding-left:3px;
|
|
1782
|
+
margin:0;
|
|
1783
|
+
}
|
|
1784
|
+
.x-dlg .x-dlg-hd-right {
|
|
1785
|
+
background: url(../images/default/basic-dialog/hd-sprite.gif) no-repeat right 0;
|
|
1786
|
+
padding-right:3px;
|
|
1787
|
+
}
|
|
1788
|
+
.x-dlg .x-dlg-dlg-body{
|
|
1789
|
+
background:url(../images/default/layout/gradient-bg.gif);
|
|
1790
|
+
border:1px solid #6593cf;
|
|
1791
|
+
border-top:0 none;
|
|
1792
|
+
padding:10px;
|
|
1793
|
+
position:absolute;
|
|
1794
|
+
top:24px;left:0;
|
|
1795
|
+
z-index:1;
|
|
1796
|
+
overflow:hidden;
|
|
1797
|
+
}
|
|
1798
|
+
.x-dlg-collapsed .x-resizable-handle{
|
|
1799
|
+
display:none;
|
|
1800
|
+
}
|
|
1801
|
+
.x-dlg .x-dlg-bd{
|
|
1802
|
+
overflow:hidden;
|
|
1803
|
+
}
|
|
1804
|
+
.x-dlg .x-dlg-ft{
|
|
1805
|
+
overflow:hidden;
|
|
1806
|
+
padding:5px;
|
|
1807
|
+
padding-bottom:0;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.x-dlg .x-tabs-body{
|
|
1811
|
+
background:white;
|
|
1812
|
+
overflow:auto;
|
|
1813
|
+
}
|
|
1814
|
+
.x-dlg .x-tabs-top .x-tabs-body{
|
|
1815
|
+
border:1px solid #6593cf;
|
|
1816
|
+
border-top:0 none;
|
|
1817
|
+
}
|
|
1818
|
+
.x-dlg .x-tabs-bottom .x-tabs-body{
|
|
1819
|
+
border:1px solid #6593cf;
|
|
1820
|
+
border-bottom:0 none;
|
|
1821
|
+
}
|
|
1822
|
+
.x-dlg .x-layout-container .x-tabs-body{
|
|
1823
|
+
border:0 none;
|
|
1824
|
+
}
|
|
1825
|
+
.x-dlg .inner-tab{
|
|
1826
|
+
margin:5px;
|
|
1827
|
+
}
|
|
1828
|
+
.x-dlg .x-dlg-ft .x-btn{
|
|
1829
|
+
margin-right:5px;
|
|
1830
|
+
float:right;
|
|
1831
|
+
clear:none;
|
|
1832
|
+
}
|
|
1833
|
+
.x-dlg .x-dlg-ft .x-dlg-btns td {
|
|
1834
|
+
border:0;
|
|
1835
|
+
padding:0;
|
|
1836
|
+
}
|
|
1837
|
+
.x-dlg .x-dlg-ft .x-dlg-btns-right table{
|
|
1838
|
+
float:right;
|
|
1839
|
+
clear:none;
|
|
1840
|
+
}
|
|
1841
|
+
.x-dlg .x-dlg-ft .x-dlg-btns-left table{
|
|
1842
|
+
float:left;
|
|
1843
|
+
clear:none;
|
|
1844
|
+
}
|
|
1845
|
+
.x-dlg .x-dlg-ft .x-dlg-btns-center{
|
|
1846
|
+
text-align:center;
|
|
1847
|
+
}
|
|
1848
|
+
.x-dlg .x-dlg-ft .x-dlg-btns-center table{
|
|
1849
|
+
margin:0 auto;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
|
|
1853
|
+
.x-dlg .x-dlg-ft .x-dlg-btns .x-btn-focus .x-btn-left{
|
|
1854
|
+
background-position:0 -147px;
|
|
1855
|
+
}
|
|
1856
|
+
.x-dlg .x-dlg-ft .x-dlg-btns .x-btn-focus .x-btn-right{
|
|
1857
|
+
background-position:0 -168px;
|
|
1858
|
+
}
|
|
1859
|
+
.x-dlg .x-dlg-ft .x-dlg-btns .x-btn-focus .x-btn-center{
|
|
1860
|
+
background-position:0 -189px;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.x-dlg .x-dlg-ft .x-dlg-btns .x-btn-click .x-btn-center{
|
|
1864
|
+
background-position:0 -126px;
|
|
1865
|
+
}
|
|
1866
|
+
.x-dlg .x-dlg-ft .x-dlg-btns .x-btn-click .x-btn-right{
|
|
1867
|
+
background-position:0 -84px;
|
|
1868
|
+
}
|
|
1869
|
+
.x-dlg .x-dlg-ft .x-dlg-btns .x-btn-click .x-btn-left{
|
|
1870
|
+
background-position:0 -63px;
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
.x-dlg-draggable .x-dlg-hd{
|
|
1874
|
+
cursor:move;
|
|
1875
|
+
}
|
|
1876
|
+
.x-dlg-closable .x-dlg-hd{
|
|
1877
|
+
padding-right:22px;
|
|
1878
|
+
}
|
|
1879
|
+
.x-dlg-toolbox {
|
|
1880
|
+
position:absolute;
|
|
1881
|
+
top:4px;
|
|
1882
|
+
right:4px;
|
|
1883
|
+
z-index:6;
|
|
1884
|
+
width:40px;
|
|
1885
|
+
cursor:default;
|
|
1886
|
+
height:15px;
|
|
1887
|
+
background:transparent;
|
|
1888
|
+
}
|
|
1889
|
+
.x-dlg .x-dlg-close, .x-dlg .x-dlg-collapse {
|
|
1890
|
+
float:right;
|
|
1891
|
+
height:15px;
|
|
1892
|
+
width:15px;
|
|
1893
|
+
margin:0;
|
|
1894
|
+
margin-left:2px;
|
|
1895
|
+
padding:0;
|
|
1896
|
+
line-height:1px;
|
|
1897
|
+
font-size:1px;
|
|
1898
|
+
background-repeat:no-repeat;
|
|
1899
|
+
cursor:pointer;
|
|
1900
|
+
visibility:inherit;
|
|
1901
|
+
}
|
|
1902
|
+
.x-dlg .x-dlg-close {
|
|
1903
|
+
background-image:url(../images/default/basic-dialog/close.gif);
|
|
1904
|
+
}
|
|
1905
|
+
.x-dlg .x-dlg-collapse {
|
|
1906
|
+
background-image:url(../images/default/basic-dialog/collapse.gif);
|
|
1907
|
+
}
|
|
1908
|
+
.x-dlg-collapsed .x-dlg-collapse {
|
|
1909
|
+
background-image:url(../images/default/basic-dialog/expand.gif);
|
|
1910
|
+
}
|
|
1911
|
+
.x-dlg .x-dlg-close-over, .x-dlg .x-dlg-collapse-over {
|
|
1912
|
+
|
|
1913
|
+
}
|
|
1914
|
+
.x-dlg div.x-resizable-handle-east{
|
|
1915
|
+
background-image:url(../images/default/basic-dialog/e-handle.gif);
|
|
1916
|
+
border:0;
|
|
1917
|
+
background-position:right;
|
|
1918
|
+
margin-right:0;
|
|
1919
|
+
}
|
|
1920
|
+
.x-dlg div.x-resizable-handle-south{
|
|
1921
|
+
background-image:url(../images/default/sizer/s-handle-dark.gif);
|
|
1922
|
+
border:0;
|
|
1923
|
+
height:6px;
|
|
1924
|
+
}
|
|
1925
|
+
.x-dlg div.x-resizable-handle-west{
|
|
1926
|
+
background-image:url(../images/default/basic-dialog/e-handle.gif);
|
|
1927
|
+
border:0;
|
|
1928
|
+
background-position:1px;
|
|
1929
|
+
}
|
|
1930
|
+
.x-dlg div.x-resizable-handle-north{
|
|
1931
|
+
background-image:url(../images/default/s.gif);
|
|
1932
|
+
border:0;
|
|
1933
|
+
}
|
|
1934
|
+
.x-dlg div.x-resizable-handle-northeast, .ytheme-gray .x-dlg div.x-resizable-handle-northeast{
|
|
1935
|
+
background-image:url(../images/default/s.gif);
|
|
1936
|
+
border:0;
|
|
1937
|
+
}
|
|
1938
|
+
.x-dlg div.x-resizable-handle-northwest, .ytheme-gray .x-dlg div.x-resizable-handle-northwest{
|
|
1939
|
+
background-image:url(../images/default/s.gif);
|
|
1940
|
+
border:0;
|
|
1941
|
+
}
|
|
1942
|
+
.x-dlg div.x-resizable-handle-southeast{
|
|
1943
|
+
background-image:url(../images/default/basic-dialog/se-handle.gif);
|
|
1944
|
+
background-position: bottom right;
|
|
1945
|
+
width:8px;
|
|
1946
|
+
height:8px;
|
|
1947
|
+
border:0;
|
|
1948
|
+
}
|
|
1949
|
+
.x-dlg div.x-resizable-handle-southwest{
|
|
1950
|
+
background-image:url(../images/default/sizer/sw-handle-dark.gif);
|
|
1951
|
+
background-position: top right;
|
|
1952
|
+
margin-left:1px;
|
|
1953
|
+
margin-bottom:1px;
|
|
1954
|
+
border:0;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
#x-msg-box .x-dlg-ft .x-btn{
|
|
1958
|
+
float:none;
|
|
1959
|
+
clear:none;
|
|
1960
|
+
margin:0 3px;
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
#x-msg-box .x-dlg-bd {
|
|
1964
|
+
padding:5px;
|
|
1965
|
+
overflow:hidden !important;
|
|
1966
|
+
font:normal 13px verdana,tahoma,sans-serif;
|
|
1967
|
+
}
|
|
1968
|
+
#x-msg-box .ext-mb-input {
|
|
1969
|
+
margin-top:4px;
|
|
1970
|
+
width:95%;
|
|
1971
|
+
}
|
|
1972
|
+
#x-msg-box .ext-mb-textarea {
|
|
1973
|
+
margin-top:4px;
|
|
1974
|
+
font:normal 13px verdana,tahoma,sans-serif;
|
|
1975
|
+
}
|
|
1976
|
+
#x-msg-box .ext-mb-progress-wrap {
|
|
1977
|
+
margin-top:4px;
|
|
1978
|
+
border:1px solid #6593cf;
|
|
1979
|
+
}
|
|
1980
|
+
#x-msg-box .ext-mb-progress {
|
|
1981
|
+
height:18px;
|
|
1982
|
+
background: #e0e8f3 url(../images/default/qtip/bg.gif) repeat-x;
|
|
1983
|
+
}
|
|
1984
|
+
#x-msg-box .ext-mb-progress-bar {
|
|
1985
|
+
height:18px;
|
|
1986
|
+
overflow:hidden;
|
|
1987
|
+
width:0;
|
|
1988
|
+
background:#8BB8F3;
|
|
1989
|
+
border-top:1px solid #B2D0F7;
|
|
1990
|
+
border-bottom:1px solid #65A1EF;
|
|
1991
|
+
border-right:1px solid #65A1EF;
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
#x-msg-box .x-msg-box-wait {
|
|
1995
|
+
background: transparent url(../images/default/grid/loading.gif) no-repeat left;
|
|
1996
|
+
display:block;
|
|
1997
|
+
width:300px;
|
|
1998
|
+
padding-left:18px;
|
|
1999
|
+
line-height:18px;
|
|
2000
|
+
}
|
|
2001
|
+
.x-dd-drag-proxy{
|
|
2002
|
+
position:absolute;
|
|
2003
|
+
left:0;top:0;
|
|
2004
|
+
visibility:hidden;
|
|
2005
|
+
z-index:15000;
|
|
2006
|
+
}
|
|
2007
|
+
.x-dd-drag-ghost{
|
|
2008
|
+
color: black;
|
|
2009
|
+
font: normal 11px arial, helvetica, sans-serif;
|
|
2010
|
+
-moz-opacity: 0.85;
|
|
2011
|
+
opacity:.85;
|
|
2012
|
+
filter: alpha(opacity=85);
|
|
2013
|
+
border-top:1px solid #dddddd;
|
|
2014
|
+
border-left:1px solid #dddddd;
|
|
2015
|
+
border-right:1px solid #bbbbbb;
|
|
2016
|
+
border-bottom:1px solid #bbbbbb;
|
|
2017
|
+
padding:3px;
|
|
2018
|
+
padding-left:20px;
|
|
2019
|
+
background-color:white;
|
|
2020
|
+
white-space:nowrap;
|
|
2021
|
+
}
|
|
2022
|
+
.x-dd-drag-repair .x-dd-drag-ghost{
|
|
2023
|
+
-moz-opacity: 0.4;
|
|
2024
|
+
opacity:.4;
|
|
2025
|
+
filter: alpha(opacity=40);
|
|
2026
|
+
border:0 none;
|
|
2027
|
+
padding:0;
|
|
2028
|
+
background-color:transparent;
|
|
2029
|
+
}
|
|
2030
|
+
.x-dd-drag-repair .x-dd-drop-icon{
|
|
2031
|
+
visibility:hidden;
|
|
2032
|
+
}
|
|
2033
|
+
.x-dd-drop-icon{
|
|
2034
|
+
position:absolute;
|
|
2035
|
+
top:3px;
|
|
2036
|
+
left:3px;
|
|
2037
|
+
display:block;
|
|
2038
|
+
width:16px;
|
|
2039
|
+
height:16px;
|
|
2040
|
+
background-color:transparent;
|
|
2041
|
+
background-position: center;
|
|
2042
|
+
background-repeat: no-repeat;
|
|
2043
|
+
z-index:1;
|
|
2044
|
+
}
|
|
2045
|
+
.x-dd-drop-nodrop .x-dd-drop-icon{
|
|
2046
|
+
background-image: url(../images/default/dd/drop-no.gif);
|
|
2047
|
+
}
|
|
2048
|
+
.x-dd-drop-ok .x-dd-drop-icon{
|
|
2049
|
+
background-image: url(../images/default/dd/drop-yes.gif);
|
|
2050
|
+
}
|
|
2051
|
+
.x-dd-drop-ok-add .x-dd-drop-icon{
|
|
2052
|
+
background-image: url(../images/default/dd/drop-add.gif);
|
|
2053
|
+
}
|
|
2054
|
+
.x-tree-icon, .x-tree-ec-icon, .x-tree-elbow-line, .x-tree-elbow, .x-tree-elbow-end, .x-tree-elbow-plus, .x-tree-elbow-minus, .x-tree-elbow-end-plus, .x-tree-elbow-end-minus{
|
|
2055
|
+
border: 0 none;
|
|
2056
|
+
height: 18px;
|
|
2057
|
+
margin: 0;
|
|
2058
|
+
padding: 0;
|
|
2059
|
+
vertical-align: middle;
|
|
2060
|
+
width: 16px;
|
|
2061
|
+
background-repeat: no-repeat;
|
|
2062
|
+
}
|
|
2063
|
+
.x-tree-node-collapsed .x-tree-node-icon, .x-tree-node-expanded .x-tree-node-icon, .x-tree-node-leaf .x-tree-node-icon{
|
|
2064
|
+
border: 0 none;
|
|
2065
|
+
height: 18px;
|
|
2066
|
+
margin: 0;
|
|
2067
|
+
padding: 0;
|
|
2068
|
+
vertical-align: middle;
|
|
2069
|
+
width: 16px;
|
|
2070
|
+
background-position:center;
|
|
2071
|
+
background-repeat: no-repeat;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
|
|
2075
|
+
.x-tree-node-collapsed .x-tree-node-icon{
|
|
2076
|
+
background-image:url(../images/default/tree/folder.gif);
|
|
2077
|
+
}
|
|
2078
|
+
.x-tree-node-expanded .x-tree-node-icon{
|
|
2079
|
+
background-image:url(../images/default/tree/folder-open.gif);
|
|
2080
|
+
}
|
|
2081
|
+
.x-tree-node-leaf .x-tree-node-icon{
|
|
2082
|
+
background-image:url(../images/default/tree/leaf.gif);
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
.x-tree-noicon .x-tree-node-icon{
|
|
2086
|
+
width:0; height:0;
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
.x-tree-node-loading .x-tree-node-icon{
|
|
2090
|
+
background-image:url(../images/default/tree/loading.gif) !important;
|
|
2091
|
+
}
|
|
2092
|
+
.x-tree-node-loading a span{
|
|
2093
|
+
font-style: italic;
|
|
2094
|
+
color:#444444;
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
|
|
2098
|
+
.x-tree-lines .x-tree-elbow{
|
|
2099
|
+
background-image:url(../images/default/tree/elbow.gif);
|
|
2100
|
+
}
|
|
2101
|
+
.x-tree-lines .x-tree-elbow-plus{
|
|
2102
|
+
background-image:url(../images/default/tree/elbow-plus.gif);
|
|
2103
|
+
}
|
|
2104
|
+
.x-tree-lines .x-tree-elbow-minus{
|
|
2105
|
+
background-image:url(../images/default/tree/elbow-minus.gif);
|
|
2106
|
+
}
|
|
2107
|
+
.x-tree-lines .x-tree-elbow-end{
|
|
2108
|
+
background-image:url(../images/default/tree/elbow-end.gif);
|
|
2109
|
+
}
|
|
2110
|
+
.x-tree-lines .x-tree-elbow-end-plus{
|
|
2111
|
+
background-image:url(../images/default/tree/elbow-end-plus.gif);
|
|
2112
|
+
}
|
|
2113
|
+
.x-tree-lines .x-tree-elbow-end-minus{
|
|
2114
|
+
background-image:url(../images/default/tree/elbow-end-minus.gif);
|
|
2115
|
+
}
|
|
2116
|
+
.x-tree-lines .x-tree-elbow-line{
|
|
2117
|
+
background-image:url(../images/default/tree/elbow-line.gif);
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
.x-tree-no-lines .x-tree-elbow{
|
|
2122
|
+
background:transparent;
|
|
2123
|
+
}
|
|
2124
|
+
.x-tree-no-lines .x-tree-elbow-plus{
|
|
2125
|
+
background-image:url(../images/default/tree/elbow-plus-nl.gif);
|
|
2126
|
+
}
|
|
2127
|
+
.x-tree-no-lines .x-tree-elbow-minus{
|
|
2128
|
+
background-image:url(../images/default/tree/elbow-minus-nl.gif);
|
|
2129
|
+
}
|
|
2130
|
+
.x-tree-no-lines .x-tree-elbow-end{
|
|
2131
|
+
background:transparent;
|
|
2132
|
+
}
|
|
2133
|
+
.x-tree-no-lines .x-tree-elbow-end-plus{
|
|
2134
|
+
background-image:url(../images/default/tree/elbow-end-plus-nl.gif);
|
|
2135
|
+
}
|
|
2136
|
+
.x-tree-no-lines .x-tree-elbow-end-minus{
|
|
2137
|
+
background-image:url(../images/default/tree/elbow-end-minus-nl.gif);
|
|
2138
|
+
}
|
|
2139
|
+
.x-tree-no-lines .x-tree-elbow-line{
|
|
2140
|
+
background:transparent;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
.x-tree-elbow-plus, .x-tree-elbow-minus, .x-tree-elbow-end-plus, .x-tree-elbow-end-minus{
|
|
2144
|
+
cursor:pointer;
|
|
2145
|
+
}
|
|
2146
|
+
.ext-ie ul.x-tree-node-ct{
|
|
2147
|
+
font-size:0;
|
|
2148
|
+
line-height:0;
|
|
2149
|
+
}
|
|
2150
|
+
.x-tree-node{
|
|
2151
|
+
color: black;
|
|
2152
|
+
font: normal 11px arial, tahoma, helvetica, sans-serif;
|
|
2153
|
+
white-space: nowrap;
|
|
2154
|
+
}
|
|
2155
|
+
.x-tree-node a, .x-dd-drag-ghost a{
|
|
2156
|
+
text-decoration:none;
|
|
2157
|
+
color:black;
|
|
2158
|
+
-khtml-user-select:none;
|
|
2159
|
+
-moz-user-select:none;
|
|
2160
|
+
-kthml-user-focus:normal;
|
|
2161
|
+
-moz-user-focus:normal;
|
|
2162
|
+
-moz-outline: 0 none;
|
|
2163
|
+
outline:0 none;
|
|
2164
|
+
}
|
|
2165
|
+
.x-tree-node a span, .x-dd-drag-ghost a span{
|
|
2166
|
+
text-decoration:none;
|
|
2167
|
+
color:black;
|
|
2168
|
+
padding:1px 3px 1px 2px;
|
|
2169
|
+
}
|
|
2170
|
+
.x-tree-node .x-tree-node-disabled a span{
|
|
2171
|
+
color:gray !important;
|
|
2172
|
+
}
|
|
2173
|
+
.x-tree-node .x-tree-node-disabled .x-tree-node-icon{
|
|
2174
|
+
-moz-opacity: 0.5;
|
|
2175
|
+
opacity:.5;
|
|
2176
|
+
filter: alpha(opacity=50);
|
|
2177
|
+
}
|
|
2178
|
+
.x-tree-node .x-tree-node-inline-icon{
|
|
2179
|
+
background:transparent;
|
|
2180
|
+
}
|
|
2181
|
+
.x-tree-node a:hover, .x-dd-drag-ghost a:hover{
|
|
2182
|
+
text-decoration:none;
|
|
2183
|
+
}
|
|
2184
|
+
.x-tree-node div.x-tree-drag-insert-below{
|
|
2185
|
+
border-bottom:1px dotted #3366cc;
|
|
2186
|
+
}
|
|
2187
|
+
.x-tree-node div.x-tree-drag-insert-above{
|
|
2188
|
+
border-top:1px dotted #3366cc;
|
|
2189
|
+
}
|
|
2190
|
+
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below{
|
|
2191
|
+
border-bottom:0 none;
|
|
2192
|
+
}
|
|
2193
|
+
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above{
|
|
2194
|
+
border-top:0 none;
|
|
2195
|
+
}
|
|
2196
|
+
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a{
|
|
2197
|
+
border-bottom:2px solid #3366cc;
|
|
2198
|
+
}
|
|
2199
|
+
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a{
|
|
2200
|
+
border-top:2px solid #3366cc;
|
|
2201
|
+
}
|
|
2202
|
+
.x-tree-node .x-tree-drag-append a span{
|
|
2203
|
+
background:#dddddd;
|
|
2204
|
+
border:1px dotted gray;
|
|
2205
|
+
}
|
|
2206
|
+
.x-tree-node .x-tree-selected a span{
|
|
2207
|
+
background:#3366cc;
|
|
2208
|
+
color:white;
|
|
2209
|
+
}
|
|
2210
|
+
.x-dd-drag-ghost .x-tree-node-indent, .x-dd-drag-ghost .x-tree-ec-icon{
|
|
2211
|
+
display:none !important;
|
|
2212
|
+
}
|
|
2213
|
+
.x-tree-drop-ok-append .x-dd-drop-icon{
|
|
2214
|
+
background-image: url(../images/default/tree/drop-add.gif);
|
|
2215
|
+
}
|
|
2216
|
+
.x-tree-drop-ok-above .x-dd-drop-icon{
|
|
2217
|
+
background-image: url(../images/default/tree/drop-over.gif);
|
|
2218
|
+
}
|
|
2219
|
+
.x-tree-drop-ok-below .x-dd-drop-icon{
|
|
2220
|
+
background-image: url(../images/default/tree/drop-under.gif);
|
|
2221
|
+
}
|
|
2222
|
+
.x-tree-drop-ok-between .x-dd-drop-icon{
|
|
2223
|
+
background-image: url(../images/default/tree/drop-between.gif);
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
.x-tip{
|
|
2227
|
+
position: absolute;
|
|
2228
|
+
top: 0;
|
|
2229
|
+
left:0;
|
|
2230
|
+
visibility: hidden;
|
|
2231
|
+
z-index: 20000;
|
|
2232
|
+
border:0 none;
|
|
2233
|
+
}
|
|
2234
|
+
.x-tip .x-tip-close{
|
|
2235
|
+
background-image: url(../images/default/qtip/close.gif);
|
|
2236
|
+
height: 15px;
|
|
2237
|
+
float:right;
|
|
2238
|
+
width: 15px;
|
|
2239
|
+
margin:0 0 2px 2px;
|
|
2240
|
+
cursor:pointer;
|
|
2241
|
+
display:none;
|
|
2242
|
+
}
|
|
2243
|
+
.x-tip .x-tip-top {
|
|
2244
|
+
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -12px;
|
|
2245
|
+
height:6px;
|
|
2246
|
+
overflow:hidden;
|
|
2247
|
+
}
|
|
2248
|
+
.x-tip .x-tip-top-left {
|
|
2249
|
+
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 0;
|
|
2250
|
+
padding-left:6px;
|
|
2251
|
+
zoom:1;
|
|
2252
|
+
}
|
|
2253
|
+
.x-tip .x-tip-top-right {
|
|
2254
|
+
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right 0;
|
|
2255
|
+
padding-right:6px;
|
|
2256
|
+
zoom:1;
|
|
2257
|
+
}
|
|
2258
|
+
.x-tip .x-tip-ft {
|
|
2259
|
+
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -18px;
|
|
2260
|
+
height:6px;
|
|
2261
|
+
overflow:hidden;
|
|
2262
|
+
}
|
|
2263
|
+
.x-tip .x-tip-ft-left {
|
|
2264
|
+
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -6px;
|
|
2265
|
+
padding-left:6px;
|
|
2266
|
+
zoom:1;
|
|
2267
|
+
}
|
|
2268
|
+
.x-tip .x-tip-ft-right {
|
|
2269
|
+
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -6px;
|
|
2270
|
+
padding-right:6px;
|
|
2271
|
+
zoom:1;
|
|
2272
|
+
}
|
|
2273
|
+
.x-tip .x-tip-bd {
|
|
2274
|
+
border:0 none;
|
|
2275
|
+
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
|
2276
|
+
}
|
|
2277
|
+
.x-tip .x-tip-bd-left {
|
|
2278
|
+
background: #fff url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -24px;
|
|
2279
|
+
padding-left:6px;
|
|
2280
|
+
zoom:1;
|
|
2281
|
+
}
|
|
2282
|
+
.x-tip .x-tip-bd-right {
|
|
2283
|
+
background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -24px;
|
|
2284
|
+
padding-right:6px;
|
|
2285
|
+
zoom:1;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.x-tip h3 {
|
|
2289
|
+
font: bold 12px tahoma,arial,helvetica,sans-serif;
|
|
2290
|
+
margin:0;
|
|
2291
|
+
padding:2px 2px;
|
|
2292
|
+
color:#222;
|
|
2293
|
+
}
|
|
2294
|
+
.x-tip .x-tip-bd-inner {
|
|
2295
|
+
margin:0 !important;
|
|
2296
|
+
line-height:14px;
|
|
2297
|
+
color:#222;
|
|
2298
|
+
padding:0;
|
|
2299
|
+
float:left;
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
|
|
2303
|
+
.x-form-invalid-tip {
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
.x-form-invalid-tip .x-tip-top {
|
|
2307
|
+
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
2308
|
+
}
|
|
2309
|
+
.x-form-invalid-tip .x-tip-top-left {
|
|
2310
|
+
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
2311
|
+
}
|
|
2312
|
+
.x-form-invalid-tip .x-tip-top-right {
|
|
2313
|
+
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
2314
|
+
}
|
|
2315
|
+
.x-form-invalid-tip .x-tip-ft {
|
|
2316
|
+
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
2317
|
+
}
|
|
2318
|
+
.x-form-invalid-tip .x-tip-ft-left {
|
|
2319
|
+
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
2320
|
+
}
|
|
2321
|
+
.x-form-invalid-tip .x-tip-ft-right {
|
|
2322
|
+
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
2323
|
+
}
|
|
2324
|
+
.x-form-invalid-tip .x-tip-bd-left {
|
|
2325
|
+
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
2326
|
+
}
|
|
2327
|
+
.x-form-invalid-tip .x-tip-bd-right {
|
|
2328
|
+
background-image: url(../images/default/form/error-tip-corners.gif);
|
|
2329
|
+
}
|
|
2330
|
+
.x-form-invalid-tip .x-tip-bd .x-tip-bd-inner {
|
|
2331
|
+
padding-left:24px;
|
|
2332
|
+
background:transparent url(../images/default/form/exclamation.gif) no-repeat 2px 2px;
|
|
2333
|
+
}
|
|
2334
|
+
.x-form-invalid-tip .x-tip-bd-inner {
|
|
2335
|
+
padding:2px;
|
|
2336
|
+
}
|
|
2337
|
+
.x-date-picker {
|
|
2338
|
+
border: 1px solid #1b376c;
|
|
2339
|
+
border-top:0 none;
|
|
2340
|
+
background:#fff;
|
|
2341
|
+
}
|
|
2342
|
+
.x-date-picker a {
|
|
2343
|
+
-moz-outline:0 none;
|
|
2344
|
+
outline:0 none;
|
|
2345
|
+
}
|
|
2346
|
+
.x-date-inner, .x-date-inner td, .x-date-inner th{
|
|
2347
|
+
border-collapse:separate;
|
|
2348
|
+
}
|
|
2349
|
+
.x-date-middle,.x-date-left,.x-date-right {
|
|
2350
|
+
background: url(../images/default/basic-dialog/hd-sprite.gif) repeat-x 0 -83px;
|
|
2351
|
+
color:#FFF;
|
|
2352
|
+
font:bold 11px "sans serif", tahoma, verdana, helvetica;
|
|
2353
|
+
overflow:hidden;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.x-date-middle .x-btn-left,.x-date-middle .x-btn-center,.x-date-middle .x-btn-right{
|
|
2357
|
+
background:transparent !important;
|
|
2358
|
+
vertical-align:middle;
|
|
2359
|
+
}
|
|
2360
|
+
.x-date-middle .x-btn .x-btn-text {
|
|
2361
|
+
color:#fff;
|
|
2362
|
+
}
|
|
2363
|
+
.x-date-middle .x-btn-with-menu .x-btn-center em {
|
|
2364
|
+
background:transparent url(../images/default/toolbar/btn-arrow-light.gif) no-repeat right 0;
|
|
2365
|
+
}
|
|
2366
|
+
.x-date-right, .x-date-left {
|
|
2367
|
+
width:18px;
|
|
2368
|
+
}
|
|
2369
|
+
.x-date-right{
|
|
2370
|
+
text-align:right;
|
|
2371
|
+
}
|
|
2372
|
+
.x-date-middle {
|
|
2373
|
+
padding-top:2px;padding-bottom:2px;
|
|
2374
|
+
}
|
|
2375
|
+
.x-date-right a, .x-date-left a{
|
|
2376
|
+
display:block;
|
|
2377
|
+
width:16px;
|
|
2378
|
+
height:16px;
|
|
2379
|
+
background-position: center;
|
|
2380
|
+
background-repeat: no-repeat;
|
|
2381
|
+
cursor:pointer;
|
|
2382
|
+
-moz-opacity: 0.6;
|
|
2383
|
+
opacity:.6;
|
|
2384
|
+
filter: alpha(opacity=60);
|
|
2385
|
+
}
|
|
2386
|
+
.x-date-right a:hover, .x-date-left a:hover{
|
|
2387
|
+
-moz-opacity: 1;
|
|
2388
|
+
opacity:1;
|
|
2389
|
+
filter: alpha(opacity=100);
|
|
2390
|
+
}
|
|
2391
|
+
.x-date-right a {
|
|
2392
|
+
background-image: url(../images/default/shared/right-btn.gif);
|
|
2393
|
+
margin-right:2px;
|
|
2394
|
+
}
|
|
2395
|
+
.x-date-left a{
|
|
2396
|
+
background-image: url(../images/default/shared/left-btn.gif);
|
|
2397
|
+
margin-left:2px;
|
|
2398
|
+
}
|
|
2399
|
+
table.x-date-inner {
|
|
2400
|
+
width:100%;
|
|
2401
|
+
table-layout:fixed;
|
|
2402
|
+
}
|
|
2403
|
+
.x-date-inner th {
|
|
2404
|
+
width:25px;
|
|
2405
|
+
}
|
|
2406
|
+
.x-date-inner th {
|
|
2407
|
+
background: #c3daf9;
|
|
2408
|
+
text-align:right !important;
|
|
2409
|
+
border-bottom: 1px solid #a3bad9;
|
|
2410
|
+
font:normal 10px arial, helvetica,tahoma,sans-serif;
|
|
2411
|
+
color:#233d6d;
|
|
2412
|
+
cursor:default;
|
|
2413
|
+
padding:0;
|
|
2414
|
+
border-collapse:separate;
|
|
2415
|
+
}
|
|
2416
|
+
.x-date-inner th span {
|
|
2417
|
+
display:block;
|
|
2418
|
+
padding:2px;
|
|
2419
|
+
padding-right:7px;
|
|
2420
|
+
}
|
|
2421
|
+
.x-date-inner td {
|
|
2422
|
+
border: 1px solid #fff;
|
|
2423
|
+
text-align:right;
|
|
2424
|
+
padding:0;
|
|
2425
|
+
}
|
|
2426
|
+
.x-date-inner a {
|
|
2427
|
+
padding:2px 5px;
|
|
2428
|
+
display:block;
|
|
2429
|
+
font:normal 11px arial, helvetica,tahoma,sans-serif;
|
|
2430
|
+
text-decoration:none;
|
|
2431
|
+
color:black;
|
|
2432
|
+
text-align:right;
|
|
2433
|
+
zoom:1;
|
|
2434
|
+
}
|
|
2435
|
+
.x-date-inner .x-date-active{
|
|
2436
|
+
cursor:pointer;
|
|
2437
|
+
color:black;
|
|
2438
|
+
}
|
|
2439
|
+
.x-date-inner .x-date-selected a{
|
|
2440
|
+
background: #ddecfe;
|
|
2441
|
+
border: 1px solid #a3bad9;
|
|
2442
|
+
padding:1px 4px;
|
|
2443
|
+
}
|
|
2444
|
+
.x-date-inner .x-date-today a{
|
|
2445
|
+
border: 1px solid darkred;
|
|
2446
|
+
padding:1px 4px;
|
|
2447
|
+
}
|
|
2448
|
+
.x-date-inner .x-date-selected span{
|
|
2449
|
+
font-weight:bold;
|
|
2450
|
+
}
|
|
2451
|
+
.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a {
|
|
2452
|
+
color:#aaaaaa;
|
|
2453
|
+
}
|
|
2454
|
+
.x-date-bottom {
|
|
2455
|
+
padding:4px;
|
|
2456
|
+
border-top: 1px solid #a3bad9;
|
|
2457
|
+
background: #c3daf9;
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
|
|
2461
|
+
text-decoration:none;
|
|
2462
|
+
color:black;
|
|
2463
|
+
background: #ddecfe;
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
.x-date-inner .x-date-disabled a {
|
|
2467
|
+
cursor:default;
|
|
2468
|
+
background:#eeeeee;
|
|
2469
|
+
color:#bbbbbb;
|
|
2470
|
+
}
|
|
2471
|
+
.x-date-mmenu{
|
|
2472
|
+
background:#eeeeee !important;
|
|
2473
|
+
}
|
|
2474
|
+
.x-date-mmenu .x-menu-item {
|
|
2475
|
+
font-size:10px;
|
|
2476
|
+
padding:1px 24px 1px 4px;
|
|
2477
|
+
white-space: nowrap;
|
|
2478
|
+
color:#000;
|
|
2479
|
+
}
|
|
2480
|
+
.x-date-mmenu .x-menu-item .x-menu-item-icon {
|
|
2481
|
+
width:10px;height:10px;margin-right:5px;
|
|
2482
|
+
background-position:center -4px !important;
|
|
2483
|
+
}
|
|
2484
|
+
.x-menu {
|
|
2485
|
+
border:1px solid;
|
|
2486
|
+
border-color: #a3bad9 #8BB8F3 #8BB8F3 #a3bad9;
|
|
2487
|
+
z-index: 15000;
|
|
2488
|
+
background: #fff url(../images/default/menu/menu.gif) repeat-y;
|
|
2489
|
+
}
|
|
2490
|
+
.ext-ie .x-menu {
|
|
2491
|
+
zoom:1;
|
|
2492
|
+
overflow:hidden;
|
|
2493
|
+
}
|
|
2494
|
+
.x-menu-list{
|
|
2495
|
+
border:1px solid #fff;
|
|
2496
|
+
}
|
|
2497
|
+
.x-menu li{
|
|
2498
|
+
line-height:100%;
|
|
2499
|
+
}
|
|
2500
|
+
.x-menu li.x-menu-sep-li{
|
|
2501
|
+
font-size:1px;
|
|
2502
|
+
line-height:1px;
|
|
2503
|
+
}
|
|
2504
|
+
.x-menu-list-item{
|
|
2505
|
+
font:normal 11px "Segoe UI",tahoma,"Lucida Sans Unicode",arial, sans-serif;
|
|
2506
|
+
white-space: nowrap;
|
|
2507
|
+
-moz-user-select: none;
|
|
2508
|
+
-khtml-user-select: none;
|
|
2509
|
+
display:block;
|
|
2510
|
+
padding:1px;
|
|
2511
|
+
}
|
|
2512
|
+
.x-menu-item-arrow{
|
|
2513
|
+
background:transparent url(../images/default/menu/menu-parent.gif) no-repeat right;
|
|
2514
|
+
}
|
|
2515
|
+
.x-menu-sep {
|
|
2516
|
+
display:block;
|
|
2517
|
+
font-size:1px;
|
|
2518
|
+
background:#c3daf9;
|
|
2519
|
+
margin: 3px 3px 3px 32px;
|
|
2520
|
+
height:1px;
|
|
2521
|
+
}
|
|
2522
|
+
.x-menu-focus {
|
|
2523
|
+
position:absolute;
|
|
2524
|
+
left:0;
|
|
2525
|
+
top:-5px;
|
|
2526
|
+
width:0;
|
|
2527
|
+
height:0;
|
|
2528
|
+
line-height:1px;
|
|
2529
|
+
}
|
|
2530
|
+
.x-menu-item {
|
|
2531
|
+
display:block;
|
|
2532
|
+
line-height:14px;
|
|
2533
|
+
padding:3px 21px 3px 3px;
|
|
2534
|
+
white-space: nowrap;
|
|
2535
|
+
text-decoration:none;
|
|
2536
|
+
color:#233d6d;
|
|
2537
|
+
-moz-outline: 0 none;
|
|
2538
|
+
outline: 0 none;
|
|
2539
|
+
cursor:pointer;
|
|
2540
|
+
}
|
|
2541
|
+
.x-menu-item-active {
|
|
2542
|
+
color:#233d6d;
|
|
2543
|
+
background:#c3daf9;
|
|
2544
|
+
border:1px solid #8BB8F3;
|
|
2545
|
+
padding:0;
|
|
2546
|
+
}
|
|
2547
|
+
.x-menu-item-icon {
|
|
2548
|
+
border: 0 none;
|
|
2549
|
+
height: 16px;
|
|
2550
|
+
padding: 0;
|
|
2551
|
+
vertical-align: middle;
|
|
2552
|
+
width: 16px;
|
|
2553
|
+
margin: 0 11px 0 0;
|
|
2554
|
+
background-position:center;
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
.x-menu-check-item .x-menu-item-icon{
|
|
2558
|
+
background: transparent url(../images/default/menu/unchecked.gif) no-repeat center;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
.x-menu-item-checked .x-menu-item-icon{
|
|
2562
|
+
background-image:url(../images/default/menu/checked.gif);
|
|
2563
|
+
}
|
|
2564
|
+
.x-menu-group-item .x-menu-item-icon{
|
|
2565
|
+
background: transparent;
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2568
|
+
.x-menu-item-checked .x-menu-group-item .x-menu-item-icon{
|
|
2569
|
+
background: transparent url(../images/default/menu/group-checked.gif) no-repeat center;
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
.x-menu-plain {
|
|
2573
|
+
background:#fff;
|
|
2574
|
+
}
|
|
2575
|
+
.x-menu-date-item{
|
|
2576
|
+
padding:0;
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
.x-menu .x-color-palette, .x-menu .x-date-picker{
|
|
2580
|
+
margin-left:32px;
|
|
2581
|
+
margin-right:4px;
|
|
2582
|
+
}
|
|
2583
|
+
.x-menu .x-date-picker{
|
|
2584
|
+
border:1px solid #a3bad9;
|
|
2585
|
+
margin-top:2px;
|
|
2586
|
+
margin-bottom:2px;
|
|
2587
|
+
}
|
|
2588
|
+
.x-menu-plain .x-color-palette, .x-menu-plain .x-date-picker{
|
|
2589
|
+
margin:0;
|
|
2590
|
+
border:0 none;
|
|
2591
|
+
}
|
|
2592
|
+
|
|
2593
|
+
|
|
2594
|
+
|
|
2595
|
+
.x-box-tl {
|
|
2596
|
+
background: transparent url(../images/default/box/corners.gif) no-repeat 0 0;
|
|
2597
|
+
zoom:1;
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
.x-box-tc {
|
|
2601
|
+
height: 8px;
|
|
2602
|
+
background: transparent url(../images/default/box/tb.gif) repeat-x 0 0;
|
|
2603
|
+
overflow: hidden;
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
.x-box-tr {
|
|
2607
|
+
background: transparent url(../images/default/box/corners.gif) no-repeat right -8px;
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
.x-box-ml {
|
|
2611
|
+
background: transparent url(../images/default/box/l.gif) repeat-y 0;
|
|
2612
|
+
padding-left: 4px;
|
|
2613
|
+
overflow: hidden;
|
|
2614
|
+
zoom:1;
|
|
2615
|
+
}
|
|
2616
|
+
|
|
2617
|
+
.x-box-mc {
|
|
2618
|
+
background: #eee url(../images/default/box/tb.gif) repeat-x 0 -16px;
|
|
2619
|
+
padding: 4px 10px;
|
|
2620
|
+
font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
|
|
2621
|
+
color: #393939;
|
|
2622
|
+
font-size: 12px;
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
.x-box-mc h3 {
|
|
2626
|
+
font-size: 14px;
|
|
2627
|
+
font-weight: bold;
|
|
2628
|
+
margin: 0 0 4 0;
|
|
2629
|
+
zoom:1;
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
.x-box-mr {
|
|
2633
|
+
background: transparent url(../images/default/box/r.gif) repeat-y right;
|
|
2634
|
+
padding-right: 4px;
|
|
2635
|
+
overflow: hidden;
|
|
2636
|
+
}
|
|
2637
|
+
|
|
2638
|
+
.x-box-bl {
|
|
2639
|
+
background: transparent url(../images/default/box/corners.gif) no-repeat 0 -16px;
|
|
2640
|
+
zoom:1;
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2643
|
+
.x-box-bc {
|
|
2644
|
+
background: transparent url(../images/default/box/tb.gif) repeat-x 0 -8px;
|
|
2645
|
+
height: 8px;
|
|
2646
|
+
overflow: hidden;
|
|
2647
|
+
}
|
|
2648
|
+
|
|
2649
|
+
.x-box-br {
|
|
2650
|
+
background: transparent url(../images/default/box/corners.gif) no-repeat right -24px;
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2653
|
+
.x-box-tl, .x-box-bl {
|
|
2654
|
+
padding-left: 8px;
|
|
2655
|
+
overflow: hidden;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
.x-box-tr, .x-box-br {
|
|
2659
|
+
padding-right: 8px;
|
|
2660
|
+
overflow: hidden;
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
|
|
2664
|
+
background-image: url(../images/default/box/corners-blue.gif);
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2667
|
+
.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
|
|
2668
|
+
background-image: url(../images/default/box/tb-blue.gif);
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
.x-box-blue .x-box-mc {
|
|
2672
|
+
background-color: #c3daf9;
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2675
|
+
.x-box-blue .x-box-mc h3 {
|
|
2676
|
+
color: #17385b;
|
|
2677
|
+
}
|
|
2678
|
+
|
|
2679
|
+
.x-box-blue .x-box-ml {
|
|
2680
|
+
background-image: url(../images/default/box/l-blue.gif);
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
.x-box-blue .x-box-mr {
|
|
2684
|
+
background-image: url(../images/default/box/r-blue.gif);
|
|
2685
|
+
}
|
|
2686
|
+
#x-debug-browser .x-tree .x-tree-node a span {
|
|
2687
|
+
color:#222297;
|
|
2688
|
+
font-size:12px;
|
|
2689
|
+
padding-top:2px;
|
|
2690
|
+
font-family:"courier","courier new";
|
|
2691
|
+
line-height:18px;
|
|
2692
|
+
}
|
|
2693
|
+
#x-debug-browser .x-tree a i {
|
|
2694
|
+
color:#FF4545;
|
|
2695
|
+
font-style:normal;
|
|
2696
|
+
}
|
|
2697
|
+
#x-debug-browser .x-tree a em {
|
|
2698
|
+
color:#999;
|
|
2699
|
+
}
|
|
2700
|
+
#x-debug-browser .x-tree .x-tree-node .x-tree-selected a span{
|
|
2701
|
+
background:#c3daf9;
|
|
2702
|
+
}
|
|
2703
|
+
#x-debug-browser pre, .x-debug-browser pre xmp {
|
|
2704
|
+
font:normal 11px tahoma, arial, helvetica, sans-serif !important;
|
|
2705
|
+
white-space: -moz-pre-wrap;
|
|
2706
|
+
white-space: -pre-wrap;
|
|
2707
|
+
white-space: -o-pre-wrap;
|
|
2708
|
+
word-wrap: break-word;
|
|
2709
|
+
}
|
|
2710
|
+
#x-debug-browser pre {
|
|
2711
|
+
display:block;
|
|
2712
|
+
padding:5px !important;
|
|
2713
|
+
border-bottom:1px solid #eeeeee !important;
|
|
2714
|
+
}
|
|
2715
|
+
#x-debug-browser pre xmp {
|
|
2716
|
+
padding:0 !important;
|
|
2717
|
+
margin:0 !important;
|
|
2718
|
+
}
|
|
2719
|
+
#x-debug-console .x-layout-panel-center, #x-debug-inspector .x-layout-panel-center {
|
|
2720
|
+
border-right:1px solid #98c0f4;
|
|
2721
|
+
}
|
|
2722
|
+
#x-debug-console textarea {
|
|
2723
|
+
border: 0 none;
|
|
2724
|
+
font-size:12px;
|
|
2725
|
+
font-family:"courier","courier new";
|
|
2726
|
+
padding-top:4px;
|
|
2727
|
+
padding-left:4px;
|
|
2728
|
+
}
|
|
2729
|
+
.x-debug-frame {
|
|
2730
|
+
background:#eeeeee;
|
|
2731
|
+
border:1px dashed #aaaaaa;
|
|
2732
|
+
}
|
|
2733
|
+
.x-combo-list {
|
|
2734
|
+
border:1px solid #98c0f4;
|
|
2735
|
+
background:#ddecfe;
|
|
2736
|
+
zoom:1;
|
|
2737
|
+
overflow:hidden;
|
|
2738
|
+
}
|
|
2739
|
+
.x-combo-list-inner {
|
|
2740
|
+
overflow:auto;
|
|
2741
|
+
background:white;
|
|
2742
|
+
position:relative;
|
|
2743
|
+
}
|
|
2744
|
+
.x-combo-list-hd {
|
|
2745
|
+
font:bold 11px tahoma, arial, helvetica, sans-serif;
|
|
2746
|
+
color:#15428b;
|
|
2747
|
+
background-image: url(../images/default/layout/panel-title-light-bg.gif);
|
|
2748
|
+
border-bottom:1px solid #98c0f4;
|
|
2749
|
+
padding:3px;
|
|
2750
|
+
}
|
|
2751
|
+
.x-resizable-pinned .x-combo-list-inner {
|
|
2752
|
+
border-bottom:1px solid #98c0f4;
|
|
2753
|
+
}
|
|
2754
|
+
.x-combo-list-item {
|
|
2755
|
+
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
|
2756
|
+
padding:2px;
|
|
2757
|
+
border:1px solid #fff;
|
|
2758
|
+
zoom:1;
|
|
2759
|
+
white-space: nowrap;
|
|
2760
|
+
overflow:hidden;
|
|
2761
|
+
text-overflow: ellipsis;
|
|
2762
|
+
}
|
|
2763
|
+
.x-combo-list .x-combo-selected{
|
|
2764
|
+
background-color: #c3daf9 !important;
|
|
2765
|
+
cursor:pointer;
|
|
2766
|
+
border:1px solid #336699;
|
|
2767
|
+
}
|
|
2768
|
+
.x-combo-noedit{
|
|
2769
|
+
cursor:pointer;
|
|
2770
|
+
}
|
|
2771
|
+
.x-panel-header {
|
|
2772
|
+
overflow:hidden;
|
|
2773
|
+
zoom:1;
|
|
2774
|
+
color:#15428b;
|
|
2775
|
+
font:bold 11px tahoma,arial,verdana,sans-serif;
|
|
2776
|
+
padding:5px 3px 4px 5px;
|
|
2777
|
+
border:1px solid #99bbe8;
|
|
2778
|
+
background: transparent url(../images/default/panel/white-top-bottom.gif) repeat-x 0 -1px;
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2781
|
+
.x-panel-body {
|
|
2782
|
+
border:1px solid #99bbe8;
|
|
2783
|
+
border-top:0 none;
|
|
2784
|
+
overflow:hidden;
|
|
2785
|
+
background:white;
|
|
2786
|
+
}
|
|
2787
|
+
.x-panel-body-noheader {
|
|
2788
|
+
border-top:1px solid #99bbe8;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2791
|
+
.x-panel-header {
|
|
2792
|
+
overflow:hidden;
|
|
2793
|
+
zoom:1;
|
|
2794
|
+
}
|
|
2795
|
+
.x-panel-tl .x-panel-header {
|
|
2796
|
+
color:#15428b;
|
|
2797
|
+
font:bold 11px tahoma,arial,verdana,sans-serif;
|
|
2798
|
+
padding:5px 0 4px 0;
|
|
2799
|
+
border:0 none;
|
|
2800
|
+
background:transparent;
|
|
2801
|
+
}
|
|
2802
|
+
.x-panel-icon {
|
|
2803
|
+
padding-left:18px !important;
|
|
2804
|
+
background-repeat:no-repeat;
|
|
2805
|
+
background-position:0 3px;
|
|
2806
|
+
zoom:1;
|
|
2807
|
+
}
|
|
2808
|
+
.x-panel-tc {
|
|
2809
|
+
background: transparent url(../images/default/panel/white-top-bottom.gif) repeat-x 0 0;
|
|
2810
|
+
overflow:hidden;
|
|
2811
|
+
}
|
|
2812
|
+
.x-panel-tl {
|
|
2813
|
+
background: transparent url(../images/default/panel/white-corners-sprite.gif) no-repeat 0 0;
|
|
2814
|
+
padding-left:6px;
|
|
2815
|
+
zoom:1;
|
|
2816
|
+
border-bottom:1px solid #99bbe8;
|
|
2817
|
+
}
|
|
2818
|
+
.x-panel-tr {
|
|
2819
|
+
background: transparent url(../images/default/panel/white-corners-sprite.gif) no-repeat right 0;
|
|
2820
|
+
padding-right:6px;
|
|
2821
|
+
}
|
|
2822
|
+
.x-panel-bc {
|
|
2823
|
+
background: transparent url(../images/default/panel/white-top-bottom.gif) repeat-x 0 bottom;
|
|
2824
|
+
zoom:1;
|
|
2825
|
+
}
|
|
2826
|
+
.x-panel-bc .x-panel-footer {
|
|
2827
|
+
padding-bottom:6px;
|
|
2828
|
+
zoom:1;
|
|
2829
|
+
}
|
|
2830
|
+
.x-panel-bl {
|
|
2831
|
+
background: transparent url(../images/default/panel/white-corners-sprite.gif) no-repeat 0 bottom;
|
|
2832
|
+
padding-left:6px;
|
|
2833
|
+
zoom:1;
|
|
2834
|
+
}
|
|
2835
|
+
.x-panel-br {
|
|
2836
|
+
background: transparent url(../images/default/panel/white-corners-sprite.gif) no-repeat right bottom;
|
|
2837
|
+
padding-right:6px;
|
|
2838
|
+
zoom:1;
|
|
2839
|
+
}
|
|
2840
|
+
.x-panel-mc {
|
|
2841
|
+
border:0 none;
|
|
2842
|
+
padding:0;
|
|
2843
|
+
margin:0;
|
|
2844
|
+
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
|
2845
|
+
background:white;
|
|
2846
|
+
}
|
|
2847
|
+
.x-panel-mc .x-panel-body {
|
|
2848
|
+
background:transparent;
|
|
2849
|
+
border:0 none;
|
|
2850
|
+
}
|
|
2851
|
+
.x-panel-ml {
|
|
2852
|
+
background: #fff url(../images/default/panel/white-left-right.gif) repeat-y 0 0;
|
|
2853
|
+
padding-left:6px;
|
|
2854
|
+
zoom:1;
|
|
2855
|
+
}
|
|
2856
|
+
.x-panel-mr {
|
|
2857
|
+
background: transparent url(../images/default/panel/white-left-right.gif) repeat-y right 0;
|
|
2858
|
+
padding-right:6px;
|
|
2859
|
+
zoom:1;
|
|
2860
|
+
}
|
|
2861
|
+
.x-panel-blue .x-panel-tl, .x-panel-blue .x-panel-tr, .x-panel-blue .x-panel-bl, .x-panel-blue .x-panel-br {
|
|
2862
|
+
background-image:url(../images/default/panel/corners-sprite.gif);
|
|
2863
|
+
}
|
|
2864
|
+
.x-panel-blue .x-panel-tc, .x-panel-blue .x-panel-bc {
|
|
2865
|
+
background-image:url(../images/default/panel/top-bottom.gif);
|
|
2866
|
+
}
|
|
2867
|
+
.x-panel-blue .x-panel-ml, .x-panel-blue .x-panel-mr {
|
|
2868
|
+
background-image:url(../images/default/panel/left-right.gif);
|
|
2869
|
+
}
|
|
2870
|
+
.x-panel-blue .x-panel-mc{
|
|
2871
|
+
padding-top:6px;
|
|
2872
|
+
background:#dfe8f6;
|
|
2873
|
+
}
|
|
2874
|
+
.x-panel-bwrap {
|
|
2875
|
+
overflow:hidden;
|
|
2876
|
+
}
|
|
2877
|
+
.x-panel-body {
|
|
2878
|
+
overflow:hidden;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
.x-panel-collapsed .x-resizable-handle{
|
|
2882
|
+
display:none;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
.x-tool {
|
|
2886
|
+
overflow:hidden;
|
|
2887
|
+
width:15px;
|
|
2888
|
+
height:15px;
|
|
2889
|
+
float:right;
|
|
2890
|
+
cursor:pointer;
|
|
2891
|
+
background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat;
|
|
2892
|
+
margin-left:2px;
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2895
|
+
.x-tool-toggle {
|
|
2896
|
+
background-position:0 -60px;
|
|
2897
|
+
}
|
|
2898
|
+
.x-tool-toggle-over {
|
|
2899
|
+
background-position:-15px -60px;
|
|
2900
|
+
}
|
|
2901
|
+
.x-panel-collapsed .x-tool-toggle {
|
|
2902
|
+
background-position:0 -75px;
|
|
2903
|
+
}
|
|
2904
|
+
.x-panel-collapsed .x-tool-toggle-over {
|
|
2905
|
+
background-position:-15px -75px;
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2908
|
+
.x-tool-close {
|
|
2909
|
+
background-position:0 -0;
|
|
2910
|
+
}
|
|
2911
|
+
.x-tool-close-over {
|
|
2912
|
+
background-position:-15px 0;
|
|
2913
|
+
}
|
|
2914
|
+
|
|
2915
|
+
.x-tool-minimize {
|
|
2916
|
+
background-position:0 -15px;
|
|
2917
|
+
}
|
|
2918
|
+
.x-tool-minimize-over {
|
|
2919
|
+
background-position:-15px -15px;
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
.x-tool-maximize {
|
|
2923
|
+
background-position:0 -30px;
|
|
2924
|
+
}
|
|
2925
|
+
.x-tool-maximize-over {
|
|
2926
|
+
background-position:-15px -30px;
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2929
|
+
.x-tool-restore {
|
|
2930
|
+
background-position:0 -45px;
|
|
2931
|
+
}
|
|
2932
|
+
.x-tool-restore-over {
|
|
2933
|
+
background-position:-15px -45px;
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2936
|
+
.x-tool-gear {
|
|
2937
|
+
background-position:0 -90px;
|
|
2938
|
+
}
|
|
2939
|
+
.x-tool-gear-over {
|
|
2940
|
+
background-position:-15px -90px;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
.x-panel-ghost {
|
|
2944
|
+
background:#cbddf3;
|
|
2945
|
+
z-index:12000;
|
|
2946
|
+
overflow:hidden;
|
|
2947
|
+
position:absolute;
|
|
2948
|
+
left:0;top:0;
|
|
2949
|
+
opacity:.65;
|
|
2950
|
+
-moz-opacity:.65;
|
|
2951
|
+
filter:alpha(opacity=65);
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
.x-panel-ghost ul {
|
|
2955
|
+
margin:0;
|
|
2956
|
+
padding:0;
|
|
2957
|
+
overflow:hidden;
|
|
2958
|
+
font-size:0;
|
|
2959
|
+
line-height:0;
|
|
2960
|
+
border:1px solid #84a0c4;
|
|
2961
|
+
border-top:0 none;
|
|
2962
|
+
display:block;
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2965
|
+
.x-panel-ghost * {
|
|
2966
|
+
cursor:move !important;
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
|
|
2970
|
+
|
|
2971
|
+
|
|
2972
|
+
.x-panel-btns-ct {
|
|
2973
|
+
padding:5px;
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2976
|
+
.x-panel-btns-ct .x-btn{
|
|
2977
|
+
float:right;
|
|
2978
|
+
clear:none;
|
|
2979
|
+
}
|
|
2980
|
+
.x-panel-btns-ct .x-panel-btns td {
|
|
2981
|
+
border:0;
|
|
2982
|
+
padding:0;
|
|
2983
|
+
}
|
|
2984
|
+
.x-panel-btns-ct .x-panel-btns-right table{
|
|
2985
|
+
float:right;
|
|
2986
|
+
clear:none;
|
|
2987
|
+
}
|
|
2988
|
+
.x-panel-btns-ct .x-panel-btns-left table{
|
|
2989
|
+
float:left;
|
|
2990
|
+
clear:none;
|
|
2991
|
+
}
|
|
2992
|
+
.x-panel-btns-ct .x-panel-btns-center{
|
|
2993
|
+
text-align:center;
|
|
2994
|
+
}
|
|
2995
|
+
.x-panel-btns-ct .x-panel-btns-center table{
|
|
2996
|
+
margin:0 auto;
|
|
2997
|
+
}
|
|
2998
|
+
.x-panel-btns-ct table td.x-panel-btn-td{
|
|
2999
|
+
padding:3px;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
.x-panel-btns-ct .x-btn-focus .x-btn-left{
|
|
3003
|
+
background-position:0 -147px;
|
|
3004
|
+
}
|
|
3005
|
+
.x-panel-btns-ct .x-btn-focus .x-btn-right{
|
|
3006
|
+
background-position:0 -168px;
|
|
3007
|
+
}
|
|
3008
|
+
.x-panel-btns-ct .x-btn-focus .x-btn-center{
|
|
3009
|
+
background-position:0 -189px;
|
|
3010
|
+
}
|
|
3011
|
+
|
|
3012
|
+
.x-panel-btns-ct .x-btn-click .x-btn-center{
|
|
3013
|
+
background-position:0 -126px;
|
|
3014
|
+
}
|
|
3015
|
+
.x-panel-btns-ct .x-btn-click .x-btn-right{
|
|
3016
|
+
background-position:0 -84px;
|
|
3017
|
+
}
|
|
3018
|
+
.x-panel-btns-ct .x-btn-click .x-btn-left{
|
|
3019
|
+
background-position:0 -63px;
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
.x-window .x-resizable-handle {
|
|
3023
|
+
opacity:0;
|
|
3024
|
+
-moz-opacity:0;
|
|
3025
|
+
filter:alpha(opacity=0);
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
.x-window-proxy {
|
|
3029
|
+
background:#C7DFFC;
|
|
3030
|
+
border:1px solid #99bbe8;
|
|
3031
|
+
z-index:12000;
|
|
3032
|
+
overflow:hidden;
|
|
3033
|
+
position:absolute;
|
|
3034
|
+
left:0;top:0;
|
|
3035
|
+
display:none;
|
|
3036
|
+
opacity:.5;
|
|
3037
|
+
-moz-opacity:.5;
|
|
3038
|
+
filter:alpha(opacity=50);
|
|
3039
|
+
}
|
|
3040
|
+
|
|
3041
|
+
.x-window-header {
|
|
3042
|
+
overflow:hidden;
|
|
3043
|
+
zoom:1;
|
|
3044
|
+
}
|
|
3045
|
+
.x-window-bwrap {
|
|
3046
|
+
z-index:1;
|
|
3047
|
+
position:relative;
|
|
3048
|
+
zoom:1;
|
|
3049
|
+
}
|
|
3050
|
+
.x-window-tl .x-window-header {
|
|
3051
|
+
color:#15428b;
|
|
3052
|
+
font:bold 11px tahoma,arial,verdana,sans-serif;
|
|
3053
|
+
padding:5px 0 4px 0;
|
|
3054
|
+
}
|
|
3055
|
+
.x-window-header-text {
|
|
3056
|
+
cursor:pointer;
|
|
3057
|
+
}
|
|
3058
|
+
.x-window-tc {
|
|
3059
|
+
background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 0;
|
|
3060
|
+
overflow:hidden;
|
|
3061
|
+
zoom:1;
|
|
3062
|
+
}
|
|
3063
|
+
.x-window-tl {
|
|
3064
|
+
background: transparent url(../images/default/window/left-corners.png) no-repeat 0 0;
|
|
3065
|
+
padding-left:6px;
|
|
3066
|
+
zoom:1;
|
|
3067
|
+
z-index:1;
|
|
3068
|
+
position:relative;
|
|
3069
|
+
}
|
|
3070
|
+
.x-window-tr {
|
|
3071
|
+
background: transparent url(../images/default/window/right-corners.png) no-repeat right 0;
|
|
3072
|
+
padding-right:6px;
|
|
3073
|
+
}
|
|
3074
|
+
.x-window-bc {
|
|
3075
|
+
background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 bottom;
|
|
3076
|
+
zoom:1;
|
|
3077
|
+
}
|
|
3078
|
+
.x-window-bc .x-window-footer {
|
|
3079
|
+
padding-bottom:6px;
|
|
3080
|
+
zoom:1;
|
|
3081
|
+
font-size:0;
|
|
3082
|
+
line-height:0;
|
|
3083
|
+
}
|
|
3084
|
+
.x-window-bl {
|
|
3085
|
+
background: transparent url(../images/default/window/left-corners.png) no-repeat 0 bottom;
|
|
3086
|
+
padding-left:6px;
|
|
3087
|
+
zoom:1;
|
|
3088
|
+
}
|
|
3089
|
+
.x-window-br {
|
|
3090
|
+
background: transparent url(../images/default/window/right-corners.png) no-repeat right bottom;
|
|
3091
|
+
padding-right:6px;
|
|
3092
|
+
zoom:1;
|
|
3093
|
+
}
|
|
3094
|
+
.x-window-mc {
|
|
3095
|
+
border:0 none;
|
|
3096
|
+
padding:0;
|
|
3097
|
+
margin:0;
|
|
3098
|
+
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
|
3099
|
+
background:#dfe8f6;
|
|
3100
|
+
}
|
|
3101
|
+
.x-window-ml {
|
|
3102
|
+
background: transparent url(../images/default/window/left-right.png) repeat-y 0 0;
|
|
3103
|
+
padding-left:6px;
|
|
3104
|
+
zoom:1;
|
|
3105
|
+
}
|
|
3106
|
+
.x-window-mr {
|
|
3107
|
+
background: transparent url(../images/default/window/left-right.png) repeat-y right 0;
|
|
3108
|
+
padding-right:6px;
|
|
3109
|
+
zoom:1;
|
|
3110
|
+
}
|
|
3111
|
+
.x-window-mc {
|
|
3112
|
+
border:1px solid #99bbe8;
|
|
3113
|
+
}
|
|
3114
|
+
.x-window-body {
|
|
3115
|
+
overflow:hidden;
|
|
3116
|
+
}
|
|
3117
|
+
.x-window-bwrap {
|
|
3118
|
+
overflow:hidden;
|
|
3119
|
+
}
|
|
3120
|
+
.x-window-maximized .x-window-bl, .x-window-maximized .x-window-br,
|
|
3121
|
+
.x-window-maximized .x-window-ml, .x-window-maximized .x-window-mr,
|
|
3122
|
+
.x-window-maximized .x-window-tl, .x-window-maximized .x-window-tr {
|
|
3123
|
+
padding:0;
|
|
3124
|
+
}
|
|
3125
|
+
.x-window-maximized .x-window-footer {
|
|
3126
|
+
padding-bottom:0;
|
|
3127
|
+
}
|
|
3128
|
+
.x-window-maximized .x-window-tc {
|
|
3129
|
+
padding-left:3px;
|
|
3130
|
+
padding-right:3px;
|
|
3131
|
+
}
|
|
3132
|
+
.x-window-maximized .x-window-mc {
|
|
3133
|
+
border-left:0 none;
|
|
3134
|
+
border-right:0 none;
|
|
3135
|
+
}
|
|
3136
|
+
.x-window-tbar .x-toolbar, .x-window-bbar .x-toolbar {
|
|
3137
|
+
border-left:0 none;
|
|
3138
|
+
border-right: 0 none;
|
|
3139
|
+
}
|
|
3140
|
+
.x-window-bbar .x-toolbar {
|
|
3141
|
+
border-top:1px solid #99bbe8;
|
|
3142
|
+
border-bottom:0 none;
|
|
3143
|
+
}
|
|
3144
|
+
.x-window-draggable, .x-window-draggable .x-window-header-text {
|
|
3145
|
+
cursor:move;
|
|
3146
|
+
}
|
|
3147
|
+
.x-window-maximized .x-window-draggable, .x-window-maximized .x-window-draggable .x-window-header-text {
|
|
3148
|
+
cursor:default;
|
|
3149
|
+
}
|
|
3150
|
+
.x-window-body {
|
|
3151
|
+
background:transparent;
|
|
3152
|
+
}
|
|
3153
|
+
.x-panel-ghost .x-window-tl {
|
|
3154
|
+
border-bottom:1px solid #99bbe8;
|
|
3155
|
+
}
|
|
3156
|
+
.x-panel-collapsed .x-window-tl {
|
|
3157
|
+
border-bottom:1px solid #84a0c4;
|
|
3158
|
+
}
|
|
3159
|
+
.x-window-maximized-ct {
|
|
3160
|
+
overflow:hidden;
|
|
3161
|
+
}
|
|
3162
|
+
.x-window-maximized .x-resizable-handle {
|
|
3163
|
+
display:none;
|
|
3164
|
+
}
|
|
3165
|
+
.x-window-sizing-ghost ul {
|
|
3166
|
+
border:0 none !important;
|
|
3167
|
+
}
|