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,179 @@
|
|
|
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-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{
|
|
10
|
+
border: 0 none;
|
|
11
|
+
height: 18px;
|
|
12
|
+
margin: 0;
|
|
13
|
+
padding: 0;
|
|
14
|
+
vertical-align: middle;
|
|
15
|
+
width: 16px;
|
|
16
|
+
background-repeat: no-repeat;
|
|
17
|
+
}
|
|
18
|
+
.x-tree-node-collapsed .x-tree-node-icon, .x-tree-node-expanded .x-tree-node-icon, .x-tree-node-leaf .x-tree-node-icon{
|
|
19
|
+
border: 0 none;
|
|
20
|
+
height: 18px;
|
|
21
|
+
margin: 0;
|
|
22
|
+
padding: 0;
|
|
23
|
+
vertical-align: middle;
|
|
24
|
+
width: 16px;
|
|
25
|
+
background-position:center;
|
|
26
|
+
background-repeat: no-repeat;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* some default icons for leaf/folder */
|
|
30
|
+
.x-tree-node-collapsed .x-tree-node-icon{
|
|
31
|
+
background-image:url(../images/default/tree/folder.gif);
|
|
32
|
+
}
|
|
33
|
+
.x-tree-node-expanded .x-tree-node-icon{
|
|
34
|
+
background-image:url(../images/default/tree/folder-open.gif);
|
|
35
|
+
}
|
|
36
|
+
.x-tree-node-leaf .x-tree-node-icon{
|
|
37
|
+
background-image:url(../images/default/tree/leaf.gif);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.x-tree-noicon .x-tree-node-icon{
|
|
41
|
+
width:0; height:0;
|
|
42
|
+
}
|
|
43
|
+
/* loading icon */
|
|
44
|
+
.x-tree-node-loading .x-tree-node-icon{
|
|
45
|
+
background-image:url(../images/default/tree/loading.gif) !important;
|
|
46
|
+
}
|
|
47
|
+
.x-tree-node-loading a span{
|
|
48
|
+
font-style: italic;
|
|
49
|
+
color:#444444;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* Line styles */
|
|
53
|
+
.x-tree-lines .x-tree-elbow{
|
|
54
|
+
background-image:url(../images/default/tree/elbow.gif);
|
|
55
|
+
}
|
|
56
|
+
.x-tree-lines .x-tree-elbow-plus{
|
|
57
|
+
background-image:url(../images/default/tree/elbow-plus.gif);
|
|
58
|
+
}
|
|
59
|
+
.x-tree-lines .x-tree-elbow-minus{
|
|
60
|
+
background-image:url(../images/default/tree/elbow-minus.gif);
|
|
61
|
+
}
|
|
62
|
+
.x-tree-lines .x-tree-elbow-end{
|
|
63
|
+
background-image:url(../images/default/tree/elbow-end.gif);
|
|
64
|
+
}
|
|
65
|
+
.x-tree-lines .x-tree-elbow-end-plus{
|
|
66
|
+
background-image:url(../images/default/tree/elbow-end-plus.gif);
|
|
67
|
+
}
|
|
68
|
+
.x-tree-lines .x-tree-elbow-end-minus{
|
|
69
|
+
background-image:url(../images/default/tree/elbow-end-minus.gif);
|
|
70
|
+
}
|
|
71
|
+
.x-tree-lines .x-tree-elbow-line{
|
|
72
|
+
background-image:url(../images/default/tree/elbow-line.gif);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* No line styles */
|
|
76
|
+
.x-tree-no-lines .x-tree-elbow{
|
|
77
|
+
background:transparent;
|
|
78
|
+
}
|
|
79
|
+
.x-tree-no-lines .x-tree-elbow-plus{
|
|
80
|
+
background-image:url(../images/default/tree/elbow-plus-nl.gif);
|
|
81
|
+
}
|
|
82
|
+
.x-tree-no-lines .x-tree-elbow-minus{
|
|
83
|
+
background-image:url(../images/default/tree/elbow-minus-nl.gif);
|
|
84
|
+
}
|
|
85
|
+
.x-tree-no-lines .x-tree-elbow-end{
|
|
86
|
+
background:transparent;
|
|
87
|
+
}
|
|
88
|
+
.x-tree-no-lines .x-tree-elbow-end-plus{
|
|
89
|
+
background-image:url(../images/default/tree/elbow-end-plus-nl.gif);
|
|
90
|
+
}
|
|
91
|
+
.x-tree-no-lines .x-tree-elbow-end-minus{
|
|
92
|
+
background-image:url(../images/default/tree/elbow-end-minus-nl.gif);
|
|
93
|
+
}
|
|
94
|
+
.x-tree-no-lines .x-tree-elbow-line{
|
|
95
|
+
background:transparent;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.x-tree-elbow-plus, .x-tree-elbow-minus, .x-tree-elbow-end-plus, .x-tree-elbow-end-minus{
|
|
99
|
+
cursor:pointer;
|
|
100
|
+
}
|
|
101
|
+
.ext-ie ul.x-tree-node-ct{
|
|
102
|
+
font-size:0;
|
|
103
|
+
line-height:0;
|
|
104
|
+
}
|
|
105
|
+
.x-tree-node{
|
|
106
|
+
color: black;
|
|
107
|
+
font: normal 11px arial, tahoma, helvetica, sans-serif;
|
|
108
|
+
white-space: nowrap;
|
|
109
|
+
}
|
|
110
|
+
.x-tree-node a, .x-dd-drag-ghost a{
|
|
111
|
+
text-decoration:none;
|
|
112
|
+
color:black;
|
|
113
|
+
-khtml-user-select:none;
|
|
114
|
+
-moz-user-select:none;
|
|
115
|
+
-kthml-user-focus:normal;
|
|
116
|
+
-moz-user-focus:normal;
|
|
117
|
+
-moz-outline: 0 none;
|
|
118
|
+
outline:0 none;
|
|
119
|
+
}
|
|
120
|
+
.x-tree-node a span, .x-dd-drag-ghost a span{
|
|
121
|
+
text-decoration:none;
|
|
122
|
+
color:black;
|
|
123
|
+
padding:1px 3px 1px 2px;
|
|
124
|
+
}
|
|
125
|
+
.x-tree-node .x-tree-node-disabled a span{
|
|
126
|
+
color:gray !important;
|
|
127
|
+
}
|
|
128
|
+
.x-tree-node .x-tree-node-disabled .x-tree-node-icon{
|
|
129
|
+
-moz-opacity: 0.5;
|
|
130
|
+
opacity:.5;
|
|
131
|
+
filter: alpha(opacity=50);
|
|
132
|
+
}
|
|
133
|
+
.x-tree-node .x-tree-node-inline-icon{
|
|
134
|
+
background:transparent;
|
|
135
|
+
}
|
|
136
|
+
.x-tree-node a:hover, .x-dd-drag-ghost a:hover{
|
|
137
|
+
text-decoration:none;
|
|
138
|
+
}
|
|
139
|
+
.x-tree-node div.x-tree-drag-insert-below{
|
|
140
|
+
border-bottom:1px dotted #3366cc;
|
|
141
|
+
}
|
|
142
|
+
.x-tree-node div.x-tree-drag-insert-above{
|
|
143
|
+
border-top:1px dotted #3366cc;
|
|
144
|
+
}
|
|
145
|
+
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below{
|
|
146
|
+
border-bottom:0 none;
|
|
147
|
+
}
|
|
148
|
+
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above{
|
|
149
|
+
border-top:0 none;
|
|
150
|
+
}
|
|
151
|
+
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a{
|
|
152
|
+
border-bottom:2px solid #3366cc;
|
|
153
|
+
}
|
|
154
|
+
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a{
|
|
155
|
+
border-top:2px solid #3366cc;
|
|
156
|
+
}
|
|
157
|
+
.x-tree-node .x-tree-drag-append a span{
|
|
158
|
+
background:#dddddd;
|
|
159
|
+
border:1px dotted gray;
|
|
160
|
+
}
|
|
161
|
+
.x-tree-node .x-tree-selected a span{
|
|
162
|
+
background:#3366cc;
|
|
163
|
+
color:white;
|
|
164
|
+
}
|
|
165
|
+
.x-dd-drag-ghost .x-tree-node-indent, .x-dd-drag-ghost .x-tree-ec-icon{
|
|
166
|
+
display:none !important;
|
|
167
|
+
}
|
|
168
|
+
.x-tree-drop-ok-append .x-dd-drop-icon{
|
|
169
|
+
background-image: url(../images/default/tree/drop-add.gif);
|
|
170
|
+
}
|
|
171
|
+
.x-tree-drop-ok-above .x-dd-drop-icon{
|
|
172
|
+
background-image: url(../images/default/tree/drop-over.gif);
|
|
173
|
+
}
|
|
174
|
+
.x-tree-drop-ok-below .x-dd-drop-icon{
|
|
175
|
+
background-image: url(../images/default/tree/drop-under.gif);
|
|
176
|
+
}
|
|
177
|
+
.x-tree-drop-ok-between .x-dd-drop-icon{
|
|
178
|
+
background-image: url(../images/default/tree/drop-between.gif);
|
|
179
|
+
}
|
|
@@ -0,0 +1,155 @@
|
|
|
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
|
+
|
|
10
|
+
.x-window .x-resizable-handle {
|
|
11
|
+
opacity:0;
|
|
12
|
+
-moz-opacity:0;
|
|
13
|
+
filter:alpha(opacity=0);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.x-window-proxy {
|
|
17
|
+
background:#C7DFFC;
|
|
18
|
+
border:1px solid #99bbe8;
|
|
19
|
+
z-index:12000;
|
|
20
|
+
overflow:hidden;
|
|
21
|
+
position:absolute;
|
|
22
|
+
left:0;top:0;
|
|
23
|
+
display:none;
|
|
24
|
+
opacity:.5;
|
|
25
|
+
-moz-opacity:.5;
|
|
26
|
+
filter:alpha(opacity=50);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.x-window-header {
|
|
30
|
+
overflow:hidden;
|
|
31
|
+
zoom:1;
|
|
32
|
+
}
|
|
33
|
+
.x-window-bwrap {
|
|
34
|
+
z-index:1;
|
|
35
|
+
position:relative;
|
|
36
|
+
zoom:1;
|
|
37
|
+
}
|
|
38
|
+
.x-window-tl .x-window-header {
|
|
39
|
+
color:#15428b;
|
|
40
|
+
font:bold 11px tahoma,arial,verdana,sans-serif;
|
|
41
|
+
padding:5px 0 4px 0;
|
|
42
|
+
}
|
|
43
|
+
.x-window-header-text {
|
|
44
|
+
cursor:pointer;
|
|
45
|
+
}
|
|
46
|
+
.x-window-tc {
|
|
47
|
+
background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 0;
|
|
48
|
+
overflow:hidden;
|
|
49
|
+
zoom:1;
|
|
50
|
+
}
|
|
51
|
+
.x-window-tl {
|
|
52
|
+
background: transparent url(../images/default/window/left-corners.png) no-repeat 0 0;
|
|
53
|
+
padding-left:6px;
|
|
54
|
+
zoom:1;
|
|
55
|
+
z-index:1;
|
|
56
|
+
position:relative;
|
|
57
|
+
}
|
|
58
|
+
.x-window-tr {
|
|
59
|
+
background: transparent url(../images/default/window/right-corners.png) no-repeat right 0;
|
|
60
|
+
padding-right:6px;
|
|
61
|
+
}
|
|
62
|
+
.x-window-bc {
|
|
63
|
+
background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 bottom;
|
|
64
|
+
zoom:1;
|
|
65
|
+
}
|
|
66
|
+
.x-window-bc .x-window-footer {
|
|
67
|
+
padding-bottom:6px;
|
|
68
|
+
zoom:1;
|
|
69
|
+
font-size:0;
|
|
70
|
+
line-height:0;
|
|
71
|
+
}
|
|
72
|
+
.x-window-bl {
|
|
73
|
+
background: transparent url(../images/default/window/left-corners.png) no-repeat 0 bottom;
|
|
74
|
+
padding-left:6px;
|
|
75
|
+
zoom:1;
|
|
76
|
+
}
|
|
77
|
+
.x-window-br {
|
|
78
|
+
background: transparent url(../images/default/window/right-corners.png) no-repeat right bottom;
|
|
79
|
+
padding-right:6px;
|
|
80
|
+
zoom:1;
|
|
81
|
+
}
|
|
82
|
+
.x-window-mc {
|
|
83
|
+
border:0 none;
|
|
84
|
+
padding:0;
|
|
85
|
+
margin:0;
|
|
86
|
+
font: normal 11px tahoma,arial,helvetica,sans-serif;
|
|
87
|
+
background:#dfe8f6;
|
|
88
|
+
}
|
|
89
|
+
.x-window-ml {
|
|
90
|
+
background: transparent url(../images/default/window/left-right.png) repeat-y 0 0;
|
|
91
|
+
padding-left:6px;
|
|
92
|
+
zoom:1;
|
|
93
|
+
}
|
|
94
|
+
.x-window-mr {
|
|
95
|
+
background: transparent url(../images/default/window/left-right.png) repeat-y right 0;
|
|
96
|
+
padding-right:6px;
|
|
97
|
+
zoom:1;
|
|
98
|
+
}
|
|
99
|
+
.x-window-mc {
|
|
100
|
+
border:1px solid #99bbe8;
|
|
101
|
+
}
|
|
102
|
+
.x-window-body {
|
|
103
|
+
overflow:hidden;
|
|
104
|
+
}
|
|
105
|
+
.x-window-bwrap {
|
|
106
|
+
overflow:hidden;
|
|
107
|
+
}
|
|
108
|
+
.x-window-maximized .x-window-bl, .x-window-maximized .x-window-br,
|
|
109
|
+
.x-window-maximized .x-window-ml, .x-window-maximized .x-window-mr,
|
|
110
|
+
.x-window-maximized .x-window-tl, .x-window-maximized .x-window-tr {
|
|
111
|
+
padding:0;
|
|
112
|
+
}
|
|
113
|
+
.x-window-maximized .x-window-footer {
|
|
114
|
+
padding-bottom:0;
|
|
115
|
+
}
|
|
116
|
+
.x-window-maximized .x-window-tc {
|
|
117
|
+
padding-left:3px;
|
|
118
|
+
padding-right:3px;
|
|
119
|
+
}
|
|
120
|
+
.x-window-maximized .x-window-mc {
|
|
121
|
+
border-left:0 none;
|
|
122
|
+
border-right:0 none;
|
|
123
|
+
}
|
|
124
|
+
.x-window-tbar .x-toolbar, .x-window-bbar .x-toolbar {
|
|
125
|
+
border-left:0 none;
|
|
126
|
+
border-right: 0 none;
|
|
127
|
+
}
|
|
128
|
+
.x-window-bbar .x-toolbar {
|
|
129
|
+
border-top:1px solid #99bbe8;
|
|
130
|
+
border-bottom:0 none;
|
|
131
|
+
}
|
|
132
|
+
.x-window-draggable, .x-window-draggable .x-window-header-text {
|
|
133
|
+
cursor:move;
|
|
134
|
+
}
|
|
135
|
+
.x-window-maximized .x-window-draggable, .x-window-maximized .x-window-draggable .x-window-header-text {
|
|
136
|
+
cursor:default;
|
|
137
|
+
}
|
|
138
|
+
.x-window-body {
|
|
139
|
+
background:transparent;
|
|
140
|
+
}
|
|
141
|
+
.x-panel-ghost .x-window-tl {
|
|
142
|
+
border-bottom:1px solid #99bbe8;
|
|
143
|
+
}
|
|
144
|
+
.x-panel-collapsed .x-window-tl {
|
|
145
|
+
border-bottom:1px solid #84a0c4;
|
|
146
|
+
}
|
|
147
|
+
.x-window-maximized-ct {
|
|
148
|
+
overflow:hidden;
|
|
149
|
+
}
|
|
150
|
+
.x-window-maximized .x-resizable-handle {
|
|
151
|
+
display:none;
|
|
152
|
+
}
|
|
153
|
+
.x-window-sizing-ghost ul {
|
|
154
|
+
border:0 none !important;
|
|
155
|
+
}
|
|
@@ -0,0 +1,581 @@
|
|
|
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
|
+
/* menus */
|
|
10
|
+
.x-menu {
|
|
11
|
+
border:1px solid;
|
|
12
|
+
border-color: #96b9e6 #8BB8F3 #8BB8F3 #96b9e6;
|
|
13
|
+
z-index: 15000;
|
|
14
|
+
zoom:1;
|
|
15
|
+
background:#c3daf9;
|
|
16
|
+
padding:2px;
|
|
17
|
+
|
|
18
|
+
}
|
|
19
|
+
.x-menu-list{
|
|
20
|
+
background: #fafafa;
|
|
21
|
+
border:1px solid #fff;
|
|
22
|
+
border-color:#a3bad9;
|
|
23
|
+
}
|
|
24
|
+
.x-menu-item-icon {
|
|
25
|
+
margin-right:8px;
|
|
26
|
+
}
|
|
27
|
+
.x-menu-sep {
|
|
28
|
+
margin-left:3px;
|
|
29
|
+
}
|
|
30
|
+
.x-menu-item-active {
|
|
31
|
+
color:#233d6d;
|
|
32
|
+
background:#c3daf9;
|
|
33
|
+
border:1px solid #fff;
|
|
34
|
+
padding:0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.x-date-mmenu .x-menu-list{
|
|
38
|
+
padding:0;
|
|
39
|
+
}
|
|
40
|
+
.x-date-mmenu .x-menu-list{
|
|
41
|
+
border:0 none;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.x-menu .x-color-palette, .x-menu .x-date-picker{
|
|
45
|
+
margin-left:26px;
|
|
46
|
+
}
|
|
47
|
+
.x-menu-plain .x-color-palette, .x-menu-plain .x-date-picker{
|
|
48
|
+
margin:0;
|
|
49
|
+
border:0 none;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Tabs
|
|
53
|
+
*/
|
|
54
|
+
.x-tabs-wrap, .x-layout-panel .x-tabs-top .x-tabs-wrap {
|
|
55
|
+
background:#deecfd;
|
|
56
|
+
border:1px solid #8db2e3;
|
|
57
|
+
padding-bottom:2px;
|
|
58
|
+
padding-top:0;
|
|
59
|
+
}
|
|
60
|
+
.x-tabs-strip-wrap{
|
|
61
|
+
padding-top:1px;
|
|
62
|
+
background:#cedff5 url(../images/aero/tabs/tab-strip-bg.gif) repeat-x bottom;
|
|
63
|
+
border-bottom:1px solid #8db2e3;
|
|
64
|
+
}
|
|
65
|
+
.x-tabs-strip .x-tabs-text {
|
|
66
|
+
color:#15428b;
|
|
67
|
+
font:bold 11px tahoma,arial,verdana,sans-serif;
|
|
68
|
+
}
|
|
69
|
+
.x-tabs-strip .on .x-tabs-text {
|
|
70
|
+
cursor:default;
|
|
71
|
+
color:#15428b;
|
|
72
|
+
}
|
|
73
|
+
.x-tabs-top .x-tabs-strip .on .x-tabs-right {
|
|
74
|
+
background: url(../images/aero/tabs/tab-sprite.gif) no-repeat right 0;
|
|
75
|
+
}
|
|
76
|
+
.x-tabs-top .x-tabs-strip .on .x-tabs-left,.x-tabs-top .x-tabs-strip .on a:hover .x-tabs-left{
|
|
77
|
+
background: url(../images/aero/tabs/tab-sprite.gif) no-repeat 0 -100px;
|
|
78
|
+
}
|
|
79
|
+
.x-tabs-top .x-tabs-strip .x-tabs-right {
|
|
80
|
+
background:transparent url(../images/aero/tabs/tab-sprite.gif) no-repeat right -50px;
|
|
81
|
+
}
|
|
82
|
+
.x-tabs-top .x-tabs-strip .x-tabs-left {
|
|
83
|
+
background:transparent url(../images/aero/tabs/tab-sprite.gif) no-repeat 0 -150px;
|
|
84
|
+
}
|
|
85
|
+
.x-tabs-top .x-tabs-body {
|
|
86
|
+
border:1px solid #8db2e3;
|
|
87
|
+
border-top:0 none;
|
|
88
|
+
}
|
|
89
|
+
.x-tabs-bottom .x-tabs-wrap, .x-layout-panel .x-tabs-bottom .x-tabs-wrap {
|
|
90
|
+
background:#deecfd;
|
|
91
|
+
border:1px solid #8db2e3;
|
|
92
|
+
padding-top:2px;
|
|
93
|
+
padding-bottom:0;
|
|
94
|
+
}
|
|
95
|
+
.x-tabs-bottom .x-tabs-strip-wrap{
|
|
96
|
+
padding-top:0;
|
|
97
|
+
padding-bottom:1px;
|
|
98
|
+
background:#cedff5 url(../images/aero/tabs/tab-strip-btm-bg.gif) repeat-x top;
|
|
99
|
+
border-top:1px solid #8db2e3;
|
|
100
|
+
border-bottom:0 none;
|
|
101
|
+
}
|
|
102
|
+
.x-tabs-bottom .x-tabs-strip .x-tabs-right {
|
|
103
|
+
background:transparent url(../images/aero/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom right;
|
|
104
|
+
}
|
|
105
|
+
.x-tabs-bottom .x-tabs-strip .x-tabs-left {
|
|
106
|
+
background:transparent url(../images/aero/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom left;
|
|
107
|
+
}
|
|
108
|
+
.x-tabs-bottom .x-tabs-strip .on .x-tabs-right,.x-tabs-bottom .x-tabs-strip .on a:hover {
|
|
109
|
+
background: url(../images/aero/tabs/tab-btm-right-bg.gif) no-repeat bottom left;
|
|
110
|
+
}
|
|
111
|
+
.x-tabs-bottom .x-tabs-strip .on .x-tabs-left,.x-tabs-bottom .x-tabs-strip .on a:hover .x-tabs-left {
|
|
112
|
+
background: url(../images/aero/tabs/tab-btm-left-bg.gif) no-repeat bottom right;
|
|
113
|
+
}
|
|
114
|
+
.x-tabs-bottom .x-tabs-body {
|
|
115
|
+
border:1px solid #8db2e3;
|
|
116
|
+
border-bottom:0 none;
|
|
117
|
+
}
|
|
118
|
+
/*
|
|
119
|
+
* Basic-Dialog
|
|
120
|
+
*/
|
|
121
|
+
.x-dlg-proxy {
|
|
122
|
+
background:#C7DFFC;
|
|
123
|
+
border:1px solid #A5CCF9;
|
|
124
|
+
}
|
|
125
|
+
.x-dlg-shadow{
|
|
126
|
+
background:#cccccc;
|
|
127
|
+
opacity:.3;
|
|
128
|
+
-moz-opacity:.3;
|
|
129
|
+
filter: alpha(opacity=30);
|
|
130
|
+
}
|
|
131
|
+
.x-dlg {
|
|
132
|
+
background:transparent;
|
|
133
|
+
}
|
|
134
|
+
.x-dlg .x-dlg-hd {
|
|
135
|
+
background: url(../images/aero/basic-dialog/hd-sprite.gif) repeat-x 0 -82px;
|
|
136
|
+
background-color:#aabaca;
|
|
137
|
+
color:#15428b;
|
|
138
|
+
zoom:1;
|
|
139
|
+
padding-top:7px;
|
|
140
|
+
}
|
|
141
|
+
.x-dlg .x-dlg-hd-left {
|
|
142
|
+
opacity:.85;
|
|
143
|
+
-moz-opacity:.85;
|
|
144
|
+
filter:alpha(opacity=80);
|
|
145
|
+
background: url(../images/aero/basic-dialog/hd-sprite.gif) no-repeat 0 -41px;
|
|
146
|
+
zoom:1;
|
|
147
|
+
}
|
|
148
|
+
.x-dlg-modal .x-dlg-hd-left {
|
|
149
|
+
opacity:.75;
|
|
150
|
+
-moz-opacity:.75;
|
|
151
|
+
filter:alpha(opacity=70);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.x-dlg .x-dlg-hd-right {
|
|
155
|
+
background: url(../images/aero/basic-dialog/hd-sprite.gif) no-repeat right 0;
|
|
156
|
+
zoom:1;
|
|
157
|
+
}
|
|
158
|
+
.x-dlg .x-dlg-dlg-body{
|
|
159
|
+
padding:0 0 0;
|
|
160
|
+
position:absolute;
|
|
161
|
+
top:24px;left:0;
|
|
162
|
+
z-index:1;
|
|
163
|
+
border:0 none;
|
|
164
|
+
background:transparent;
|
|
165
|
+
}
|
|
166
|
+
.x-dlg .x-dlg-bd{
|
|
167
|
+
background:#fff;
|
|
168
|
+
border:1px solid #96b9e6;
|
|
169
|
+
}
|
|
170
|
+
.x-dlg .x-dlg-ft{
|
|
171
|
+
border:0 none;
|
|
172
|
+
background:transparent;
|
|
173
|
+
padding-bottom:8px;
|
|
174
|
+
}
|
|
175
|
+
.x-dlg .x-dlg-bg{
|
|
176
|
+
filter:alpha(opacity=80);
|
|
177
|
+
opacity:.85;
|
|
178
|
+
-moz-opacity:.85;
|
|
179
|
+
zoom:1;
|
|
180
|
+
}
|
|
181
|
+
.x-dlg-modal .x-dlg-bg {
|
|
182
|
+
opacity:.75;
|
|
183
|
+
-moz-opacity:.75;
|
|
184
|
+
filter:alpha(opacity=70);
|
|
185
|
+
}
|
|
186
|
+
.x-dlg .x-dlg-bg-center {
|
|
187
|
+
padding: 2px 7px 7px 7px;
|
|
188
|
+
background:transparent url(../images/aero/basic-dialog/bg-center.gif) repeat-x bottom;
|
|
189
|
+
zoom:1;
|
|
190
|
+
}
|
|
191
|
+
.x-dlg .x-dlg-bg-left{
|
|
192
|
+
padding-left:7px;
|
|
193
|
+
background:transparent url(../images/aero/basic-dialog/bg-left.gif) no-repeat bottom left;
|
|
194
|
+
zoom:1;
|
|
195
|
+
}
|
|
196
|
+
.x-dlg .x-dlg-bg-right{
|
|
197
|
+
padding-right:7px;
|
|
198
|
+
background:transparent url(../images/aero/basic-dialog/bg-right.gif) no-repeat bottom right;
|
|
199
|
+
zoom:1;
|
|
200
|
+
}
|
|
201
|
+
.x-dlg-auto-tabs .x-dlg-dlg-body, .x-dlg-auto-layout .x-dlg-dlg-body{
|
|
202
|
+
background:transparent;
|
|
203
|
+
border:0 none;
|
|
204
|
+
}
|
|
205
|
+
.x-dlg-auto-tabs .x-dlg-bd, .x-dlg-auto-layout .x-dlg-bd{
|
|
206
|
+
background:#fff;
|
|
207
|
+
border:1px solid #e9f3f5;
|
|
208
|
+
}
|
|
209
|
+
.x-dlg-auto-tabs .x-tabs-top .x-tabs-body,.x-dlg-auto-tabs .x-tabs-bottom .x-tabs-body{
|
|
210
|
+
border-color:#8db2e3;
|
|
211
|
+
}
|
|
212
|
+
.x-dlg-auto-tabs .x-tabs-top .x-tabs-wrap,.x-dlg-auto-tabs .x-tabs-bottom .x-tabs-wrap{
|
|
213
|
+
border-color:#8db2e3;
|
|
214
|
+
}
|
|
215
|
+
.x-dlg .x-dlg-toolbox {
|
|
216
|
+
width:50px;
|
|
217
|
+
height:20px;
|
|
218
|
+
right:5px;
|
|
219
|
+
top:5px;
|
|
220
|
+
}
|
|
221
|
+
.x-dlg .x-dlg-close, .x-dlg .x-dlg-collapse {
|
|
222
|
+
width:21px;
|
|
223
|
+
height:20px;
|
|
224
|
+
margin:0;
|
|
225
|
+
}
|
|
226
|
+
.x-dlg .x-dlg-close {
|
|
227
|
+
background-image:url(../images/aero/basic-dialog/aero-close.gif);
|
|
228
|
+
}
|
|
229
|
+
.x-dlg .x-dlg-collapse {
|
|
230
|
+
background-image:url(../images/aero/basic-dialog/collapse.gif);
|
|
231
|
+
}
|
|
232
|
+
.x-dlg-collapsed {
|
|
233
|
+
border-bottom:1px solid #96b9e6;
|
|
234
|
+
}
|
|
235
|
+
.x-dlg .x-dlg-close-over {
|
|
236
|
+
background-image:url(../images/aero/basic-dialog/aero-close-over.gif);
|
|
237
|
+
}
|
|
238
|
+
.x-dlg .x-dlg-collapse-over {
|
|
239
|
+
background-image:url(../images/aero/basic-dialog/collapse-over.gif);
|
|
240
|
+
}
|
|
241
|
+
.x-dlg-collapsed .x-dlg-collapse {
|
|
242
|
+
background-image:url(../images/aero/basic-dialog/expand.gif);
|
|
243
|
+
}
|
|
244
|
+
.x-dlg-collapsed .x-dlg-collapse-over {
|
|
245
|
+
background-image:url(../images/aero/basic-dialog/expand-over.gif);
|
|
246
|
+
}
|
|
247
|
+
.x-dlg div.x-resizable-handle-east{
|
|
248
|
+
background-image:url(../images/aero/s.gif);
|
|
249
|
+
border:0 none;
|
|
250
|
+
}
|
|
251
|
+
.x-dlg div.x-resizable-handle-south{
|
|
252
|
+
background-image:url(../images/aero/s.gif);
|
|
253
|
+
border:0 none;
|
|
254
|
+
}
|
|
255
|
+
.x-dlg div.x-resizable-handle-west{
|
|
256
|
+
background-image:url(../images/aero/s.gif);
|
|
257
|
+
border:0 none;
|
|
258
|
+
}
|
|
259
|
+
.x-dlg div.x-resizable-handle-southeast{
|
|
260
|
+
background-image:url(../images/aero/basic-dialog/se-handle.gif);
|
|
261
|
+
background-position: bottom right;
|
|
262
|
+
width:9px;
|
|
263
|
+
height:9px;
|
|
264
|
+
border:0;
|
|
265
|
+
right:2px;
|
|
266
|
+
bottom:2px;
|
|
267
|
+
}
|
|
268
|
+
.x-dlg div.x-resizable-handle-southwest{
|
|
269
|
+
background-image:url(../images/aero/s.gif);
|
|
270
|
+
background-position: top right;
|
|
271
|
+
margin-left:1px;
|
|
272
|
+
margin-bottom:1px;
|
|
273
|
+
border:0;
|
|
274
|
+
}
|
|
275
|
+
.x-dlg div.x-resizable-handle-north{
|
|
276
|
+
background-image:url(../images/aero/s.gif);
|
|
277
|
+
border:0 none;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
#x-msg-box .x-dlg-bd{
|
|
281
|
+
background:#CFE0F5;
|
|
282
|
+
border:0 none;
|
|
283
|
+
}
|
|
284
|
+
body.x-masked #x-msg-box .x-dlg-bd, body.x-body-masked #x-msg-box .x-dlg-bd{
|
|
285
|
+
background:#c4d2e3;
|
|
286
|
+
border:0 none;
|
|
287
|
+
}
|
|
288
|
+
/* BorderLayout */
|
|
289
|
+
|
|
290
|
+
.x-layout-container{
|
|
291
|
+
background:#deecfd;
|
|
292
|
+
}
|
|
293
|
+
.x-layout-collapsed{
|
|
294
|
+
background-color:#deecfd;
|
|
295
|
+
border:1px solid #99bbe8;
|
|
296
|
+
}
|
|
297
|
+
.x-layout-collapsed-over{
|
|
298
|
+
background-color:#F5F9FE;
|
|
299
|
+
}
|
|
300
|
+
.x-layout-panel{
|
|
301
|
+
border:1px solid #99bbe8;
|
|
302
|
+
}
|
|
303
|
+
.x-layout-nested-layout .x-layout-panel {
|
|
304
|
+
border:0 none;
|
|
305
|
+
}
|
|
306
|
+
.x-layout-split{
|
|
307
|
+
background-color:#deecfd;
|
|
308
|
+
}
|
|
309
|
+
.x-layout-panel-hd{
|
|
310
|
+
background: #ebeadb url(../images/aero/grid/grid-hrow.gif) repeat-x;
|
|
311
|
+
border-bottom:1px solid #99bbe8;
|
|
312
|
+
}
|
|
313
|
+
.x-layout-panel-hd-text {
|
|
314
|
+
color:#15428b;
|
|
315
|
+
font:bold 11px tahoma,arial,verdana,sans-serif;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.x-layout-split-h{
|
|
319
|
+
background:#deecfd;
|
|
320
|
+
}
|
|
321
|
+
.x-layout-split-v{
|
|
322
|
+
background:#deecfd;
|
|
323
|
+
}
|
|
324
|
+
.x-layout-panel .x-tabs-top .x-tabs-wrap{
|
|
325
|
+
border:0 none;
|
|
326
|
+
border-bottom:1px solid #8db2e3;
|
|
327
|
+
}
|
|
328
|
+
.x-layout-panel .x-tabs-bottom .x-tabs-wrap{
|
|
329
|
+
border:0 none;
|
|
330
|
+
border-top:1px solid #8db2e3;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.x-layout-nested-layout .x-layout-panel-north {
|
|
334
|
+
border-bottom:1px solid #99bbe8;
|
|
335
|
+
}
|
|
336
|
+
.x-layout-nested-layout .x-layout-panel-south {
|
|
337
|
+
border-top:1px solid #99bbe8;
|
|
338
|
+
}
|
|
339
|
+
.x-layout-nested-layout .x-layout-panel-east {
|
|
340
|
+
border-left:1px solid #99bbe8;
|
|
341
|
+
}
|
|
342
|
+
.x-layout-nested-layout .x-layout-panel-west {
|
|
343
|
+
border-right:1px solid #99bbe8;
|
|
344
|
+
}
|
|
345
|
+
.x-layout-panel-dragover {
|
|
346
|
+
border: 2px solid #99bbe8;
|
|
347
|
+
}
|
|
348
|
+
.x-layout-panel-proxy {
|
|
349
|
+
background-image: url(../images/aero/layout/gradient-bg.gif);
|
|
350
|
+
background-color:#f3f2e7;
|
|
351
|
+
border:1px dashed #99bbe8;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.x-layout-container .x-layout-tabs-body{
|
|
355
|
+
border:0 none;
|
|
356
|
+
}
|
|
357
|
+
/** Resizable */
|
|
358
|
+
|
|
359
|
+
.x-resizable-proxy{
|
|
360
|
+
border: 1px dashed #3b5a82;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/* grid */
|
|
364
|
+
.x-grid-hd-text {
|
|
365
|
+
color:#15428b;
|
|
366
|
+
font-weight:bold;
|
|
367
|
+
}
|
|
368
|
+
.x-grid-locked .x-grid-body td {
|
|
369
|
+
background: #FBFDFF;
|
|
370
|
+
border-right: 1px solid #deecfd;
|
|
371
|
+
border-bottom: 1px solid #deecfd !important;
|
|
372
|
+
}
|
|
373
|
+
.x-grid-locked .x-grid-body td .x-grid-cell-inner {
|
|
374
|
+
border-top:0 none;
|
|
375
|
+
}
|
|
376
|
+
.x-grid-locked .x-grid-row-alt td{
|
|
377
|
+
background: #F5FAFE;
|
|
378
|
+
}
|
|
379
|
+
.x-grid-locked .x-grid-row-selected td{
|
|
380
|
+
color: #fff !important;
|
|
381
|
+
background-color: #316ac5 !important;
|
|
382
|
+
}
|
|
383
|
+
.x-grid-hd{
|
|
384
|
+
border-bottom:0;
|
|
385
|
+
background:none;
|
|
386
|
+
}
|
|
387
|
+
.x-grid-hd-row{
|
|
388
|
+
height:auto;
|
|
389
|
+
}
|
|
390
|
+
.x-grid-hd-over {
|
|
391
|
+
border-bottom:0 none;
|
|
392
|
+
}
|
|
393
|
+
.x-grid-hd-over .x-grid-hd-body{
|
|
394
|
+
background:none;
|
|
395
|
+
border-bottom:0 none;
|
|
396
|
+
}
|
|
397
|
+
.x-grid-hd-over .x-grid-hd-body{
|
|
398
|
+
background-color: transparent;
|
|
399
|
+
border-bottom:0;
|
|
400
|
+
}
|
|
401
|
+
.x-grid-split {
|
|
402
|
+
background-image: url(../images/aero/grid/grid-blue-split.gif);
|
|
403
|
+
}
|
|
404
|
+
.x-grid-header{
|
|
405
|
+
background: url(../images/aero/grid/grid-hrow.gif);
|
|
406
|
+
border:0 none;
|
|
407
|
+
border-bottom:1px solid #6f99cf;
|
|
408
|
+
}
|
|
409
|
+
.x-grid-row-alt{
|
|
410
|
+
background-color: #f5f5f5;
|
|
411
|
+
}
|
|
412
|
+
.x-grid-row-over td, .x-grid-locked .x-grid-row-over td{
|
|
413
|
+
background-color:#d9e8fb;
|
|
414
|
+
}
|
|
415
|
+
.x-grid-col {
|
|
416
|
+
border-right: 1px solid #eee;
|
|
417
|
+
border-bottom: 1px solid #eee;
|
|
418
|
+
}
|
|
419
|
+
.x-grid-header .x-grid-hd-inner {
|
|
420
|
+
padding-bottom: 1px;
|
|
421
|
+
}
|
|
422
|
+
.x-grid-header .x-grid-hd-text {
|
|
423
|
+
padding-bottom: 3px;
|
|
424
|
+
}
|
|
425
|
+
.x-grid-hd-over .x-grid-hd-inner {
|
|
426
|
+
border-bottom: 1px solid #316ac5;
|
|
427
|
+
padding-bottom: 0;
|
|
428
|
+
}
|
|
429
|
+
.x-grid-hd-over .x-grid-hd-text {
|
|
430
|
+
background: #d5e4f5;
|
|
431
|
+
border-bottom: 1px solid #fff;
|
|
432
|
+
padding-bottom: 2px;
|
|
433
|
+
}
|
|
434
|
+
.x-grid-header .sort-asc .x-grid-hd-inner, .x-grid-header .sort-desc .x-grid-hd-inner {
|
|
435
|
+
border-bottom: 1px solid #316ac5;
|
|
436
|
+
padding-bottom: 0;
|
|
437
|
+
}
|
|
438
|
+
.x-grid-header .sort-asc .x-grid-hd-text, .x-grid-header .sort-desc .x-grid-hd-text {
|
|
439
|
+
border-bottom: 0 none;
|
|
440
|
+
padding-bottom: 3px;
|
|
441
|
+
}
|
|
442
|
+
.x-grid-header .sort-asc .x-grid-sort-icon {
|
|
443
|
+
background-image: url(../images/aero/grid/sort_asc.gif);
|
|
444
|
+
}
|
|
445
|
+
.x-grid-header .sort-desc .x-grid-sort-icon {
|
|
446
|
+
background-image: url(../images/aero/grid/sort_desc.gif);
|
|
447
|
+
}
|
|
448
|
+
.x-dd-drag-proxy .x-grid-hd-inner{
|
|
449
|
+
background: #ebeadb url(../images/aero/grid/grid-hrow.gif) repeat-x;
|
|
450
|
+
height:22px;
|
|
451
|
+
width:120px;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
.x-grid-locked td.x-grid-row-marker, .x-grid-locked .x-grid-row-selected td.x-grid-row-marker{
|
|
456
|
+
background: #ebeadb url(../images/aero/grid/grid-hrow.gif) repeat-x 0 0 !important;
|
|
457
|
+
vertical-align:middle !important;
|
|
458
|
+
color:black;
|
|
459
|
+
padding:0;
|
|
460
|
+
border-top:1px solid white;
|
|
461
|
+
border-bottom:1px solid #6f99cf !important;
|
|
462
|
+
border-right:1px solid #6f99cf !important;
|
|
463
|
+
text-align:center;
|
|
464
|
+
}
|
|
465
|
+
.x-grid-locked td.x-grid-row-marker div, .x-grid-locked .x-grid-row-selected td.x-grid-row-marker div{
|
|
466
|
+
padding:0 4px;
|
|
467
|
+
color:#15428b !important;
|
|
468
|
+
text-align:center;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
/** Toolbar */
|
|
472
|
+
.x-toolbar{
|
|
473
|
+
padding:2px 2px 2px 2px;
|
|
474
|
+
background:#d0def0 url(../images/default/toolbar/tb-bg.gif) repeat-x;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.x-toolbar .ytb-sep{
|
|
478
|
+
background-image: url(../images/aero/grid/grid-blue-split.gif);
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.x-toolbar .x-btn-over .x-btn-left{
|
|
482
|
+
background:url(../images/aero/toolbar/tb-btn-sprite.gif) no-repeat 0 0;
|
|
483
|
+
}
|
|
484
|
+
.x-toolbar .x-btn-over .x-btn-right{
|
|
485
|
+
background:url(../images/aero/toolbar/tb-btn-sprite.gif) no-repeat 0 -21px;
|
|
486
|
+
}
|
|
487
|
+
.x-toolbar .x-btn-over .x-btn-center{
|
|
488
|
+
background:url(../images/aero/toolbar/tb-btn-sprite.gif) repeat-x 0 -42px;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.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{
|
|
492
|
+
background:url(../images/aero/toolbar/tb-btn-sprite.gif) no-repeat 0 -63px;
|
|
493
|
+
}
|
|
494
|
+
.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{
|
|
495
|
+
background:url(../images/aero/toolbar/tb-btn-sprite.gif) no-repeat 0 -84px;
|
|
496
|
+
}
|
|
497
|
+
.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{
|
|
498
|
+
background:url(../images/aero/toolbar/tb-btn-sprite.gif) repeat-x 0 -105px;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
/*************** TABS 2 *****************/
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* Tabs
|
|
509
|
+
*/
|
|
510
|
+
.x-tab-panel-header, .x-tab-panel-footer {
|
|
511
|
+
background:#deecfd;
|
|
512
|
+
border:1px solid #8db2e3;
|
|
513
|
+
}
|
|
514
|
+
.x-tab-panel-header {
|
|
515
|
+
background:#deecfd;
|
|
516
|
+
border:1px solid #8db2e3;
|
|
517
|
+
padding-bottom:2px;
|
|
518
|
+
}
|
|
519
|
+
.x-tab-panel-footer {
|
|
520
|
+
background:#deecfd;
|
|
521
|
+
border:1px solid #8db2e3;
|
|
522
|
+
padding-top:2px;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.x-tab-strip-top{
|
|
526
|
+
padding-top:1px;
|
|
527
|
+
background:#cedff5 url(../images/aero/tabs/tab-strip-bg.gif) repeat-x bottom;
|
|
528
|
+
border-bottom:1px solid #8db2e3;
|
|
529
|
+
}
|
|
530
|
+
.x-tab-strip-bottom{
|
|
531
|
+
padding-bottom:1px;
|
|
532
|
+
background:#cedff5 url(../images/aero/tabs/tab-strip-btm-bg.gif) repeat-x top;
|
|
533
|
+
border-top:1px solid #8db2e3;
|
|
534
|
+
border-bottom:0 none;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.x-tab-strip .x-tab-strip-text {
|
|
538
|
+
color:#15428b;
|
|
539
|
+
font:bold 11px tahoma,arial,verdana,sans-serif;
|
|
540
|
+
}
|
|
541
|
+
.x-tab-strip .x-tab-strip-active .x-tab-text {
|
|
542
|
+
cursor:default;
|
|
543
|
+
color:#15428b;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.x-tab-strip-top .x-tab-strip-active .x-tab-right {
|
|
547
|
+
background: url(../images/aero/tabs/tab-sprite.gif) no-repeat right 0;
|
|
548
|
+
}
|
|
549
|
+
.x-tab-strip-top .x-tab-strip-active .x-tab-left {
|
|
550
|
+
background: url(../images/aero/tabs/tab-sprite.gif) no-repeat 0 -100px;
|
|
551
|
+
}
|
|
552
|
+
.x-tab-strip-top .x-tab-right {
|
|
553
|
+
background: url(../images/aero/tabs/tab-sprite.gif) no-repeat right -50px;
|
|
554
|
+
}
|
|
555
|
+
.x-tab-strip-top .x-tab-left {
|
|
556
|
+
background: url(../images/aero/tabs/tab-sprite.gif) no-repeat 0 -150px;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
.x-tab-strip-bottom .x-tab-right {
|
|
561
|
+
background: url(../images/aero/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom left;
|
|
562
|
+
}
|
|
563
|
+
.x-tab-strip-bottom .x-tab-left {
|
|
564
|
+
background: url(../images/aero/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom right;
|
|
565
|
+
}
|
|
566
|
+
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
|
|
567
|
+
background: url(../images/aero/tabs/tab-btm-right-bg.gif) no-repeat bottom left;
|
|
568
|
+
}
|
|
569
|
+
.x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
|
|
570
|
+
background: url(../images/aero/tabs/tab-btm-left-bg.gif) no-repeat bottom right;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.x-tab-panel-body-top {
|
|
574
|
+
border:1px solid #8db2e3;
|
|
575
|
+
border-top:0 none;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.x-tab-panel-body-bottom {
|
|
579
|
+
border:1px solid #8db2e3;
|
|
580
|
+
border-bottom:0 none;
|
|
581
|
+
}
|