From 2f3b425ddd199c6f8865b1c97210c6d4b74ca8ef Mon Sep 17 00:00:00 2001 From: jensp Date: Tue, 11 Feb 2014 18:23:11 +0000 Subject: [PATCH] First part of the integration of the YAML CSS Framework (http://www.yaml.org) into Mandalay. YAML can now used using the element in a layout file. git-svn-id: https://svn.libreccm.org/ccm/trunk@2519 8810af33-2d31-482b-a856-94f89814c4df --- .../mandalay-yaml/layout/navigation.xml | 4 +- .../web/themes/mandalay-yaml/lib/html5shiv.js | 8 + .../user/includes/mandalay/layoutParser.xsl | 100 +++ .../add-ons/accessible-tabs/jquery.tabs.js | 266 +++++++ .../yaml/add-ons/accessible-tabs/tabs.css | 136 ++++ .../microformats/icons/external_link.png | Bin 0 -> 120 bytes .../add-ons/microformats/icons/hcalendar.png | Bin 0 -> 527 bytes .../yaml/add-ons/microformats/icons/hcard.png | Bin 0 -> 562 bytes .../add-ons/microformats/icons/icon-geo.png | Bin 0 -> 633 bytes .../add-ons/microformats/icons/icon-hatom.png | Bin 0 -> 578 bytes .../microformats/icons/icon-haudio.png | Bin 0 -> 614 bytes .../microformats/icons/icon-hcalendar-add.png | Bin 0 -> 614 bytes .../icons/icon-hcalendar-download.png | Bin 0 -> 612 bytes .../microformats/icons/icon-hcalendar.png | Bin 0 -> 575 bytes .../microformats/icons/icon-hcard-add.png | Bin 0 -> 576 bytes .../icons/icon-hcard-download.png | Bin 0 -> 587 bytes .../add-ons/microformats/icons/icon-hcard.png | Bin 0 -> 565 bytes .../microformats/icons/icon-hresume.png | Bin 0 -> 593 bytes .../microformats/icons/icon-rel-tag.png | Bin 0 -> 589 bytes .../add-ons/microformats/icons/icon-xfn.png | Bin 0 -> 591 bytes .../microformats/icons/xfn/xfn-child.png | Bin 0 -> 428 bytes .../icons/xfn/xfn-colleague-met.png | Bin 0 -> 337 bytes .../microformats/icons/xfn/xfn-colleague.png | Bin 0 -> 320 bytes .../microformats/icons/xfn/xfn-friend-met.png | Bin 0 -> 342 bytes .../microformats/icons/xfn/xfn-friend.png | Bin 0 -> 317 bytes .../add-ons/microformats/icons/xfn/xfn-me.png | Bin 0 -> 297 bytes .../microformats/icons/xfn/xfn-parent.png | Bin 0 -> 488 bytes .../microformats/icons/xfn/xfn-small.png | Bin 0 -> 474 bytes .../microformats/icons/xfn/xfn-spouse.png | Bin 0 -> 663 bytes .../icons/xfn/xfn-sweetheart-met.png | Bin 0 -> 309 bytes .../microformats/icons/xfn/xfn-sweetheart.png | Bin 0 -> 299 bytes .../add-ons/microformats/microformats.css | 167 +++++ .../add-ons/rtl-support/core/base-rtl.css | 167 +++++ .../add-ons/rtl-support/core/base-rtl.min.css | 3 + .../rtl-support/forms/gray-theme-rtl.css | 44 ++ .../rtl-support/navigation/hlist-rtl.css | 48 ++ .../rtl-support/navigation/vlist-rtl.css | 54 ++ .../rtl-support/screen/typography-rtl.css | 38 + .../add-ons/syncheight/jquery.syncheight.js | 112 +++ .../themes/mandalay-yaml/yaml/core/base.css | 705 ++++++++++++++++++ .../mandalay-yaml/yaml/core/base.min.css | 3 + .../mandalay-yaml/yaml/core/iehacks.css | 468 ++++++++++++ .../mandalay-yaml/yaml/core/iehacks.min.css | 3 + .../yaml/core/js/yaml-focusfix.js | 70 ++ .../mandalay-yaml/yaml/forms/gray-theme.css | 676 +++++++++++++++++ .../mandalay-yaml/yaml/navigation/hlist.css | 109 +++ .../mandalay-yaml/yaml/navigation/vlist.css | 144 ++++ .../themes/mandalay-yaml/yaml/print/print.css | 42 ++ .../yaml/screen/grid-960gs-12.css | 164 ++++ .../yaml/screen/grid-960gs-16.css | 212 ++++++ .../yaml/screen/grid-blueprint.css | 308 ++++++++ .../yaml/screen/grid-fluid-12col.css | 164 ++++ .../yaml/screen/screen-FULLPAGE-layout.css | 184 +++++ .../yaml/screen/screen-PAGE-layout.css | 196 +++++ .../mandalay-yaml/yaml/screen/typography.css | 486 ++++++++++++ 55 files changed, 5080 insertions(+), 1 deletion(-) create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/lib/html5shiv.js create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/accessible-tabs/jquery.tabs.js create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/accessible-tabs/tabs.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/external_link.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/hcalendar.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/hcard.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-geo.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-hatom.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-haudio.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-hcalendar-add.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-hcalendar-download.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-hcalendar.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-hcard-add.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-hcard-download.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-hcard.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-hresume.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-rel-tag.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/icon-xfn.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-child.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-colleague-met.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-colleague.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-friend-met.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-friend.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-me.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-parent.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-small.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-spouse.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-sweetheart-met.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/icons/xfn/xfn-sweetheart.png create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/microformats/microformats.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/rtl-support/core/base-rtl.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/rtl-support/core/base-rtl.min.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/rtl-support/forms/gray-theme-rtl.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/rtl-support/navigation/hlist-rtl.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/rtl-support/navigation/vlist-rtl.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/rtl-support/screen/typography-rtl.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/add-ons/syncheight/jquery.syncheight.js create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/core/base.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/core/base.min.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/core/iehacks.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/core/iehacks.min.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/core/js/yaml-focusfix.js create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/forms/gray-theme.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/navigation/hlist.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/navigation/vlist.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/print/print.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/screen/grid-960gs-12.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/screen/grid-960gs-16.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/screen/grid-blueprint.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/screen/grid-fluid-12col.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/screen/screen-FULLPAGE-layout.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/screen/screen-PAGE-layout.css create mode 100644 ccm-sci-bundle/web/themes/mandalay-yaml/yaml/screen/typography.css diff --git a/ccm-sci-bundle/web/themes/mandalay-yaml/layout/navigation.xml b/ccm-sci-bundle/web/themes/mandalay-yaml/layout/navigation.xml index 49b470064..30edcc3e1 100755 --- a/ccm-sci-bundle/web/themes/mandalay-yaml/layout/navigation.xml +++ b/ccm-sci-bundle/web/themes/mandalay-yaml/layout/navigation.xml @@ -28,6 +28,8 @@ + + @@ -59,7 +61,7 @@ layout/page/header/title - +