summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dojox/layout/resources
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-13 09:49:11 +0000
committerGravatar mensonge2008-11-13 09:49:11 +0000
commite44a7e37b6c7b5961adaffc62b9042b8d442938e (patch)
tree95b67c356e93163467db2451f2b8cce84ed5d582 /includes/js/dojox/layout/resources
parenta62b9742ee5e28bcec6872d88f50f25b820914f6 (diff)
downloadscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.gz
scuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.zip
New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/layout/resources')
-rw-r--r--includes/js/dojox/layout/resources/ExpandoPane.css99
-rw-r--r--includes/js/dojox/layout/resources/ExpandoPane.css.commented.css116
-rw-r--r--includes/js/dojox/layout/resources/ExpandoPane.html9
-rw-r--r--includes/js/dojox/layout/resources/FloatingPane.css152
-rw-r--r--includes/js/dojox/layout/resources/FloatingPane.css.commented.css183
-rw-r--r--includes/js/dojox/layout/resources/FloatingPane.html14
-rw-r--r--includes/js/dojox/layout/resources/RadioGroup.css40
-rw-r--r--includes/js/dojox/layout/resources/RadioGroup.css.commented.css45
-rw-r--r--includes/js/dojox/layout/resources/ResizeHandle.css28
-rw-r--r--includes/js/dojox/layout/resources/ResizeHandle.css.commented.css34
-rw-r--r--includes/js/dojox/layout/resources/ScrollPane.css21
-rw-r--r--includes/js/dojox/layout/resources/ScrollPane.css.commented.css24
-rw-r--r--includes/js/dojox/layout/resources/ScrollPane.html6
-rw-r--r--includes/js/dojox/layout/resources/icons/resize.pngbin0 -> 319 bytes
14 files changed, 771 insertions, 0 deletions
diff --git a/includes/js/dojox/layout/resources/ExpandoPane.css b/includes/js/dojox/layout/resources/ExpandoPane.css
new file mode 100644
index 0000000..b0183b7
--- /dev/null
+++ b/includes/js/dojox/layout/resources/ExpandoPane.css
@@ -0,0 +1,99 @@
+.dojoxExpandoPane {
+ overflow:hidden;
+ margin-top:1px;
+ border-top:1px solid #ccc;
+ z-index:440;
+ background:#fff;
+}
+.dojoxExpandoPane .dojoxExpandoWrapper {
+ overflow:hidden;
+}
+.dojoxExpandoIcon {
+ width:14px;
+ cursor:pointer;
+ background-position:-60px 0px;
+ height:14px;
+}
+.soria .dojoxExpandoIcon {
+ background: url('../../../dijit/themes/soria/images/spriteRoundedIconsSmall.png') no-repeat center center;
+}
+.tundra .dojoxExpandoLeft .dojoxExpandoIcon,
+.nihilo .dojoxExpandoLeft .dojoxExpandoIcon {
+
+ background: url('../../../dijit/themes/tundra/images/minusButton.gif') no-repeat;
+}
+.tundra .dojoxExpandoRight .dojoxExpandoIcon,
+.nihilo .dojoxExpandoRight .dojoxExpandoIcon {
+
+ background: url('../../../dijit/themes/tundra/images/minusButton.gif') no-repeat;
+}
+.tundra .dojoxExpandoClosed .dojoxExpandoIcon {
+ background: url('../../../dijit/themes/tundra/images/plusButton.gif') no-repeat;
+}
+.dojoxExpandoClosed .dojoxExpandoIcon {
+ background-position: 0px 0px;
+}
+.dojoxExpandoClosed .dojoxExpandoTitleNode {
+ visibility:hidden;
+}
+.dojoxExpandoTitleNode {
+ padding-right:6px; padding-left:6px;
+}
+.dojoxExpandoClosed .dijitContentPane {
+ overflow: hidden;
+}
+.dojoxExpandoIcon .a11yNode {
+ display:none;
+ visibility:hidden;
+}
+.dojoxExpandoBottom .dojoxExpandoIcon,
+.dojoxExpandoTop .dojoxExpandoIcon,
+.dojoxExpandoLeft .dojoxExpandoIcon {
+ float:right;
+}
+.dojoxExpandoRight .dojoxExpandoIcon {
+ float:left;
+}
+.nihilo .dojoxExpandoTitle {
+ height:18px;
+ font-size:0.9em;
+ font-weight:bold;
+ padding:3px;
+ padding-top:7px;
+ padding-bottom:7px;
+ background:#fafafa url("../../../dijit/themes/nihilo/images/tabStripe.gif") repeat-x left bottom;
+
+}
+.nihilo .dojoxExpandoTop {
+ border-bottom:1px solid #ccc;
+ border-left:1px solid #ccc;
+ border-right:1px solid #ccc;
+}
+.soria .dojoxExpandoTop {
+
+}
+.soria .dojoxExpandoTitle {
+ height:18px;
+ font-size:0.9em;
+ font-weight:bold;
+ padding:3px;
+ padding-top:7px;
+ padding-bottom:7px;
+ background:#f0f4fc url("../../../dijit/themes/soria/images/tabStripe.gif") repeat-x left bottom;
+}
+.tundra .dojoxExpandoTitle {
+ font-size: 0.9em;
+ font-weight: bold;
+ padding: 3px;
+ padding-top: 7px;
+ padding-bottom: 7px;
+ background: #fafafa url("../../../dijit/themes/tundra/images/accordionItemActive.gif") repeat-x scroll left bottom;
+}
+.tundra .dojoxExpandoClosed {
+
+ background-color: #fafafa;
+}
+.tundra .dojoxExpandoClosed .dojoxExpandoTitle {
+ background-image: none;
+ background-color: transparent;
+}
diff --git a/includes/js/dojox/layout/resources/ExpandoPane.css.commented.css b/includes/js/dojox/layout/resources/ExpandoPane.css.commented.css
new file mode 100644
index 0000000..4edd3f5
--- /dev/null
+++ b/includes/js/dojox/layout/resources/ExpandoPane.css.commented.css
@@ -0,0 +1,116 @@
+.dojoxExpandoPane {
+ overflow:hidden;
+ margin-top:1px;
+ border-top:1px solid #ccc;
+ z-index:440;
+ background:#fff;
+}
+.dojoxExpandoPane .dojoxExpandoWrapper {
+ overflow:hidden;
+}
+.dojoxExpandoIcon {
+ width:14px;
+ cursor:pointer;
+ background-position:-60px 0px;
+ height:14px;
+}
+
+.soria .dojoxExpandoIcon {
+ background: url('../../../dijit/themes/soria/images/spriteRoundedIconsSmall.png') no-repeat center center;
+}
+
+.tundra .dojoxExpandoLeft .dojoxExpandoIcon,
+.nihilo .dojoxExpandoLeft .dojoxExpandoIcon {
+ /*
+ background: url('../../presentation/resources/icons/prev.png') no-repeat;
+ */
+ background: url('../../../dijit/themes/tundra/images/minusButton.gif') no-repeat;
+}
+
+.tundra .dojoxExpandoRight .dojoxExpandoIcon,
+.nihilo .dojoxExpandoRight .dojoxExpandoIcon {
+ /*
+ background: url('../../presentation/resources/icons/next.png') no-repeat;
+ */
+ background: url('../../../dijit/themes/tundra/images/minusButton.gif') no-repeat;
+}
+
+.tundra .dojoxExpandoClosed .dojoxExpandoIcon {
+ background: url('../../../dijit/themes/tundra/images/plusButton.gif') no-repeat;
+}
+
+.dojoxExpandoClosed .dojoxExpandoIcon {
+ background-position: 0px 0px;
+}
+.dojoxExpandoClosed .dojoxExpandoTitleNode {
+ visibility:hidden;
+}
+.dojoxExpandoTitleNode {
+ padding-right:6px; padding-left:6px;
+}
+.dojoxExpandoClosed .dijitContentPane {
+ overflow: hidden;
+}
+.dojoxExpandoIcon .a11yNode {
+ display:none;
+ visibility:hidden;
+}
+.dojoxExpandoBottom .dojoxExpandoIcon,
+.dojoxExpandoTop .dojoxExpandoIcon,
+.dojoxExpandoLeft .dojoxExpandoIcon {
+ float:right;
+}
+.dojoxExpandoRight .dojoxExpandoIcon {
+ float:left;
+}
+
+.nihilo .dojoxExpandoTitle {
+ height:18px;
+ font-size:0.9em;
+ font-weight:bold;
+ padding:3px;
+ padding-top:7px;
+ padding-bottom:7px;
+ background:#fafafa url("../../../dijit/themes/nihilo/images/tabStripe.gif") repeat-x left bottom;
+
+}
+
+.nihilo .dojoxExpandoTop {
+ border-bottom:1px solid #ccc;
+ border-left:1px solid #ccc;
+ border-right:1px solid #ccc;
+}
+
+.soria .dojoxExpandoTop {
+
+}
+
+.soria .dojoxExpandoTitle {
+ height:18px;
+ font-size:0.9em;
+ font-weight:bold;
+ padding:3px;
+ padding-top:7px;
+ padding-bottom:7px;
+ background:#f0f4fc url("../../../dijit/themes/soria/images/tabStripe.gif") repeat-x left bottom;
+}
+
+.tundra .dojoxExpandoTitle {
+ font-size: 0.9em;
+ font-weight: bold;
+ padding: 3px;
+ padding-top: 7px;
+ padding-bottom: 7px;
+ background: #fafafa url("../../../dijit/themes/tundra/images/accordionItemActive.gif") repeat-x scroll left bottom;
+}
+
+.tundra .dojoxExpandoClosed {
+ /*
+ background: #ececec url("../../grid/_grid/images/tabEnabled_rotated.png") repeat-y scroll left top !important;
+ */
+ background-color: #fafafa;
+}
+.tundra .dojoxExpandoClosed .dojoxExpandoTitle {
+ background-image: none;
+ background-color: transparent;
+}
diff --git a/includes/js/dojox/layout/resources/ExpandoPane.html b/includes/js/dojox/layout/resources/ExpandoPane.html
new file mode 100644
index 0000000..d28222e
--- /dev/null
+++ b/includes/js/dojox/layout/resources/ExpandoPane.html
@@ -0,0 +1,9 @@
+<div class="dojoxExpandoPane" dojoAttachEvent="ondblclick:toggle" >
+ <div dojoAttachPoint="titleWrapper" class="dojoxExpandoTitle">
+ <div class="dojoxExpandoIcon" dojoAttachPoint="iconNode" dojoAttachEvent="onclick:toggle"><span class="a11yNode">X</span></div>
+ <span class="dojoxExpandoTitleNode" dojoAttachPoint="titleNode">${title}</span>
+ </div>
+ <div class="dojoxExpandoWrapper" dojoAttachPoint="cwrapper" dojoAttachEvent="ondblclick:_trap">
+ <div class="dojoxExpandoContent" dojoAttachPoint="containerNode"></div>
+ </div>
+</div> \ No newline at end of file
diff --git a/includes/js/dojox/layout/resources/FloatingPane.css b/includes/js/dojox/layout/resources/FloatingPane.css
new file mode 100644
index 0000000..db8a8c9
--- /dev/null
+++ b/includes/js/dojox/layout/resources/FloatingPane.css
@@ -0,0 +1,152 @@
+.dojoxFloatingPane {
+ background-color:#fff;
+ position:relative;
+ border: 1px solid #dedede;
+ overflow: hidden;
+ -webkit-box-shadow: 0px 5px 10px #adadad;
+}
+.dojoxFloatingPaneFg {
+ -webkit-box-shadow: 0px 8px 20px #525252;
+}
+.dojoxFloatingPaneTitle {
+ background: #cccccc;
+ background:#fafafa repeat-x bottom left;
+ border:1px solid #bfbfbf;
+ padding:4px 4px 2px 4px;
+ cursor: pointer;
+ white-space: nowrap;
+}
+.soria .dojoxFloatingPaneTitle {
+ background:#fff url("../../../dijit/themes/soria/images/titleBar.png") repeat-x top left;
+ border:1px solid #b1badf;
+ font-size: 0.9em;
+ font-weight: bold;
+ line-height:1.2em;
+}
+.tundra .dojoxFloatingPaneTitle {
+ background:#fafafa url("../../../dijit/themes/tundra/images/titleBarBg.gif") repeat-x bottom left;
+ border:1px solid #bfbfbf;
+ color:#000;
+}
+.dojoxFloatingCloseIcon {
+ background:url('icons/tabClose.png') no-repeat center center;
+ width:16px;
+ height:16px;
+ overflow:hidden;
+ float:right;
+}
+.dojoxFloatingMinimizeIcon {
+ background:url('../../../dijit/themes/tundra/images/arrowDown.png') no-repeat center center;
+ width:16px;
+ height:16px;
+ overflow:hidden;
+ float:right;
+}
+.soria .dojoxFloatingMinimizeIcon {
+ background:url("../../../dijit/themes/soria/images/spriteRoundedIconsSmallBl.png") no-repeat -15px top;
+}
+.floatingPaneMaximized .dojoxFloatingMaximizeIcon { display:none; }
+.dojoxFloatingMaximizeIcon {
+ background:url('../../../dijit/themes/tundra/images/arrowUp.png') no-repeat center center;
+ width:16px;
+ height:16px;
+ overflow:hidden;
+ float:right;
+}
+.soria .dojoxFloatingMaximizeIcon {
+ background:url("../../../dijit/themes/soria/images/spriteRoundedIconsSmallBl.png") no-repeat -45px top;
+}
+.floatingPaneMaximized .dojoxFloatingRestoreIcon { display:inline; }
+.dojoxFloatingRestoreIcon {
+ background:url('../../../dijit/themes/tundra/images/arrowDown.png') no-repeat center center;
+ width:16px; height:16px;
+ overflow:hidden;
+ float:right;
+ display:none;
+}
+.dojoxFloatingResizeHandle {
+ background:url('icons/resize.png') no-repeat bottom right;
+ position:absolute;
+ right:0;
+ bottom:0;
+ width:16px;
+ height:16px;
+ cursor:nw-resize;
+}
+.dojoxFloatingCloseIcon {
+ width:15px;
+ height:15px;
+ overflow:hidden;
+ float:right;
+ cursor:pointer;
+}
+.soria .dojoxFloatingCloseIcon {
+ background:url("../../../dijit/themes/soria/images/spriteRoundedIconsSmallBl.png") no-repeat -60px top;
+}
+.tundra .dojoxFloatingCloseIcon {
+ background:url('../../../dijit/themes/tundra/images/tabClose.png') no-repeat center center;
+}
+.dojoxFloatingDockDefault {
+ position:absolute;
+ bottom:0px;
+ left:0px;
+ overflow:hidden;
+ margin:0;
+ margin-bottom:3px;
+ padding:0px;
+ width:100%;
+ z-index:99;
+ background:transparent;
+
+}
+.dojoxDockList {
+ padding: 0px;
+ margin: 0px;
+}
+.dojoxDockRestoreButton {
+ background:url('../../../dijit/themes/tundra/images/arrowUp.png') no-repeat center center;
+ width:16px; height:16px;
+ overflow:hidden;
+ float:left;
+ margin-top:2px;
+}
+.soria .dojoxDockRestoreButton {
+ background:url("../../../dijit/themes/soria/images/spriteRoundedIconsSmallBl.png") no-repeat -45px top;
+}
+.dojoxDockTitleNode {
+ overflow:hidden;
+}
+.dojoxDock {
+ display: block;
+ border: 1px solid black;
+ position: absolute;
+ padding:0;
+ margin:0;
+ background:#fcfcfc;
+}
+.dojoxDockNode {
+ border: 1px solid #adadad;
+ border-radius: 2px;
+ -webkit-border-radius: 2px;
+ -moz-border-radius: 3px;
+ cursor:pointer;
+ list-style: none;
+ padding: 2px;
+ margin: 0px;
+ height: 16px;
+ width: auto;
+ float: left;
+ background: #fafafa url("images/floatTitleBarBg.gif") repeat-x bottom left;
+}
+.soria .dojoxDockNode {
+ background:#b7cdee url("../../../dijit/themes/soria/images/titleBar.png") repeat-x;
+}
+.dojoxFloatingPaneContent {
+ overflow: auto;
+ background-color: #fff;
+ height: 100%;
+ width: 100%;
+}
+.dojoxFloatingPaneCanvas {
+ background-color:#fff;
+}
diff --git a/includes/js/dojox/layout/resources/FloatingPane.css.commented.css b/includes/js/dojox/layout/resources/FloatingPane.css.commented.css
new file mode 100644
index 0000000..2880dd6
--- /dev/null
+++ b/includes/js/dojox/layout/resources/FloatingPane.css.commented.css
@@ -0,0 +1,183 @@
+.dojoxFloatingPane {
+ background-color:#fff;
+ position:relative;
+ border: 1px solid #dedede;
+ overflow: hidden;
+ -webkit-box-shadow: 0px 5px 10px #adadad;
+}
+
+.dojoxFloatingPaneFg {
+ -webkit-box-shadow: 0px 8px 20px #525252;
+}
+
+/* titleNode */
+.dojoxFloatingPaneTitle {
+ background: #cccccc;
+ background:#fafafa repeat-x bottom left;
+ border:1px solid #bfbfbf;
+ padding:4px 4px 2px 4px;
+ cursor: pointer;
+ white-space: nowrap;
+}
+
+.soria .dojoxFloatingPaneTitle {
+ background:#fff url("../../../dijit/themes/soria/images/titleBar.png") repeat-x top left;
+ border:1px solid #b1badf;
+ font-size: 0.9em;
+ font-weight: bold;
+ line-height:1.2em;
+}
+
+
+.tundra .dojoxFloatingPaneTitle {
+ background:#fafafa url("../../../dijit/themes/tundra/images/titleBarBg.gif") repeat-x bottom left;
+ border:1px solid #bfbfbf;
+ color:#000;
+}
+
+
+/* Icons */
+.dojoxFloatingCloseIcon {
+ background:url('icons/tabClose.png') no-repeat center center;
+ width:16px;
+ height:16px;
+ overflow:hidden;
+ float:right;
+}
+
+.dojoxFloatingMinimizeIcon {
+ background:url('../../../dijit/themes/tundra/images/arrowDown.png') no-repeat center center;
+ width:16px;
+ height:16px;
+ overflow:hidden;
+ float:right;
+}
+.soria .dojoxFloatingMinimizeIcon {
+ background:url("../../../dijit/themes/soria/images/spriteRoundedIconsSmallBl.png") no-repeat -15px top;
+
+}
+
+.floatingPaneMaximized .dojoxFloatingMaximizeIcon { display:none; }
+.dojoxFloatingMaximizeIcon {
+ background:url('../../../dijit/themes/tundra/images/arrowUp.png') no-repeat center center;
+ width:16px;
+ height:16px;
+ overflow:hidden;
+ float:right;
+}
+.soria .dojoxFloatingMaximizeIcon {
+ background:url("../../../dijit/themes/soria/images/spriteRoundedIconsSmallBl.png") no-repeat -45px top;
+}
+
+.floatingPaneMaximized .dojoxFloatingRestoreIcon { display:inline; }
+.dojoxFloatingRestoreIcon {
+ background:url('../../../dijit/themes/tundra/images/arrowDown.png') no-repeat center center;
+ width:16px; height:16px;
+ overflow:hidden;
+ float:right;
+ display:none;
+}
+
+.dojoxFloatingResizeHandle {
+ background:url('icons/resize.png') no-repeat bottom right;
+ position:absolute;
+ right:0;
+ bottom:0;
+ width:16px;
+ height:16px;
+ cursor:nw-resize;
+}
+
+.dojoxFloatingCloseIcon {
+ width:15px;
+ height:15px;
+ overflow:hidden;
+ float:right;
+ cursor:pointer;
+}
+
+.soria .dojoxFloatingCloseIcon {
+ background:url("../../../dijit/themes/soria/images/spriteRoundedIconsSmallBl.png") no-repeat -60px top;
+}
+
+.tundra .dojoxFloatingCloseIcon {
+ background:url('../../../dijit/themes/tundra/images/tabClose.png') no-repeat center center;
+}
+
+/* our un-used dock styles for now */
+.dojoxFloatingDockDefault {
+ position:absolute;
+ bottom:0px;
+ left:0px;
+ overflow:hidden;
+ margin:0;
+ margin-bottom:3px;
+ padding:0px;
+ width:100%;
+ z-index:99; /* position the dock _just_ below the lowest pane */
+
+ background:transparent;
+ /* background-color:#fff;
+ border-top:1px solid #ccc;
+ */
+}
+
+.dojoxDockList {
+ padding: 0px;
+ margin: 0px;
+}
+
+.dojoxDockRestoreButton {
+ background:url('../../../dijit/themes/tundra/images/arrowUp.png') no-repeat center center;
+ width:16px; height:16px;
+ overflow:hidden;
+ float:left;
+ margin-top:2px;
+}
+.soria .dojoxDockRestoreButton {
+ background:url("../../../dijit/themes/soria/images/spriteRoundedIconsSmallBl.png") no-repeat -45px top;
+}
+
+.dojoxDockTitleNode {
+ overflow:hidden;
+}
+
+/* Modifications */
+
+.dojoxDock {
+ display: block;
+ border: 1px solid black;
+ position: absolute;
+ padding:0;
+ margin:0;
+ background:#fcfcfc;
+}
+
+.dojoxDockNode {
+ border: 1px solid #adadad;
+ border-radius: 2px;
+ -webkit-border-radius: 2px;
+ -moz-border-radius: 3px;
+ cursor:pointer;
+ list-style: none;
+ padding: 2px;
+ margin: 0px;
+ height: 16px;
+ width: auto;
+ float: left;
+ background: #fafafa url("images/floatTitleBarBg.gif") repeat-x bottom left;
+}
+.soria .dojoxDockNode {
+ background:#b7cdee url("../../../dijit/themes/soria/images/titleBar.png") repeat-x;
+}
+
+.dojoxFloatingPaneContent {
+ overflow: auto;
+ background-color: #fff;
+ height: 100%;
+ width: 100%;
+}
+
+.dojoxFloatingPaneCanvas {
+ background-color:#fff;
+}
diff --git a/includes/js/dojox/layout/resources/FloatingPane.html b/includes/js/dojox/layout/resources/FloatingPane.html
new file mode 100644
index 0000000..de57d6c
--- /dev/null
+++ b/includes/js/dojox/layout/resources/FloatingPane.html
@@ -0,0 +1,14 @@
+<div class="dojoxFloatingPane" id="${id}">
+ <div tabindex="0" waiRole="button" class="dojoxFloatingPaneTitle" dojoAttachPoint="focusNode">
+ <span dojoAttachPoint="closeNode" dojoAttachEvent="onclick: close" class="dojoxFloatingCloseIcon"></span>
+ <span dojoAttachPoint="maxNode" dojoAttachEvent="onclick: maximize" class="dojoxFloatingMaximizeIcon"></span>
+ <span dojoAttachPoint="restoreNode" dojoAttachEvent="onclick: _restore" class="dojoxFloatingRestoreIcon"></span>
+ <span dojoAttachPoint="dockNode" dojoAttachEvent="onclick: minimize" class="dojoxFloatingMinimizeIcon"></span>
+ <span dojoAttachPoint="titleNode" class="dijitInline dijitTitleNode"></span>
+ </div>
+ <div dojoAttachPoint="canvas" class="dojoxFloatingPaneCanvas">
+ <div dojoAttachPoint="containerNode" waiRole="region" tabindex="-1" class="${contentClass}">
+ </div>
+ <span dojoAttachPoint="resizeHandle" class="dojoxFloatingResizeHandle"></span>
+ </div>
+</div>
diff --git a/includes/js/dojox/layout/resources/RadioGroup.css b/includes/js/dojox/layout/resources/RadioGroup.css
new file mode 100644
index 0000000..684fa36
--- /dev/null
+++ b/includes/js/dojox/layout/resources/RadioGroup.css
@@ -0,0 +1,40 @@
+
+.dojoxRadioButtons {
+ margin:0; padding:4px;
+ width:100%;
+ outline:0;
+}
+.dojoxRadioButtons tbody {
+ margin:0; padding:0;
+ width:100%;
+}
+.dojoxRadioButton {
+ text-align:center;
+ cursor:pointer;
+ margin:0;
+}
+.dojoxRadioButtonSelected {
+ border:1px solid #ededed;
+}
+.tundra .dojoxRadioButtonSelected {
+ border:1px solid #a0a0a0;
+ background:#b7b7b7;
+}
+.soria .dojoxRadioButtonSelected {
+ background:#b7cdee url('../../../dijit/themes/soria/images/gradientTopBg.png') repeat-x top center;
+}
+.dojoxRadioButtonLabel {
+ padding:8px;
+ text-align:center;
+ display:block;
+}
+.dojoxRadioGroup {
+ overflow:hidden;
+ border:0;
+ margin:0; padding:0;
+}
+.dojoxRadioView {
+ position:relative;
+ overflow:hidden;
+ height:100%;
+}
diff --git a/includes/js/dojox/layout/resources/RadioGroup.css.commented.css b/includes/js/dojox/layout/resources/RadioGroup.css.commented.css
new file mode 100644
index 0000000..ecd0266
--- /dev/null
+++ b/includes/js/dojox/layout/resources/RadioGroup.css.commented.css
@@ -0,0 +1,45 @@
+/* RadioGroup base Button styling: */
+.dojoxRadioButtons {
+ margin:0; padding:4px;
+ width:100%;
+ outline:0;
+}
+
+.dojoxRadioButtons tbody {
+ margin:0; padding:0;
+ width:100%;
+}
+
+.dojoxRadioButton {
+ text-align:center;
+ cursor:pointer;
+ margin:0;
+}
+
+.dojoxRadioButtonSelected {
+ border:1px solid #ededed;
+}
+.tundra .dojoxRadioButtonSelected {
+ border:1px solid #a0a0a0;
+ background:#b7b7b7;
+}
+.soria .dojoxRadioButtonSelected {
+ background:#b7cdee url('../../../dijit/themes/soria/images/gradientTopBg.png') repeat-x top center;
+}
+
+.dojoxRadioButtonLabel {
+ padding:8px;
+ text-align:center;
+ display:block;
+}
+
+.dojoxRadioGroup {
+ overflow:hidden;
+ border:0;
+ margin:0; padding:0;
+}
+.dojoxRadioView {
+ position:relative;
+ overflow:hidden;
+ height:100%;
+}
diff --git a/includes/js/dojox/layout/resources/ResizeHandle.css b/includes/js/dojox/layout/resources/ResizeHandle.css
new file mode 100644
index 0000000..b68f2d4
--- /dev/null
+++ b/includes/js/dojox/layout/resources/ResizeHandle.css
@@ -0,0 +1,28 @@
+.dojoxResizeHandle {
+ float: right;
+ position: absolute;
+ right: 2px;
+ bottom: 2px;
+ width: 13px;
+ height: 13px;
+ z-index: 20;
+ background-image: url('icons/resize.png');
+ line-height: 0px;
+}
+.dojoxResizeNW {
+ cursor: nw-resize;
+}
+.dojoxResizeNE {
+ cursor: ne-resize;
+}
+.dojoxResizeW {
+ cursor: w-resize;
+}
+.dojoxResizeN {
+ cursor: n-resize;
+}
+.dojoxResizeHandleClone {
+ position:absolute; top:0; left:0;
+ border:1px dashed #666;
+ z-index:999;
+}
diff --git a/includes/js/dojox/layout/resources/ResizeHandle.css.commented.css b/includes/js/dojox/layout/resources/ResizeHandle.css.commented.css
new file mode 100644
index 0000000..9e5b66d
--- /dev/null
+++ b/includes/js/dojox/layout/resources/ResizeHandle.css.commented.css
@@ -0,0 +1,34 @@
+.dojoxResizeHandle {
+ float: right;
+ position: absolute;
+ right: 2px;
+ bottom: 2px;
+ width: 13px;
+ height: 13px;
+ z-index: 20;
+ background-image: url('icons/resize.png');
+ line-height: 0px;
+}
+
+.dojoxResizeNW {
+ cursor: nw-resize;
+}
+
+.dojoxResizeNE {
+ cursor: ne-resize;
+}
+
+.dojoxResizeW {
+ cursor: w-resize;
+}
+
+
+.dojoxResizeN {
+ cursor: n-resize;
+}
+
+.dojoxResizeHandleClone {
+ position:absolute; top:0; left:0;
+ border:1px dashed #666;
+ z-index:999;
+}
diff --git a/includes/js/dojox/layout/resources/ScrollPane.css b/includes/js/dojox/layout/resources/ScrollPane.css
new file mode 100644
index 0000000..610687f
--- /dev/null
+++ b/includes/js/dojox/layout/resources/ScrollPane.css
@@ -0,0 +1,21 @@
+.dojoxScrollWindow {
+ position:relative;
+}
+.dojoxScrollHelper .helperInner {
+ visibility: hidden;
+}
+.dojoxScrollHelper {
+ border:1px solid #b7b7b7;
+ width:4px;
+ background:#ededed;
+ height:4px;
+ position:absolute;
+ top:4px;
+ left:4px;
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+}
+.dojoxScrollWrapper {
+ width:100%;
+}
diff --git a/includes/js/dojox/layout/resources/ScrollPane.css.commented.css b/includes/js/dojox/layout/resources/ScrollPane.css.commented.css
new file mode 100644
index 0000000..c5d6914
--- /dev/null
+++ b/includes/js/dojox/layout/resources/ScrollPane.css.commented.css
@@ -0,0 +1,24 @@
+.dojoxScrollWindow {
+ position:relative;
+}
+
+.dojoxScrollHelper .helperInner {
+ visibility: hidden;
+}
+
+.dojoxScrollHelper {
+ border:1px solid #b7b7b7;
+ width:4px;
+ background:#ededed;
+ height:4px;
+ position:absolute;
+ top:4px;
+ left:4px;
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+}
+
+.dojoxScrollWrapper {
+ width:100%;
+}
diff --git a/includes/js/dojox/layout/resources/ScrollPane.html b/includes/js/dojox/layout/resources/ScrollPane.html
new file mode 100644
index 0000000..4b3df77
--- /dev/null
+++ b/includes/js/dojox/layout/resources/ScrollPane.html
@@ -0,0 +1,6 @@
+<div class="dojoxScrollWindow" dojoAttachEvent="onmouseenter: _enter, onmouseleave: _leave">
+ <div class="dojoxScrollWrapper" style="${style}" dojoAttachPoint="wrapper" dojoAttachEvent="onmousemove: _calc">
+ <div class="dojoxScrollPane" dojoAttachPoint="containerNode"></div>
+ </div>
+ <div dojoAttachPoint="helper" class="dojoxScrollHelper"><span class="helperInner">|</span></div>
+</div> \ No newline at end of file
diff --git a/includes/js/dojox/layout/resources/icons/resize.png b/includes/js/dojox/layout/resources/icons/resize.png
new file mode 100644
index 0000000..17f39d0
--- /dev/null
+++ b/includes/js/dojox/layout/resources/icons/resize.png
Binary files differ