dojo_src 1.4.102 → 1.5.0
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/Rakefile +2 -3
- data/bin/dojofy +1 -1
- data/dojo/dijit/Calendar.js +62 -24
- data/dojo/dijit/CheckedMenuItem.js +1 -1
- data/dojo/dijit/ColorPalette.js +43 -288
- data/dojo/dijit/Dialog.js +25 -24
- data/dojo/dijit/DialogUnderlay.js +3 -1
- data/dojo/dijit/Editor.js +229 -68
- data/dojo/dijit/InlineEditBox.js +72 -35
- data/dojo/dijit/LICENSE +1 -1
- data/dojo/dijit/Menu.js +75 -76
- data/dojo/dijit/MenuBar.js +5 -10
- data/dojo/dijit/MenuItem.js +18 -11
- data/dojo/dijit/PopupMenuItem.js +1 -0
- data/dojo/dijit/ProgressBar.js +1 -1
- data/dojo/dijit/TitlePane.js +18 -38
- data/dojo/dijit/Toolbar.js +4 -1
- data/dojo/dijit/ToolbarSeparator.js +1 -1
- data/dojo/dijit/Tooltip.js +7 -14
- data/dojo/dijit/Tree.js +116 -64
- data/dojo/dijit/_Container.js +5 -11
- data/dojo/dijit/_CssStateMixin.js +252 -0
- data/dojo/dijit/_DialogMixin.js +3 -1
- data/dojo/dijit/_HasDropDown.js +48 -58
- data/dojo/dijit/_KeyNavContainer.js +4 -4
- data/dojo/dijit/_PaletteMixin.js +313 -0
- data/dojo/dijit/_Templated.js +2 -1
- data/dojo/dijit/_TimePicker.js +11 -6
- data/dojo/dijit/_Widget.js +125 -63
- data/dojo/dijit/_base/focus.js +15 -9
- data/dojo/dijit/_base/manager.js +210 -183
- data/dojo/dijit/_base/place.js +3 -52
- data/dojo/dijit/_base/popup.js +101 -89
- data/dojo/dijit/_base/scroll.js +4 -91
- data/dojo/dijit/_base/sniff.js +3 -66
- data/dojo/dijit/_base/typematic.js +31 -27
- data/dojo/dijit/_base/window.js +3 -23
- data/dojo/dijit/_editor/RichText.js +180 -74
- data/dojo/dijit/_editor/_Plugin.js +17 -16
- data/dojo/dijit/_editor/html.js +1 -1
- data/dojo/dijit/_editor/nls/FontChoice.js +2 -1
- data/dojo/dijit/_editor/nls/ar/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/ar/commands.js +12 -6
- data/dojo/dijit/_editor/nls/ca/LinkDialog.js +8 -3
- data/dojo/dijit/_editor/nls/ca/commands.js +4 -0
- data/dojo/dijit/_editor/nls/da/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/da/commands.js +6 -1
- data/dojo/dijit/_editor/nls/el/LinkDialog.js +8 -2
- data/dojo/dijit/_editor/nls/el/commands.js +7 -2
- data/dojo/dijit/_editor/nls/fi/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/fi/commands.js +7 -2
- data/dojo/dijit/_editor/nls/he/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/he/commands.js +9 -2
- data/dojo/dijit/_editor/nls/ja/commands.js +9 -10
- data/dojo/dijit/_editor/nls/nb/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/nb/commands.js +5 -0
- data/dojo/dijit/_editor/nls/nl/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/nl/commands.js +5 -0
- data/dojo/dijit/_editor/nls/pt-pt/LinkDialog.js +8 -2
- data/dojo/dijit/_editor/nls/pt-pt/commands.js +5 -0
- data/dojo/dijit/_editor/nls/ro/FontChoice.js +27 -0
- data/dojo/dijit/_editor/nls/ro/LinkDialog.js +13 -0
- data/dojo/dijit/_editor/nls/ro/commands.js +48 -0
- data/dojo/dijit/_editor/nls/sk/LinkDialog.js +9 -4
- data/dojo/dijit/_editor/nls/sk/commands.js +4 -0
- data/dojo/dijit/_editor/nls/sl/LinkDialog.js +6 -1
- data/dojo/dijit/_editor/nls/sl/commands.js +12 -8
- data/dojo/dijit/_editor/nls/sv/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/sv/commands.js +8 -2
- data/dojo/dijit/_editor/nls/th/LinkDialog.js +6 -1
- data/dojo/dijit/_editor/nls/th/commands.js +6 -2
- data/dojo/dijit/_editor/nls/tr/LinkDialog.js +7 -1
- data/dojo/dijit/_editor/nls/tr/commands.js +5 -0
- data/dojo/dijit/_editor/nls/zh-tw/LinkDialog.js +1 -1
- data/dojo/dijit/_editor/nls/zh/commands.js +3 -3
- data/dojo/dijit/_editor/plugins/AlwaysShowToolbar.js +2 -2
- data/dojo/dijit/_editor/plugins/EnterKeyHandling.js +85 -4
- data/dojo/dijit/_editor/plugins/FontChoice.js +194 -32
- data/dojo/dijit/_editor/plugins/FullScreen.js +76 -32
- data/dojo/dijit/_editor/plugins/LinkDialog.js +79 -22
- data/dojo/dijit/_editor/plugins/NewPage.js +7 -2
- data/dojo/dijit/_editor/plugins/Print.js +6 -3
- data/dojo/dijit/_editor/plugins/TabIndent.js +2 -2
- data/dojo/dijit/_editor/plugins/TextColor.js +75 -23
- data/dojo/dijit/_editor/plugins/ToggleDir.js +1 -1
- data/dojo/dijit/_editor/plugins/ViewSource.js +53 -28
- data/dojo/dijit/_editor/range.js +22 -19
- data/dojo/dijit/_editor/selection.js +56 -4
- data/dojo/dijit/dijit-all.js +5 -1
- data/dojo/dijit/form/Button.js +24 -58
- data/dojo/dijit/form/CheckBox.js +27 -19
- data/dojo/dijit/form/ComboBox.js +73 -54
- data/dojo/dijit/form/CurrencyTextBox.js +8 -5
- data/dojo/dijit/form/FilteringSelect.js +14 -6
- data/dojo/dijit/form/Form.js +26 -16
- data/dojo/dijit/form/HorizontalRuleLabels.js +2 -2
- data/dojo/dijit/form/HorizontalSlider.js +12 -1
- data/dojo/dijit/form/MultiSelect.js +3 -3
- data/dojo/dijit/form/NumberSpinner.js +4 -5
- data/dojo/dijit/form/NumberTextBox.js +25 -17
- data/dojo/dijit/form/Select.js +24 -18
- data/dojo/dijit/form/SimpleTextarea.js +2 -2
- data/dojo/dijit/form/TextBox.js +72 -12
- data/dojo/dijit/form/Textarea.js +8 -1
- data/dojo/dijit/form/TimeTextBox.js +3 -2
- data/dojo/dijit/form/ValidationTextBox.js +56 -42
- data/dojo/dijit/form/VerticalRuleLabels.js +4 -1
- data/dojo/dijit/form/VerticalSlider.js +0 -30
- data/dojo/dijit/form/_DateTimeTextBox.js +23 -17
- data/dojo/dijit/form/_FormMixin.js +23 -19
- data/dojo/dijit/form/_FormSelectWidget.js +3 -3
- data/dojo/dijit/form/_FormWidget.js +66 -164
- data/dojo/dijit/form/_Spinner.js +18 -37
- data/dojo/dijit/form/nls/ro/ComboBox.js +5 -0
- data/dojo/dijit/form/nls/ro/Textarea.js +8 -0
- data/dojo/dijit/form/nls/ro/validate.js +6 -0
- data/dojo/dijit/form/templates/Button.html +15 -16
- data/dojo/dijit/form/templates/CheckBox.html +3 -3
- data/dojo/dijit/form/templates/ComboBox.html +13 -14
- data/dojo/dijit/form/templates/ComboButton.html +13 -10
- data/dojo/dijit/form/templates/DropDownButton.html +18 -20
- data/dojo/dijit/form/templates/HorizontalSlider.html +7 -7
- data/dojo/dijit/form/templates/Select.html +7 -8
- data/dojo/dijit/form/templates/Spinner.html +23 -24
- data/dojo/dijit/form/templates/TextBox.html +6 -4
- data/dojo/dijit/form/templates/ValidationTextBox.html +8 -10
- data/dojo/dijit/form/templates/VerticalSlider.html +8 -9
- data/dojo/dijit/icons/commonIcons.css +164 -0
- data/dojo/dijit/icons/commonIcons_rtl.css +127 -0
- data/dojo/dijit/icons/editorIcons.css +78 -0
- data/dojo/dijit/icons/editorIcons_rtl.css +23 -0
- data/dojo/dijit/icons/images/commonIconsObjActDisabled.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActDisabled_rtl.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActEnabled.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActEnabled8bit.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActEnabled8bit_rtl.png +0 -0
- data/dojo/dijit/icons/images/commonIconsObjActEnabled_rtl.png +0 -0
- data/dojo/dijit/icons/images/editorIconsDisabled.png +0 -0
- data/dojo/dijit/icons/images/editorIconsDisabled_rtl.png +0 -0
- data/dojo/dijit/icons/images/editorIconsEnabled.png +0 -0
- data/dojo/dijit/icons/images/editorIconsEnabled_rtl.png +0 -0
- data/dojo/dijit/icons/images/loadingAnimation_rtl.gif +0 -0
- data/dojo/dijit/layout/AccordionContainer.js +214 -104
- data/dojo/dijit/layout/BorderContainer.js +50 -38
- data/dojo/dijit/layout/ContentPane.js +13 -11
- data/dojo/dijit/layout/ScrollingTabController.js +29 -28
- data/dojo/dijit/layout/SplitContainer.js +0 -1
- data/dojo/dijit/layout/StackContainer.js +15 -22
- data/dojo/dijit/layout/StackController.js +15 -18
- data/dojo/dijit/layout/TabContainer.js +2 -0
- data/dojo/dijit/layout/TabController.js +21 -17
- data/dojo/dijit/layout/_LayoutWidget.js +0 -1
- data/dojo/dijit/layout/templates/AccordionButton.html +5 -3
- data/dojo/dijit/layout/templates/ScrollingTabController.html +13 -8
- data/dojo/dijit/layout/templates/_ScrollingTabControllerButton.html +4 -5
- data/dojo/dijit/layout/templates/_TabButton.html +10 -9
- data/dojo/dijit/nls/ro/common.js +7 -0
- data/dojo/dijit/nls/ro/loading.js +5 -0
- data/dojo/dijit/robot.js +0 -97
- data/dojo/dijit/robotx.js +1 -1
- data/dojo/dijit/templates/Calendar.html +6 -6
- data/dojo/dijit/templates/CheckedMenuItem.html +3 -4
- data/dojo/dijit/templates/ColorPalette.html +4 -3
- data/dojo/dijit/templates/Dialog.html +1 -1
- data/dojo/dijit/templates/Menu.html +1 -1
- data/dojo/dijit/templates/MenuBarItem.html +1 -1
- data/dojo/dijit/templates/MenuItem.html +3 -3
- data/dojo/dijit/templates/MenuSeparator.html +6 -2
- data/dojo/dijit/templates/ProgressBar.html +1 -2
- data/dojo/dijit/templates/TimePicker.html +1 -1
- data/dojo/dijit/templates/TitlePane.html +8 -6
- data/dojo/dijit/templates/TreeNode.html +3 -3
- data/dojo/dijit/tests/Tree.html +16 -30
- data/dojo/dijit/tests/Tree_with_JRS.html +33 -27
- data/dojo/dijit/tests/Widget-placeAt.html +6 -6
- data/dojo/dijit/tests/_Container.html +1 -1
- data/dojo/dijit/tests/_Templated-widgetsInTemplate.html +2 -2
- data/dojo/dijit/tests/_Widget-attr.html +26 -7
- data/dojo/dijit/tests/_Widget-connect-performance.html +1 -1
- data/dojo/dijit/tests/_Widget-deferredConnect.html +1 -1
- data/dojo/dijit/tests/_Widget-lifecycle.html +1 -1
- data/dojo/dijit/tests/_Widget-ondijitclick.html +1 -1
- data/dojo/dijit/tests/_Widget-subscribe.html +1 -1
- data/dojo/dijit/tests/_altCalendar.html +12 -11
- data/dojo/dijit/tests/_base/module.js +5 -9
- data/dojo/dijit/tests/_base/place.html +2 -1
- data/dojo/dijit/tests/_base/robot/FocusManager.html +0 -2
- data/dojo/dijit/tests/_base/robot/focus_mouse.html +0 -1
- data/dojo/dijit/tests/_base/robot/popup.html +0 -1
- data/dojo/dijit/tests/_base/robot/typematic.html +72 -0
- data/dojo/dijit/tests/_base/tabindex.html +1 -1
- data/dojo/dijit/tests/_base/test_FocusManager.html +3 -2
- data/dojo/dijit/tests/_base/test_focusWidget.html +1 -1
- data/dojo/dijit/tests/_base/test_typematic.html +10 -3
- data/dojo/dijit/tests/_testCommon.js +28 -12
- data/dojo/dijit/tests/bidi.html +188 -0
- data/dojo/dijit/tests/editor/BackForwardState.html +2 -2
- data/dojo/dijit/tests/editor/EnterKeyHandling.html +31 -11
- data/dojo/dijit/tests/editor/_Editor.html +5 -4
- data/dojo/dijit/tests/editor/nls_8859-2.html +4 -4
- data/dojo/dijit/tests/editor/nls_sjis.html +5 -5
- data/dojo/dijit/tests/editor/nls_utf8.html +2 -2
- data/dojo/dijit/tests/editor/robot/BackForwardState.html +8 -9
- data/dojo/dijit/tests/editor/robot/Editor_FontChoice.html +282 -757
- data/dojo/dijit/tests/editor/robot/Editor_FullScreen.html +55 -55
- data/dojo/dijit/tests/editor/robot/Editor_LinkDialog.html +502 -123
- data/dojo/dijit/tests/editor/robot/Editor_NewPage.html +11 -11
- data/dojo/dijit/tests/editor/robot/Editor_ViewSource.html +56 -56
- data/dojo/dijit/tests/editor/robot/Editor_a11y.html +14 -14
- data/dojo/dijit/tests/editor/robot/Editor_misc.html +120 -4
- data/dojo/dijit/tests/editor/robot/Editor_mouse.html +4 -4
- data/dojo/dijit/tests/editor/robot/EnterKeyHandling.html +128 -16
- data/dojo/dijit/tests/editor/test_CustomPlugin.html +4 -4
- data/dojo/dijit/tests/editor/test_Editor.html +103 -70
- data/dojo/dijit/tests/editor/test_FontChoice.html +19 -5
- data/dojo/dijit/tests/editor/test_FullScreen.html +2 -2
- data/dojo/dijit/tests/editor/test_LinkDialog.html +2 -2
- data/dojo/dijit/tests/editor/test_NewPage.html +2 -2
- data/dojo/dijit/tests/editor/test_Print.html +2 -2
- data/dojo/dijit/tests/editor/test_TabIndent.html +2 -2
- data/dojo/dijit/tests/editor/test_ToggleDir.html +2 -2
- data/dojo/dijit/tests/editor/test_ToggleDir_rtl.html +2 -2
- data/dojo/dijit/tests/editor/test_ViewSource.html +2 -2
- data/dojo/dijit/tests/editor/test_resize.html +1 -1
- data/dojo/dijit/tests/form/Form.html +30 -16
- data/dojo/dijit/tests/form/FormInvalid.html +4 -4
- data/dojo/dijit/tests/form/TextBox_sizes.html +532 -0
- data/dojo/dijit/tests/form/TextBox_sizes.js +456 -0
- data/dojo/dijit/tests/form/_autoComplete.html +35 -15
- data/dojo/dijit/tests/form/module.js +25 -1
- data/dojo/dijit/tests/form/robot/Button_a11y.html +27 -14
- data/dojo/dijit/tests/form/robot/Button_mouse.html +429 -18
- data/dojo/dijit/tests/form/robot/DateTextBox.html +31 -34
- data/dojo/dijit/tests/form/robot/Form.html +3 -4
- data/dojo/dijit/tests/form/robot/Select.html +410 -0
- data/dojo/dijit/tests/form/robot/Slider_a11y.html +27 -28
- data/dojo/dijit/tests/form/robot/Slider_mouse.html +29 -29
- data/dojo/dijit/tests/form/robot/Spinner_a11y.html +88 -51
- data/dojo/dijit/tests/form/robot/Spinner_mouse.html +36 -37
- data/dojo/dijit/tests/form/robot/Textarea.html +178 -0
- data/dojo/dijit/tests/form/robot/TimeTextBox.html +81 -0
- data/dojo/dijit/tests/form/robot/_autoComplete_a11y.html +128 -47
- data/dojo/dijit/tests/form/robot/_autoComplete_mouse.html +171 -24
- data/dojo/dijit/tests/form/robot/test_validate.html +362 -102
- data/dojo/dijit/tests/form/robot/validationMessages.html +470 -0
- data/dojo/dijit/tests/form/runTests.html +9 -0
- data/dojo/dijit/tests/form/test_Button.html +56 -10
- data/dojo/dijit/tests/form/test_CheckBox.html +212 -61
- data/dojo/dijit/tests/form/test_ComboBox_destroy.html +2 -2
- data/dojo/dijit/tests/form/test_DateTextBox.html +17 -12
- data/dojo/dijit/tests/form/test_Form_onsubmit.html +2 -2
- data/dojo/dijit/tests/form/test_MultiSelect.html +7 -7
- data/dojo/dijit/tests/form/test_Select.html +180 -97
- data/dojo/dijit/tests/form/test_SimpleTextarea.html +16 -11
- data/dojo/dijit/tests/form/test_Slider.html +4 -4
- data/dojo/dijit/tests/form/test_Spinner.html +10 -11
- data/dojo/dijit/tests/form/test_Textarea.html +80 -76
- data/dojo/dijit/tests/form/test_TimeTextBox.html +2 -2
- data/dojo/dijit/tests/form/test_validStatePerformance.html +6 -6
- data/dojo/dijit/tests/form/test_validate.html +34 -23
- data/dojo/dijit/tests/form/test_validationState.html +8 -8
- data/dojo/dijit/tests/general-module.js +1 -0
- data/dojo/dijit/tests/helpers.js +2 -2
- data/dojo/dijit/tests/i18n/calendar.html +2 -2
- data/dojo/dijit/tests/i18n/currency.html +1 -1
- data/dojo/dijit/tests/i18n/date.html +1 -1
- data/dojo/dijit/tests/i18n/digit.html +1 -1
- data/dojo/dijit/tests/i18n/module.js +6 -6
- data/dojo/dijit/tests/i18n/number.html +1 -1
- data/dojo/dijit/tests/i18n/textbox.html +1 -1
- data/dojo/dijit/tests/i18n/time.html +1 -1
- data/dojo/dijit/tests/images/copy.gif +0 -0
- data/dojo/dijit/tests/images/cut.gif +0 -0
- data/dojo/dijit/tests/images/note.gif +0 -0
- data/dojo/dijit/tests/images/paste.gif +0 -0
- data/dojo/dijit/tests/infrastructure-module.js +7 -7
- data/dojo/dijit/tests/layout/AccordionContainer.html +81 -23
- data/dojo/dijit/tests/layout/ContentPane.html +40 -40
- data/dojo/dijit/tests/layout/ContentPaneLayout.html +6 -6
- data/dojo/dijit/tests/layout/TabContainer.html +20 -20
- data/dojo/dijit/tests/layout/getResponse.php +1 -1
- data/dojo/dijit/tests/layout/module.js +9 -2
- data/dojo/dijit/tests/layout/nestedStack.html +1 -1
- data/dojo/dijit/tests/layout/robot/AccordionContainer_a11y.html +68 -0
- data/dojo/dijit/tests/layout/robot/AccordionContainer_mouse.html +53 -0
- data/dojo/dijit/tests/layout/robot/BorderContainer.html +358 -0
- data/dojo/dijit/tests/layout/robot/TabContainer_a11y.html +29 -12
- data/dojo/dijit/tests/layout/robot/TabContainer_mouse.html +19 -13
- data/dojo/dijit/tests/layout/test_AccordionContainer.html +12 -8
- data/dojo/dijit/tests/layout/test_AccordionContainerDestroy.html +3 -3
- data/dojo/dijit/tests/layout/test_BorderContainer.html +21 -19
- data/dojo/dijit/tests/layout/test_BorderContainer_complex.html +2 -2
- data/dojo/dijit/tests/layout/test_BorderContainer_experimental.html +2 -2
- data/dojo/dijit/tests/layout/test_BorderContainer_full.html +2 -2
- data/dojo/dijit/tests/layout/test_BorderContainer_nested.html +2 -2
- data/dojo/dijit/tests/layout/test_BorderContainer_prog.html +2 -2
- data/dojo/dijit/tests/layout/test_ContentPane.html +7 -7
- data/dojo/dijit/tests/layout/test_ContentPane_prog.html +4 -4
- data/dojo/dijit/tests/layout/test_Gui.html +2 -2
- data/dojo/dijit/tests/layout/test_LayoutContainer.html +2 -2
- data/dojo/dijit/tests/layout/test_SplitContainer.html +1 -1
- data/dojo/dijit/tests/layout/test_StackContainer.html +6 -6
- data/dojo/dijit/tests/layout/test_StackContainer_code.html +2 -2
- data/dojo/dijit/tests/layout/test_TabContainer.html +10 -10
- data/dojo/dijit/tests/layout/test_TabContainerTitlePane.html +2 -2
- data/dojo/dijit/tests/layout/test_TabContainer_noLayout.html +2 -2
- data/dojo/dijit/tests/layout/test_TabContainer_prog.html +2 -2
- data/dojo/dijit/tests/layout/test_TabContainer_remote.html +2 -2
- data/dojo/dijit/tests/layout/test_refreshOnShow.html +2 -2
- data/dojo/dijit/tests/robot/Calendar_a11y.html +6 -7
- data/dojo/dijit/tests/robot/ColorPalette.html +38 -21
- data/dojo/dijit/tests/robot/Dialog_a11y.html +58 -17
- data/dojo/dijit/tests/robot/Dialog_mouse.html +0 -1
- data/dojo/dijit/tests/robot/InlineEditBox.html +135 -24
- data/dojo/dijit/tests/robot/Menu_a11y.html +7 -7
- data/dojo/dijit/tests/robot/Menu_mouse.html +2 -11
- data/dojo/dijit/tests/robot/TitlePane.html +20 -20
- data/dojo/dijit/tests/robot/Toolbar.html +3 -4
- data/dojo/dijit/tests/robot/TooltipDialog_a11y.html +233 -110
- data/dojo/dijit/tests/robot/TooltipDialog_mouse.html +121 -0
- data/dojo/dijit/tests/robot/Tooltip_a11y.html +15 -15
- data/dojo/dijit/tests/robot/Tooltip_mouse.html +0 -1
- data/dojo/dijit/tests/robot/Tree_a11y.html +74 -1
- data/dojo/dijit/tests/robot/Tree_dnd.html +5 -5
- data/dojo/dijit/tests/robot/Tree_dnd_multiParent.html +4 -4
- data/dojo/dijit/tests/robot/_Widget-deferredConnect.html +0 -1
- data/dojo/dijit/tests/robot/_Widget-ondijitclick_a11y.html +0 -1
- data/dojo/dijit/tests/robot/_Widget-ondijitclick_mouse.html +0 -1
- data/dojo/dijit/tests/test.html +1 -1
- data/dojo/dijit/tests/test_Calendar.html +4 -4
- data/dojo/dijit/tests/test_ColorPalette.html +3 -3
- data/dojo/dijit/tests/test_ColorPalette_quirks.html +5 -0
- data/dojo/dijit/tests/test_Declaration.html +2 -2
- data/dojo/dijit/tests/test_Dialog.html +65 -4
- data/dojo/dijit/tests/test_Dialog_focusDestroy.html +2 -2
- data/dojo/dijit/tests/test_InlineEditBox.html +14 -5
- data/dojo/dijit/tests/test_Menu.html +10 -8
- data/dojo/dijit/tests/test_Menu_iframe.html +1 -1
- data/dojo/dijit/tests/test_ProgressBar.html +2 -2
- data/dojo/dijit/tests/test_TitlePane.html +18 -18
- data/dojo/dijit/tests/test_Toolbar.html +2 -2
- data/dojo/dijit/tests/test_Tooltip.html +3 -3
- data/dojo/dijit/tests/test_TooltipDialog.html +20 -10
- data/dojo/dijit/tests/test_Tree.html +26 -20
- data/dojo/dijit/tests/test_Tree_Notification_API_Support.html +2 -2
- data/dojo/dijit/tests/test_bgIframe.html +2 -2
- data/dojo/dijit/tests/test_instantiate.html +2 -2
- data/dojo/dijit/tests/tree/module.js +2 -2
- data/dojo/dijit/tests/tree/test_CustomLabel.html +2 -2
- data/dojo/dijit/tests/tree/test_Tree_DnD.html +2 -2
- data/dojo/dijit/tests/tree/test_Tree_Programmatic.html +2 -2
- data/dojo/dijit/tests/tree/test_Tree_v1.html +3 -3
- data/dojo/dijit/themes/a11y/colors3x4-rtl.png +0 -0
- data/dojo/dijit/themes/a11y/colors3x4.png +0 -0
- data/dojo/dijit/themes/a11y/colors7x10-rtl.png +0 -0
- data/dojo/dijit/themes/a11y/colors7x10.png +0 -0
- data/dojo/dijit/themes/claro/Calendar.css +257 -0
- data/dojo/dijit/themes/claro/Calendar_rtl.css +19 -0
- data/dojo/dijit/themes/claro/ColorPalette.css +44 -0
- data/dojo/dijit/themes/claro/Common.css +79 -0
- data/dojo/dijit/themes/claro/Dialog.css +212 -0
- data/dojo/dijit/themes/claro/Dialog_rtl.css +10 -0
- data/dojo/dijit/themes/claro/Editor.css +56 -0
- data/dojo/dijit/themes/claro/Editor_rtl.css +7 -0
- data/dojo/dijit/themes/claro/InlineEditBox.css +23 -0
- data/dojo/dijit/themes/claro/Menu.css +182 -0
- data/dojo/dijit/themes/claro/Menu_rtl.css +9 -0
- data/dojo/dijit/themes/claro/ProgressBar.css +53 -0
- data/dojo/dijit/themes/claro/TimePicker.css +125 -0
- data/dojo/dijit/themes/claro/TimePicker_rtl.css +10 -0
- data/dojo/dijit/themes/claro/TitlePane.css +73 -0
- data/dojo/dijit/themes/claro/TitlePane_rtl.css +4 -0
- data/dojo/dijit/themes/claro/Toolbar.css +170 -0
- data/dojo/dijit/themes/claro/Tree.css +122 -0
- data/dojo/dijit/themes/claro/claro.css +29 -0
- data/dojo/dijit/themes/claro/claro_rtl.css +15 -0
- data/dojo/dijit/themes/claro/document.css +109 -0
- data/dojo/dijit/themes/claro/form/Button.css +168 -0
- data/dojo/dijit/themes/claro/form/Button_rtl.css +22 -0
- data/dojo/dijit/themes/claro/form/Checkbox.css +77 -0
- data/dojo/dijit/themes/claro/form/Common.css +176 -0
- data/dojo/dijit/themes/claro/form/Common_rtl.css +10 -0
- data/dojo/dijit/themes/claro/form/NumberSpinner.css +143 -0
- data/dojo/dijit/themes/claro/form/RadioButton.css +82 -0
- data/dojo/dijit/themes/claro/form/Select.css +124 -0
- data/dojo/dijit/themes/claro/form/Select_rtl.css +4 -0
- data/dojo/dijit/themes/claro/form/Slider.css +359 -0
- data/dojo/dijit/themes/claro/form/Slider_rtl.css +31 -0
- data/dojo/dijit/themes/claro/form/images/button.png +0 -0
- data/dojo/dijit/themes/claro/form/images/buttonArrows.png +0 -0
- data/dojo/dijit/themes/claro/form/images/button_grad_d.png +0 -0
- data/dojo/dijit/themes/claro/form/images/checkboxAndRadioButtons_IE6.png +0 -0
- data/dojo/dijit/themes/claro/form/images/checkboxRadioButtonStates.png +0 -0
- data/dojo/dijit/themes/claro/form/images/commonFormArrows.png +0 -0
- data/dojo/dijit/themes/claro/form/images/error.png +0 -0
- data/dojo/dijit/themes/claro/form/images/formHighlight.png +0 -0
- data/dojo/dijit/themes/claro/form/images/shadow.png +0 -0
- data/dojo/dijit/themes/claro/form/images/sliderHorizontal.png +0 -0
- data/dojo/dijit/themes/claro/form/images/sliderThumbs.png +0 -0
- data/dojo/dijit/themes/claro/form/images/sliderVertical.png +0 -0
- data/dojo/dijit/themes/claro/form/images/textBox_back.png +0 -0
- data/dojo/dijit/themes/claro/images/calendarArrows.png +0 -0
- data/dojo/dijit/themes/claro/images/calendarArrows8bit.png +0 -0
- data/dojo/dijit/themes/claro/images/calendarContainerImages.png +0 -0
- data/dojo/dijit/themes/claro/images/checkmarkNoBorder.gif +0 -0
- data/dojo/dijit/themes/claro/images/checkmarkNoBorder.png +0 -0
- data/dojo/dijit/themes/claro/images/commonHighlight.png +0 -0
- data/dojo/dijit/themes/claro/images/dialogCloseIcon.png +0 -0
- data/dojo/dijit/themes/claro/images/dialogCloseIcon8bit.png +0 -0
- data/dojo/dijit/themes/claro/images/dnd.png +0 -0
- data/dojo/dijit/themes/claro/images/loading.gif +0 -0
- data/dojo/dijit/themes/claro/images/loadingAnimation.gif +0 -0
- data/dojo/dijit/themes/claro/images/menuHighlight.png +0 -0
- data/dojo/dijit/themes/claro/images/progressBarAnim.gif +0 -0
- data/dojo/dijit/themes/claro/images/progressBarEmpty.png +0 -0
- data/dojo/dijit/themes/claro/images/progressBarFull.png +0 -0
- data/dojo/dijit/themes/claro/images/spriteArrows.png +0 -0
- data/dojo/dijit/themes/claro/images/titlebar.png +0 -0
- data/dojo/dijit/themes/claro/images/tooltip.png +0 -0
- data/dojo/dijit/themes/claro/images/tooltip8bit.png +0 -0
- data/dojo/dijit/themes/claro/images/treeExpandImages.png +0 -0
- data/dojo/dijit/themes/claro/images/treeExpandImages8bit.png +0 -0
- data/dojo/dijit/themes/claro/images/treeExpand_loading.gif +0 -0
- data/dojo/dijit/themes/claro/layout/AccordionContainer.css +108 -0
- data/dojo/dijit/themes/claro/layout/BorderContainer.css +134 -0
- data/dojo/dijit/themes/claro/layout/ContentPane.css +40 -0
- data/dojo/dijit/themes/claro/layout/TabContainer.css +439 -0
- data/dojo/dijit/themes/claro/layout/TabContainer_rtl.css +77 -0
- data/dojo/dijit/themes/claro/layout/images/accordion.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/splitterHorizontalHover.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/splitterVerticalHover.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabBottom.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabClose.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabLeft.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabNested.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabRight.png +0 -0
- data/dojo/dijit/themes/claro/layout/images/tabTop.png +0 -0
- data/dojo/dijit/themes/dijit.css +633 -452
- data/dojo/dijit/themes/dijit_rtl.css +70 -59
- data/dojo/dijit/themes/nihilo/Calendar.css +0 -14
- data/dojo/dijit/themes/nihilo/Dialog.css +2 -5
- data/dojo/dijit/themes/nihilo/Editor.css +3 -58
- data/dojo/dijit/themes/nihilo/Editor_rtl.css +2 -6
- data/dojo/dijit/themes/nihilo/TimePicker.css +1 -11
- data/dojo/dijit/themes/nihilo/TimePicker_rtl.css +4 -0
- data/dojo/dijit/themes/nihilo/TitlePane.css +3 -32
- data/dojo/dijit/themes/nihilo/Toolbar.css +2 -2
- data/dojo/dijit/themes/nihilo/Tree.css +2 -20
- data/dojo/dijit/themes/nihilo/Tree_rtl.css +10 -16
- data/dojo/dijit/themes/nihilo/form/Button.css +36 -20
- data/dojo/dijit/themes/nihilo/form/Common.css +11 -37
- data/dojo/dijit/themes/nihilo/form/Select.css +4 -11
- data/dojo/dijit/themes/nihilo/form/Slider.css +0 -8
- data/dojo/dijit/themes/nihilo/layout/AccordionContainer.css +2 -4
- data/dojo/dijit/themes/nihilo/layout/AccordionContainer_rtl.css +1 -1
- data/dojo/dijit/themes/nihilo/layout/TabContainer.css +12 -23
- data/dojo/dijit/themes/nihilo/nihilo.css +2 -1
- data/dojo/dijit/themes/nihilo/nihilo_rtl.css +3 -2
- data/dojo/dijit/themes/soria/Calendar.css +0 -14
- data/dojo/dijit/themes/soria/Dialog.css +2 -5
- data/dojo/dijit/themes/soria/Editor.css +3 -57
- data/dojo/dijit/themes/soria/Editor_rtl.css +2 -7
- data/dojo/dijit/themes/soria/TimePicker.css +0 -10
- data/dojo/dijit/themes/soria/TimePicker_rtl.css +4 -0
- data/dojo/dijit/themes/soria/TitlePane.css +4 -30
- data/dojo/dijit/themes/soria/Toolbar.css +2 -2
- data/dojo/dijit/themes/soria/Tree.css +3 -20
- data/dojo/dijit/themes/soria/Tree_rtl.css +11 -12
- data/dojo/dijit/themes/soria/form/Button.css +38 -29
- data/dojo/dijit/themes/soria/form/Common.css +10 -36
- data/dojo/dijit/themes/soria/form/Select.css +4 -11
- data/dojo/dijit/themes/soria/form/Slider.css +0 -8
- data/dojo/dijit/themes/soria/layout/AccordionContainer.css +2 -4
- data/dojo/dijit/themes/soria/layout/AccordionContainer_rtl.css +1 -1
- data/dojo/dijit/themes/soria/layout/TabContainer.css +17 -34
- data/dojo/dijit/themes/soria/soria.css +2 -2
- data/dojo/dijit/themes/soria/soria_rtl.css +3 -2
- data/dojo/dijit/themes/themeTester.html +215 -100
- data/dojo/dijit/themes/tundra/Calendar.css +9 -20
- data/dojo/dijit/themes/tundra/Calendar_rtl.css +2 -2
- data/dojo/dijit/themes/tundra/Dialog.css +6 -25
- data/dojo/dijit/themes/tundra/Dialog_rtl.css +1 -1
- data/dojo/dijit/themes/tundra/Editor.css +5 -58
- data/dojo/dijit/themes/tundra/Editor_rtl.css +4 -9
- data/dojo/dijit/themes/tundra/Menu.css +2 -2
- data/dojo/dijit/themes/tundra/Menu_rtl.css +1 -6
- data/dojo/dijit/themes/tundra/TimePicker.css +0 -10
- data/dojo/dijit/themes/tundra/TimePicker_rtl.css +4 -0
- data/dojo/dijit/themes/tundra/TitlePane.css +4 -38
- data/dojo/dijit/themes/tundra/TitlePane_rtl.css +1 -1
- data/dojo/dijit/themes/tundra/Toolbar.css +12 -2
- data/dojo/dijit/themes/tundra/Tree.css +3 -22
- data/dojo/dijit/themes/tundra/Tree_rtl.css +9 -9
- data/dojo/dijit/themes/tundra/form/Button.css +35 -59
- data/dojo/dijit/themes/tundra/form/Common.css +12 -84
- data/dojo/dijit/themes/tundra/form/RadioButton.css +11 -13
- data/dojo/dijit/themes/tundra/form/Select.css +15 -22
- data/dojo/dijit/themes/tundra/form/Slider.css +0 -7
- data/dojo/dijit/themes/tundra/form/Slider_rtl.css +12 -12
- data/dojo/dijit/themes/tundra/layout/AccordionContainer.css +2 -4
- data/dojo/dijit/themes/tundra/layout/SplitContainer.css +0 -4
- data/dojo/dijit/themes/tundra/layout/TabContainer.css +19 -44
- data/dojo/dijit/themes/tundra/layout/TabContainer_rtl.css +21 -9
- data/dojo/dijit/themes/tundra/tundra.css +2 -1
- data/dojo/dijit/themes/tundra/tundra_rtl.css +2 -1
- data/dojo/dijit/tree/TreeStoreModel.js +13 -12
- data/dojo/dojo/DeferredList.js +66 -78
- data/dojo/dojo/LICENSE +1 -1
- data/dojo/dojo/NodeList-fx.js +92 -18
- data/dojo/dojo/Stateful.js +123 -0
- data/dojo/dojo/_base.js +1 -1
- data/dojo/dojo/_base/Deferred.js +211 -301
- data/dojo/dojo/_base/NodeList.js +28 -5
- data/dojo/dojo/_base/_loader/bootstrap.js +5 -16
- data/dojo/dojo/_base/_loader/hostenv_browser.js +42 -24
- data/dojo/dojo/_base/connect.js +13 -13
- data/dojo/dojo/_base/declare.js +81 -17
- data/dojo/dojo/_base/fx.js +75 -77
- data/dojo/dojo/_base/html.js +20 -10
- data/dojo/dojo/_base/json.js +2 -1
- data/dojo/dojo/back.js +7 -0
- data/dojo/dojo/cache.js +7 -8
- data/dojo/dojo/cldr/monetary.js +7 -4
- data/dojo/dojo/cldr/nls/ar/gregorian.js +7 -3
- data/dojo/dojo/cldr/nls/ar/hebrew.js +12 -16
- data/dojo/dojo/cldr/nls/ar/islamic-civil.js +124 -49
- data/dojo/dojo/cldr/nls/ar/islamic.js +61 -70
- data/dojo/dojo/cldr/nls/buddhist.js +236 -0
- data/dojo/dojo/cldr/nls/ca/gregorian.js +152 -148
- data/dojo/dojo/cldr/nls/cs/gregorian.js +110 -100
- data/dojo/dojo/cldr/nls/cs/number.js +1 -1
- data/dojo/dojo/cldr/nls/currency.js +0 -1
- data/dojo/dojo/cldr/nls/da/gregorian.js +144 -145
- data/dojo/dojo/cldr/nls/de/gregorian.js +22 -24
- data/dojo/dojo/cldr/nls/el/gregorian.js +15 -14
- data/dojo/dojo/cldr/nls/en-au/gregorian.js +3 -0
- data/dojo/dojo/cldr/nls/en-ca/gregorian.js +10 -0
- data/dojo/dojo/cldr/nls/en/gregorian.js +12 -10
- data/dojo/dojo/cldr/nls/es/gregorian.js +19 -20
- data/dojo/dojo/cldr/nls/fi/gregorian.js +15 -14
- data/dojo/dojo/cldr/nls/fr/gregorian.js +15 -17
- data/dojo/dojo/cldr/nls/gregorian.js +14 -8
- data/dojo/dojo/cldr/nls/he/gregorian.js +48 -49
- data/dojo/dojo/cldr/nls/he/hebrew.js +23 -56
- data/dojo/dojo/cldr/nls/he/islamic.js +17 -19
- data/dojo/dojo/cldr/nls/hebrew.js +133 -124
- data/dojo/dojo/cldr/nls/hu/gregorian.js +20 -17
- data/dojo/dojo/cldr/nls/islamic.js +132 -129
- data/dojo/dojo/cldr/nls/it/gregorian.js +143 -145
- data/dojo/dojo/cldr/nls/ja/gregorian.js +17 -17
- data/dojo/dojo/cldr/nls/ko/gregorian.js +19 -19
- data/dojo/dojo/cldr/nls/nb/gregorian.js +141 -143
- data/dojo/dojo/cldr/nls/nl/gregorian.js +12 -14
- data/dojo/dojo/cldr/nls/pl/gregorian.js +149 -143
- data/dojo/dojo/cldr/nls/pt-pt/gregorian.js +83 -39
- data/dojo/dojo/cldr/nls/pt/gregorian.js +14 -16
- data/dojo/dojo/cldr/nls/ru/gregorian.js +138 -146
- data/dojo/dojo/cldr/nls/sk/gregorian.js +15 -6
- data/dojo/dojo/cldr/nls/sl/gregorian.js +12 -11
- data/dojo/dojo/cldr/nls/sv/gregorian.js +23 -17
- data/dojo/dojo/cldr/nls/th/buddhist.js +10 -13
- data/dojo/dojo/cldr/nls/th/gregorian.js +140 -136
- data/dojo/dojo/cldr/nls/tr/gregorian.js +13 -13
- data/dojo/dojo/cldr/nls/zh-tw/gregorian.js +15 -2
- data/dojo/dojo/cldr/nls/zh/gregorian.js +17 -14
- data/dojo/dojo/cldr/supplemental.js +10 -10
- data/dojo/dojo/currency.js +27 -14
- data/dojo/dojo/data/ItemFileReadStore.js +22 -21
- data/dojo/dojo/date/locale.js +9 -9
- data/dojo/dojo/date/stamp.js +3 -5
- data/dojo/dojo/dnd/Container.js +3 -1
- data/dojo/dojo/dnd/Manager.js +1 -1
- data/dojo/dojo/dnd/Moveable.js +2 -2
- data/dojo/dojo/dnd/Mover.js +5 -5
- data/dojo/dojo/dnd/Source.js +9 -8
- data/dojo/dojo/dnd/common.js +1 -1
- data/dojo/dojo/dojo.js +6 -18
- data/dojo/dojo/hash.js +20 -15
- data/dojo/dojo/html.js +7 -6
- data/dojo/dojo/nls/ro/colors.js +155 -0
- data/dojo/dojo/number.js +67 -56
- data/dojo/dojo/parser.js +167 -47
- data/dojo/dojo/resources/dojo.css +5 -6
- data/dojo/dojo/robot.js +85 -11
- data/dojo/dojo/tests/NodeList-fx.html +58 -38
- data/dojo/dojo/tests/Stateful.js +36 -0
- data/dojo/dojo/tests/_base/Deferred.js +95 -0
- data/dojo/dojo/tests/_base/NodeList.html +9 -1
- data/dojo/dojo/tests/_base/declare.js +65 -3
- data/dojo/dojo/tests/_base/fx.html +55 -49
- data/dojo/dojo/tests/_base/html.html +7 -0
- data/dojo/dojo/tests/_base/html_rtl.html +1 -0
- data/dojo/dojo/tests/cache.js +7 -0
- data/dojo/dojo/tests/currency.js +3 -2
- data/dojo/dojo/tests/date/locale.js +7 -3
- data/dojo/dojo/tests/date/stamp.js +4 -0
- data/dojo/dojo/tests/dnd/robot/test_dnd.html +1 -1
- data/dojo/dojo/tests/hash.js +26 -1
- data/dojo/dojo/tests/module.js +3 -0
- data/dojo/dojo/tests/number.js +7 -0
- data/dojo/dojo/tests/parser.html +90 -10
- data/dojo/dojo/tests/uacss.js +10 -0
- data/dojo/{dijit/tests/_base → dojo/tests/uacss}/sniffQuirks.html +5 -4
- data/dojo/{dijit/tests/_base → dojo/tests/uacss}/sniffStandards.html +4 -4
- data/dojo/dojo/tests/window.js +11 -0
- data/dojo/{dijit/tests/_base → dojo/tests/window}/test_scroll.html +155 -229
- data/dojo/{dijit/tests/_base/test_scrollStrictDTD.html → dojo/tests/window/test_scrollNoDTD.html} +30 -35
- data/dojo/{dijit/tests/_base/test_scrollNoDTD.html → dojo/tests/window/test_scrollStrictDTD.html} +30 -31
- data/dojo/{dijit/tests/_base → dojo/tests/window}/viewport.html +8 -10
- data/dojo/dojo/tests/window/viewportQuirks.html +5 -0
- data/dojo/dojo/uacss.js +63 -0
- data/dojo/dojo/window.js +132 -0
- data/dojo/dojox/LICENSE +1 -1
- data/dojo/dojox/atom/io/model.js +1 -1
- data/dojo/dojox/atom/widget/nls/ro/FeedEntryEditor.js +7 -0
- data/dojo/dojox/atom/widget/nls/ro/FeedEntryViewer.js +12 -0
- data/dojo/dojox/atom/widget/nls/ro/FeedViewerEntry.js +4 -0
- data/dojo/dojox/atom/widget/nls/ro/PeopleEditor.js +6 -0
- data/dojo/dojox/av/FLAudio.js +62 -49
- data/dojo/dojox/av/resources/audio.swf +0 -0
- data/dojo/dojox/av/tests/test_FLAudio.html +15 -9
- data/dojo/dojox/charting/Chart2D.js +609 -51
- data/dojo/dojox/charting/DataChart.js +72 -63
- data/dojo/dojox/charting/DataSeries.js +183 -0
- data/dojo/dojox/charting/Element.js +201 -3
- data/dojo/dojox/charting/Series.js +47 -4
- data/dojo/dojox/charting/Theme.js +590 -189
- data/dojo/dojox/charting/action2d/Base.js +31 -5
- data/dojo/dojox/charting/action2d/Highlight.js +37 -12
- data/dojo/dojox/charting/action2d/Magnify.js +39 -13
- data/dojo/dojox/charting/action2d/MoveSlice.js +42 -13
- data/dojo/dojox/charting/action2d/Shake.js +36 -12
- data/dojo/dojox/charting/action2d/Tooltip.js +205 -7
- data/dojo/dojox/charting/axis2d/Base.js +46 -7
- data/dojo/dojox/charting/axis2d/Default.js +414 -238
- data/dojo/dojox/charting/axis2d/Invisible.js +290 -0
- data/dojo/dojox/charting/axis2d/common.js +53 -7
- data/dojo/dojox/charting/plot2d/Areas.js +2 -0
- data/dojo/dojox/charting/plot2d/Bars.js +94 -63
- data/dojo/dojox/charting/plot2d/Base.js +143 -53
- data/dojo/dojox/charting/plot2d/Bubble.js +139 -65
- data/dojo/dojox/charting/plot2d/Candlesticks.js +143 -80
- data/dojo/dojox/charting/plot2d/ClusteredBars.js +60 -58
- data/dojo/dojox/charting/plot2d/ClusteredColumns.js +59 -57
- data/dojo/dojox/charting/plot2d/Columns.js +78 -60
- data/dojo/dojox/charting/plot2d/Default.js +280 -121
- data/dojo/dojox/charting/plot2d/Grid.js +181 -19
- data/dojo/dojox/charting/plot2d/Lines.js +4 -0
- data/dojo/dojox/charting/plot2d/Markers.js +4 -0
- data/dojo/dojox/charting/plot2d/MarkersOnly.js +4 -0
- data/dojo/dojox/charting/plot2d/OHLC.js +127 -69
- data/dojo/dojox/charting/plot2d/Pie.js +200 -105
- data/dojo/dojox/charting/plot2d/Scatter.js +194 -8
- data/dojo/dojox/charting/plot2d/Stacked.js +71 -46
- data/dojo/dojox/charting/plot2d/StackedAreas.js +4 -0
- data/dojo/dojox/charting/plot2d/StackedBars.js +75 -64
- data/dojo/dojox/charting/plot2d/StackedColumns.js +75 -64
- data/dojo/dojox/charting/plot2d/StackedLines.js +4 -0
- data/dojo/dojox/charting/plot2d/_PlotEvents.js +123 -0
- data/dojo/dojox/charting/plot2d/common.js +44 -35
- data/dojo/dojox/charting/scaler/primitive.js +6 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars1.html +85 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars2.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars3.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars4.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bars5.html +82 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble1.html +71 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble2.html +65 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble3.html +66 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble4.html +65 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_bubble6.html +71 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns1.html +85 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns2.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns3.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns4.html +79 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_columns5.html +82 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie1.html +58 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie2.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie3.html +53 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie4.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie7.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie8.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pie9.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_pieA.html +52 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_scatter1.html +71 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_scatter2.html +65 -0
- data/dojo/dojox/charting/tests/gradients/test_grad_scatterB.html +54 -0
- data/dojo/dojox/charting/tests/stock.json +0 -1
- data/dojo/dojox/charting/tests/test_DataChart.html +3 -1
- data/dojo/dojox/charting/tests/test_DataSeries.html +216 -0
- data/dojo/dojox/charting/tests/test_anim2d.html +2 -0
- data/dojo/dojox/charting/tests/test_axes.html +81 -0
- data/dojo/dojox/charting/tests/test_axisZoomControl.html +91 -0
- data/dojo/dojox/charting/tests/test_bars.html +4 -2
- data/dojo/dojox/charting/tests/test_chart2d.html +14 -8
- data/dojo/dojox/charting/tests/test_chart2d_dynamics.html +4 -2
- data/dojo/dojox/charting/tests/test_chart2d_updating.html +2 -0
- data/dojo/dojox/charting/tests/test_cylinders.html +4 -2
- data/dojo/dojox/charting/tests/test_event2d.html +6 -3
- data/dojo/dojox/charting/tests/test_fireEvent.html +204 -0
- data/dojo/dojox/charting/tests/test_labels2d.html +57 -3
- data/dojo/dojox/charting/tests/test_nulls.html +89 -0
- data/dojo/dojox/charting/tests/test_pie2d.html +7 -4
- data/dojo/dojox/charting/tests/test_plot_order.html +96 -0
- data/dojo/dojox/charting/tests/test_rotatedLabels.html +85 -0
- data/dojo/dojox/charting/tests/test_scaler.html +4 -2
- data/dojo/dojox/charting/tests/test_series_order.html +88 -0
- data/dojo/dojox/charting/tests/test_sparklines.html +2 -0
- data/dojo/dojox/charting/tests/test_tension.html +55 -0
- data/dojo/dojox/charting/tests/test_themes.html +270 -115
- data/dojo/dojox/charting/tests/test_widget2d.html +3 -1
- data/dojo/dojox/charting/tests/test_win2d.html +6 -4
- data/dojo/dojox/charting/tests/theme_preview.html +69 -0
- data/dojo/dojox/charting/themes/Charged.js +91 -0
- data/dojo/dojox/charting/themes/Chris.js +77 -0
- data/dojo/dojox/charting/themes/Electric.js +92 -0
- data/dojo/dojox/charting/themes/Ireland.js +2 -2
- data/dojo/dojox/charting/themes/Julie.js +70 -0
- data/dojo/dojox/charting/themes/PlotKit/base.js +53 -0
- data/dojo/dojox/charting/themes/PlotKit/blue.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/cyan.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/green.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/orange.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/purple.js +6 -35
- data/dojo/dojox/charting/themes/PlotKit/red.js +6 -35
- data/dojo/dojox/charting/themes/PrimaryColors.js +14 -0
- data/dojo/dojox/charting/themes/Renkoo.js +85 -0
- data/dojo/dojox/charting/themes/ThreeD.js +49 -0
- data/dojo/dojox/charting/themes/Tom.js +87 -0
- data/dojo/dojox/charting/themes/Tufte.js +45 -50
- data/dojo/dojox/charting/themes/gradientGenerator.js +83 -0
- data/dojo/dojox/charting/widget/Chart2D.js +21 -1
- data/dojo/dojox/charting/widget/Legend.js +10 -1
- data/dojo/dojox/color/Palette.js +124 -17
- data/dojo/dojox/css3/fx.js +183 -0
- data/dojo/dojox/data/AndOrReadStore.js +4 -2
- data/dojo/dojox/data/ClientFilter.js +1 -1
- data/dojo/dojox/data/FlickrRestStore.js +86 -88
- data/dojo/dojox/data/HtmlStore.js +1 -1
- data/dojo/dojox/data/ItemExplorer.js +3 -3
- data/dojo/dojox/data/PersevereStore.js +1 -1
- data/dojo/dojox/data/QueryReadStore.js +6 -9
- data/dojo/dojox/data/ServiceStore.js +9 -2
- data/dojo/dojox/data/StoreExplorer.js +2 -2
- data/dojo/dojox/data/XmlStore.js +1 -1
- data/dojo/dojox/data/demos/stores/LazyLoadJSIStore.js +1 -1
- data/dojo/dojox/data/s3/proxy.example-php +73 -73
- data/dojo/dojox/data/tests/stores/FlickrRestStore.js +1 -1
- data/dojo/dojox/data/util/JsonQuery.js +0 -3
- data/dojo/dojox/date/README +7 -1
- data/dojo/dojox/date/buddhist/locale.js +5 -5
- data/dojo/dojox/date/hebrew/locale.js +41 -18
- data/dojo/dojox/date/hebrew/numerals.js +17 -13
- data/dojo/dojox/date/islamic.js +0 -1
- data/dojo/dojox/date/islamic/Date.js +17 -19
- data/dojo/dojox/date/islamic/locale.js +37 -16
- data/dojo/dojox/date/posix.js +1 -1
- data/dojo/dojox/date/tests/hebrew/Date.js +2 -2
- data/dojo/dojox/date/tests/islamic/Date.js +200 -17
- data/dojo/dojox/date/timezone.js +59 -62
- data/dojo/dojox/dnd/BoundingBoxController.js +130 -0
- data/dojo/dojox/dnd/README +22 -0
- data/dojo/dojox/dnd/Selector.js +159 -0
- data/dojo/dojox/dnd/tests/robot/test_selector.html +71 -0
- data/dojo/dojox/dnd/tests/test_selector.html +57 -0
- data/dojo/dojox/drawing/Drawing.js +24 -17
- data/dojo/dojox/drawing/_base.js +0 -1
- data/dojo/dojox/drawing/annotations/Angle.js +17 -10
- data/dojo/dojox/drawing/annotations/BoxShadow.js +92 -4
- data/dojo/dojox/drawing/annotations/Label.js +6 -6
- data/dojo/dojox/drawing/defaults.js +44 -27
- data/dojo/dojox/drawing/library/icons.js +7 -0
- data/dojo/dojox/drawing/manager/Anchors.js +22 -10
- data/dojo/dojox/drawing/manager/Canvas.js +6 -5
- data/dojo/dojox/drawing/manager/Mouse.js +45 -19
- data/dojo/dojox/drawing/manager/Stencil.js +29 -26
- data/dojo/dojox/drawing/manager/_registry.js +4 -1
- data/dojo/dojox/drawing/manager/keys.js +1 -1
- data/dojo/dojox/drawing/plugins/_Plugin.js +1 -1
- data/dojo/dojox/drawing/plugins/drawing/Grid.js +15 -4
- data/dojo/dojox/drawing/plugins/drawing/Silverlight.js +1 -1
- data/dojo/dojox/drawing/plugins/tools/Pan.js +29 -5
- data/dojo/dojox/drawing/plugins/tools/Zoom.js +4 -4
- data/dojo/dojox/drawing/stencil/Ellipse.js +1 -1
- data/dojo/dojox/drawing/stencil/Line.js +0 -17
- data/dojo/dojox/drawing/stencil/Path.js +17 -13
- data/dojo/dojox/drawing/stencil/Text.js +26 -7
- data/dojo/dojox/drawing/stencil/_Base.js +163 -159
- data/dojo/dojox/drawing/tests/drawing.html +34 -35
- data/dojo/dojox/drawing/tests/test_drawing.html +20 -21
- data/dojo/dojox/drawing/tests/test_shadows.html +18 -18
- data/dojo/dojox/drawing/tools/Ellipse.js +20 -6
- data/dojo/dojox/drawing/tools/Line.js +19 -9
- data/dojo/dojox/drawing/tools/Rect.js +21 -7
- data/dojo/dojox/drawing/tools/TextBlock.js +37 -29
- data/dojo/dojox/drawing/tools/custom/Axes.js +249 -97
- data/dojo/dojox/drawing/tools/custom/Vector.js +298 -6
- data/dojo/dojox/drawing/ui/Button.js +45 -20
- data/dojo/dojox/drawing/ui/Toolbar.js +94 -29
- data/dojo/dojox/drawing/ui/Tooltip.js +3 -3
- data/dojo/dojox/drawing/ui/dom/Pan.js +2 -2
- data/dojo/dojox/drawing/ui/dom/Toolbar.js +4 -4
- data/dojo/dojox/drawing/util/common.js +20 -14
- data/dojo/dojox/drawing/util/oo.js +1 -1
- data/dojo/dojox/dtl/Context.js +8 -7
- data/dojo/dojox/dtl/_DomTemplated.js +5 -1
- data/dojo/dojox/dtl/_Templated.js +38 -3
- data/dojo/dojox/dtl/_base.js +17 -8
- data/dojo/dojox/dtl/tests/context.js +11 -2
- data/dojo/dojox/editor/README +95 -2
- data/dojo/dojox/editor/plugins/Blockquote.js +506 -0
- data/dojo/dojox/editor/plugins/Breadcrumb.js +31 -25
- data/dojo/dojox/editor/plugins/CollapsibleToolbar.js +174 -0
- data/dojo/dojox/editor/plugins/EntityPalette.js +112 -290
- data/dojo/dojox/editor/plugins/FindReplace.js +490 -163
- data/dojo/dojox/editor/plugins/InsertAnchor.js +430 -0
- data/dojo/dojox/editor/plugins/NormalizeIndentOutdent.js +3 -51
- data/dojo/dojox/editor/plugins/NormalizeStyle.js +551 -0
- data/dojo/dojox/editor/plugins/PasteFromWord.js +206 -0
- data/dojo/dojox/editor/plugins/Preview.js +1 -1
- data/dojo/dojox/editor/plugins/Save.js +4 -4
- data/dojo/dojox/editor/plugins/ShowBlockNodes.js +1 -1
- data/dojo/dojox/editor/plugins/Smiley.js +48 -22
- data/dojo/dojox/editor/plugins/StatusBar.js +172 -0
- data/dojo/dojox/editor/plugins/TablePlugins.js +454 -394
- data/dojo/dojox/editor/plugins/TextColor.js +191 -0
- data/dojo/dojox/editor/plugins/ToolbarLineBreak.js +6 -1
- data/dojo/dojox/editor/plugins/_SmileyPalette.js +113 -333
- data/dojo/dojox/editor/plugins/nls/Blockquote.js +3 -0
- data/dojo/dojox/editor/plugins/nls/CollapsibleToolbar.js +4 -0
- data/dojo/dojox/editor/plugins/nls/FindReplace.js +15 -5
- data/dojo/dojox/editor/plugins/nls/InsertAnchor.js +8 -0
- data/dojo/dojox/editor/plugins/nls/PasteFromWord.js +6 -0
- data/dojo/dojox/editor/plugins/nls/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/TextColor.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ar/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/ca/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/cs/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/da/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/de/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/el/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/es/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/fi/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/fr/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/he/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/hu/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/it/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/ja/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/ko/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/nb/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/nl/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/pl/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/pt-pt/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/pt/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/ro/Blockquote.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/Breadcrumb.js +10 -0
- data/dojo/dojox/editor/plugins/nls/ro/CollapsibleToolbar.js +5 -0
- data/dojo/dojox/editor/plugins/nls/ro/FindReplace.js +22 -0
- data/dojo/dojox/editor/plugins/nls/ro/InsertAnchor.js +9 -0
- data/dojo/dojox/editor/plugins/nls/ro/InsertEntity.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/PageBreak.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/PasteFromWord.js +7 -0
- data/dojo/dojox/editor/plugins/nls/ro/Preview.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/Save.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/ShowBlockNodes.js +4 -0
- data/dojo/dojox/editor/plugins/nls/ro/Smiley.js +22 -0
- data/dojo/dojox/editor/plugins/nls/ro/TableDialog.js +30 -0
- data/dojo/dojox/editor/plugins/nls/ro/TextColor.js +5 -0
- data/dojo/dojox/editor/plugins/nls/ro/latinEntities.js +257 -0
- data/dojo/dojox/editor/plugins/nls/ru/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/sk/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/sl/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/sv/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/th/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/tr/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/zh-tw/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/nls/zh/FindReplace.js +14 -4
- data/dojo/dojox/editor/plugins/nls/zh/TableDialog.js +0 -1
- data/dojo/dojox/editor/plugins/resources/css/Blockquote.css +17 -0
- data/dojo/dojox/editor/plugins/resources/css/CollapsibleToolbar.css +173 -0
- data/dojo/dojox/editor/plugins/resources/css/FindReplace.css +56 -51
- data/dojo/dojox/editor/plugins/resources/css/InsertAnchor.css +17 -0
- data/dojo/dojox/editor/plugins/resources/css/InsertEntity.css +15 -37
- data/dojo/dojox/editor/plugins/resources/css/PasteFromWord.css +30 -0
- data/dojo/dojox/editor/plugins/resources/css/Smiley.css +20 -59
- data/dojo/dojox/editor/plugins/resources/css/StatusBar.css +75 -0
- data/dojo/dojox/editor/plugins/resources/css/TextColor.css +7 -0
- data/dojo/dojox/editor/plugins/resources/editorPlugins.css +1 -1
- data/dojo/dojox/editor/plugins/resources/icons/anchor.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/{findIconDisabled.gif → anchorDisabled.gif} +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/blockquote.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/blockquoteDisabled.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/{replaceIconDisabled.gif → claro/close.gif} +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/editorIconsFindReplaceDisabled.png +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/editorIconsFindReplaceEnabled.png +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/nihilo/close.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/pasteFromWord.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/pasteFromWordDisabled.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/smileyDisabled.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/soria/close.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/tundra/close.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/anchor.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/claro/collapse.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/claro/expand.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/nihilo/collapse.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/nihilo/expand.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/nihilo/sidebar.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/soria/collapse.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/soria/expand.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/soria/sidebar.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/tundra/collapse.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/tundra/expand.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/images/tundra/sidebar.gif +0 -0
- data/dojo/dojox/editor/tests/editorBlockquote.html +118 -0
- data/dojo/dojox/editor/tests/editorCollapsibleToolbar.html +131 -0
- data/dojo/dojox/editor/tests/editorFindReplace.html +7 -3
- data/dojo/dojox/editor/tests/editorInsertAnchor.html +119 -0
- data/dojo/dojox/editor/tests/editorNormalizeStyle.html +163 -0
- data/dojo/dojox/editor/tests/editorPasteFromWord.html +98 -0
- data/dojo/dojox/editor/tests/editorSmileyPlugin.html +66 -8
- data/dojo/dojox/editor/tests/editorStatusBar.html +232 -0
- data/dojo/dojox/editor/tests/editorTablePlugs.html +80 -74
- data/dojo/dojox/editor/tests/editorTextColor.html +97 -0
- data/dojo/dojox/editor/tests/module.js +15 -0
- data/dojo/dojox/editor/tests/robot/Editor_Smiley.html +60 -0
- data/dojo/dojox/editor/tests/runTests.html +9 -0
- data/dojo/dojox/editor/tests/testPluginsAll.html +206 -0
- data/dojo/dojox/embed/Flash.js +94 -77
- data/dojo/dojox/flash/_base.js +3 -3
- data/dojo/dojox/form/BusyButton.js +2 -2
- data/dojo/dojox/form/CheckedMultiSelect.js +3 -16
- data/dojo/dojox/form/FileInput.js +4 -0
- data/dojo/dojox/form/FileInputAuto.js +12 -4
- data/dojo/dojox/form/FilePickerTextBox.js +5 -8
- data/dojo/dojox/form/FileUploader.js +1378 -1331
- data/dojo/dojox/form/ListInput.js +5 -5
- data/dojo/dojox/form/PasswordValidator.js +3 -3
- data/dojo/dojox/form/RangeSlider.js +3 -2
- data/dojo/dojox/form/Rating.js +0 -1
- data/dojo/dojox/form/TimeSpinner.js +1 -2
- data/dojo/dojox/form/manager/_Mixin.js +21 -11
- data/dojo/dojox/form/nls/ro/PasswordValidator.js +5 -0
- data/dojo/dojox/form/resources/CheckedMultiSelect.css +30 -0
- data/dojo/dojox/form/resources/CheckedMultiSelect.html +1 -1
- data/dojo/dojox/form/resources/FileInput.css +30 -0
- data/dojo/dojox/form/resources/FilePickerTextBox.html +2 -2
- data/dojo/dojox/form/resources/FileUploader.css +0 -24
- data/dojo/dojox/form/resources/HorizontalRangeSlider.html +38 -38
- data/dojo/dojox/form/resources/RangeSlider.css +9 -1
- data/dojo/dojox/form/resources/VerticalRangeSlider.html +49 -50
- data/dojo/dojox/form/resources/_CheckedMultiSelectItem.html +1 -1
- data/dojo/dojox/form/resources/uploader.swf +0 -0
- data/dojo/dojox/form/tests/UploadFile.php.disabled +25 -19
- data/dojo/dojox/form/tests/test_FileUploader.html +38 -38
- data/dojo/dojox/form/tests/test_FileUploaderDialog.html +0 -1
- data/dojo/dojox/form/tests/test_FileUploaderForm.html +5 -3
- data/dojo/dojox/form/tests/test_FileUploaderTabs.html +147 -0
- data/dojo/dojox/form/tests/test_MultiComboBox.html +1 -1
- data/dojo/dojox/form/tests/test_RangeSlider.html +1 -2
- data/dojo/dojox/form/tests/test_TimeSpinner.html +3 -30
- data/dojo/dojox/fx/Timeline.js +210 -0
- data/dojo/dojox/fx/ext-dojo/complex.js +169 -0
- data/dojo/dojox/fx/ext-dojo/reverse.js +98 -0
- data/dojo/dojox/fx/scroll.js +13 -6
- data/dojo/dojox/fx/tests/test_Timeline.html +173 -0
- data/dojo/dojox/fx/tests/test_complex.html +87 -0
- data/dojo/dojox/fx/tests/test_reverse.html +100 -0
- data/dojo/dojox/fx/tests/test_transform.html +210 -0
- data/dojo/dojox/fx/text.js +3 -3
- data/dojo/dojox/geo/README +37 -0
- data/dojo/dojox/geo/charting/Map.js +140 -0
- data/dojo/dojox/geo/charting/_Feature.js +169 -0
- data/dojo/dojox/geo/charting/_Marker.js +52 -0
- data/dojo/dojox/geo/charting/_base.js +53 -0
- data/dojo/dojox/geo/charting/resources/Map.css +30 -0
- data/dojo/dojox/geo/charting/resources/data/NOTICES +63 -0
- data/dojo/dojox/geo/charting/resources/data/USStates.json +261 -0
- data/dojo/dojox/geo/charting/resources/img/zoomin.gif +0 -0
- data/dojo/dojox/geo/charting/resources/img/zoomin.png +0 -0
- data/dojo/dojox/geo/charting/resources/img/zoomout.gif +0 -0
- data/dojo/dojox/geo/charting/resources/img/zoomout.png +0 -0
- data/dojo/dojox/geo/charting/resources/markers/USStates.json +1 -0
- data/dojo/dojox/geo/charting/tests/datastore/dataStore.json +1 -0
- data/dojo/dojox/geo/charting/tests/test_mapWithCharting.html +72 -0
- data/dojo/dojox/geo/charting/tests/test_mapWithLegend.html +63 -0
- data/dojo/dojox/geo/charting/tests/test_maps.html +37 -0
- data/dojo/dojox/geo/charting/widget/Legend.js +62 -0
- data/dojo/dojox/gfx/README +9 -2
- data/dojo/dojox/gfx/README-svgweb +98 -0
- data/dojo/dojox/gfx/VectorText.js +3 -3
- data/dojo/dojox/gfx/_base.js +2 -2
- data/dojo/dojox/gfx/arc.js +1 -1
- data/dojo/dojox/gfx/gradient.js +160 -0
- data/dojo/dojox/gfx/gradutils.js +91 -0
- data/dojo/dojox/gfx/path.js +89 -24
- data/dojo/dojox/gfx/resources/svg2gfx.xsl +53 -14
- data/dojo/dojox/gfx/shape.js +14 -7
- data/dojo/dojox/gfx/svg.js +135 -16
- data/dojo/dojox/gfx/tests/svgweb/README +15 -0
- data/dojo/dojox/gfx/tests/svgweb/sample.html +171 -0
- data/dojo/dojox/gfx/tests/svgweb/svgweb/COPYING.txt +65 -0
- data/dojo/dojox/gfx/tests/svgweb/svgweb/src/svg.htc +1 -0
- data/dojo/dojox/gfx/tests/svgweb/svgweb/src/svg.js +1 -0
- data/dojo/dojox/gfx/tests/svgweb/svgweb/src/svg.swf +0 -0
- data/dojo/dojox/gfx/tests/svgweb/test.roundrect.html +39 -0
- data/dojo/dojox/gfx/tests/svgweb/test_arc.html +66 -0
- data/dojo/dojox/gfx/tests/svgweb/test_bezier.html +81 -0
- data/dojo/dojox/gfx/tests/svgweb/test_destroy.html +58 -0
- data/dojo/dojox/gfx/tests/svgweb/test_fill.html +45 -0
- data/dojo/dojox/gfx/tests/svgweb/test_fx.html +104 -0
- data/dojo/dojox/gfx/tests/svgweb/test_fx_shapes.html +123 -0
- data/dojo/dojox/gfx/tests/svgweb/test_gfx.html +565 -0
- data/dojo/dojox/gfx/tests/svgweb/test_gradient.html +77 -0
- data/dojo/dojox/gfx/tests/svgweb/test_group1.html +70 -0
- data/dojo/dojox/gfx/tests/svgweb/test_group2.html +54 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image1.html +80 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image2.html +52 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image3.html +77 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image4.html +58 -0
- data/dojo/dojox/gfx/tests/svgweb/test_image5.html +67 -0
- data/dojo/dojox/gfx/tests/svgweb/test_linearGradient.html +75 -0
- data/dojo/dojox/gfx/tests/svgweb/test_linestyle.html +43 -0
- data/dojo/dojox/gfx/tests/svgweb/test_pattern.html +43 -0
- data/dojo/dojox/gfx/tests/svgweb/test_poly.html +49 -0
- data/dojo/dojox/gfx/tests/svgweb/test_resize.html +57 -0
- data/dojo/dojox/gfx/tests/svgweb/test_setPath.html +86 -0
- data/dojo/dojox/gfx/tests/svgweb/test_tbbox.html +113 -0
- data/dojo/dojox/gfx/tests/svgweb/test_text.html +80 -0
- data/dojo/dojox/gfx/tests/svgweb/test_textpath.html +77 -0
- data/dojo/dojox/gfx/tests/svgweb/test_transform.html +99 -0
- data/dojo/dojox/gfx/tests/svgweb/test_utils.html +234 -0
- data/dojo/dojox/gfx/tests/svgweb/test_vectortext_draw.html +64 -0
- data/dojo/dojox/gfx/tests/svgweb/test_vectortext_load.html +97 -0
- data/dojo/dojox/gfx/tests/test_image1.html +1 -4
- data/dojo/dojox/gfx/tests/test_image2.html +5 -5
- data/dojo/dojox/gfx/tests/test_image3.html +2 -2
- data/dojo/dojox/gfx/tests/test_image4.html +2 -2
- data/dojo/dojox/gfx/tests/test_linearGradient.html +2 -1
- data/dojo/dojox/gfx/tests/test_pattern.html +4 -3
- data/dojo/dojox/gfx/tests/test_refproj.html +109 -0
- data/dojo/dojox/gfx/vml.js +52 -57
- data/dojo/dojox/grid/DataGrid.js +17 -6
- data/dojo/dojox/grid/EnhancedGrid.js +24 -6
- data/dojo/dojox/grid/README +57 -0
- data/dojo/dojox/grid/_Builder.js +18 -8
- data/dojo/dojox/grid/_Grid.js +10 -20
- data/dojo/dojox/grid/_View.js +5 -2
- data/dojo/dojox/grid/cells/dijit.js +11 -4
- data/dojo/dojox/grid/enhanced/_Events.js +16 -6
- data/dojo/dojox/grid/enhanced/_Plugin.js +15 -20
- data/dojo/dojox/grid/enhanced/dnd/_DndEvents.js +6 -0
- data/dojo/dojox/grid/enhanced/dnd/_DndMovingManager.js +3 -1
- data/dojo/dojox/grid/enhanced/nls/ar/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/ca/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/da/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/el/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/fi/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/he/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/nb/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/nl/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/pt-pt/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/ro/EnhancedGrid.js +9 -0
- data/dojo/dojox/grid/enhanced/nls/sk/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/sl/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/sv/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/th/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/nls/tr/EnhancedGrid.js +8 -0
- data/dojo/dojox/grid/enhanced/plugins/IndirectSelection.js +5 -5
- data/dojo/dojox/grid/enhanced/plugins/Menu.js +22 -6
- data/dojo/dojox/grid/enhanced/plugins/NestedSorting.js +26 -42
- data/dojo/dojox/grid/enhanced/resources/EnhancedGrid.css +31 -32
- data/dojo/dojox/grid/enhanced/resources/EnhancedGrid_rtl.css +16 -7
- data/dojo/dojox/grid/enhanced/resources/claroEnhancedGrid.css +104 -0
- data/dojo/dojox/grid/enhanced/resources/tundraEnhancedGrid.css +8 -17
- data/dojo/dojox/grid/resources/Grid.css +6 -0
- data/dojo/dojox/grid/resources/Grid_rtl.css +10 -2
- data/dojo/dojox/grid/resources/_Grid.html +1 -1
- data/dojo/dojox/grid/resources/claroGrid.css +216 -0
- data/dojo/dojox/grid/resources/images/header.png +0 -0
- data/dojo/dojox/grid/resources/images/header_shadow.png +0 -0
- data/dojo/dojox/grid/resources/images/row_back.png +0 -0
- data/dojo/dojox/grid/resources/images/td_button_down.png +0 -0
- data/dojo/dojox/grid/tests/enhanced/test_enhanced_grid_claro.html +70 -0
- data/dojo/dojox/grid/tests/robot/7815.html +0 -1
- data/dojo/dojox/grid/tests/robot/DataGrid_a11y.html +6 -1
- data/dojo/dojox/grid/tests/robot/DataGrid_mouse.html +50 -18
- data/dojo/dojox/grid/tests/robot/_DataGrid.html +0 -1
- data/dojo/dojox/grid/tests/robot/stores.js +3 -1
- data/dojo/dojox/grid/tests/test_grid_themes.html +27 -2
- data/dojo/dojox/grid/tests/test_treegrid_model.html +6 -6
- data/dojo/dojox/highlight/languages/_dynamic.js +2 -0
- data/dojo/dojox/highlight/languages/_static.js +1 -1
- data/dojo/dojox/highlight/languages/groovy.js +67 -0
- data/dojo/dojox/highlight/languages/java.js +58 -0
- data/dojo/dojox/highlight/languages/xquery.js +56 -0
- data/dojo/dojox/highlight/tests/test_highlight.html +147 -0
- data/dojo/dojox/html/entities.js +7 -7
- data/dojo/dojox/html/ext-dojo/style.js +460 -0
- data/dojo/dojox/html/format.js +5 -0
- data/dojo/dojox/html/metrics.js +31 -12
- data/dojo/dojox/html/tests/test_style-html.html +310 -0
- data/dojo/dojox/html/tests/test_themes.html +2 -2
- data/dojo/dojox/image/Lightbox.js +70 -28
- data/dojo/dojox/image/resources/Lightbox.css +11 -4
- data/dojo/dojox/image/resources/Lightbox.html +3 -3
- data/dojo/dojox/image/tests/Lightbox.html +2 -2
- data/dojo/dojox/image/tests/test_Lightbox.html +36 -2
- data/dojo/dojox/io/proxy/xip_client.html +1 -1
- data/dojo/dojox/io/proxy/xip_server.html +1 -1
- data/dojo/dojox/jq.js +1 -1
- data/dojo/dojox/json/query.js +7 -7
- data/dojo/dojox/json/ref.js +4 -2
- data/dojo/dojox/lang/README +13 -2
- data/dojo/dojox/lang/async.js +199 -0
- data/dojo/dojox/lang/async/event.js +41 -0
- data/dojo/dojox/lang/async/timeout.js +41 -0
- data/dojo/dojox/lang/async/topic.js +41 -0
- data/dojo/dojox/lang/oo/rearrange.js +1 -1
- data/dojo/dojox/lang/tests/async.js +216 -0
- data/dojo/dojox/lang/tests/docs.js +2 -2
- data/dojo/dojox/lang/tests/main.js +1 -1
- data/dojo/dojox/lang/tests/test_oo_decl.html +52 -3
- data/dojo/dojox/lang/utils.js +52 -9
- data/dojo/dojox/layout/ExpandoPane.js +71 -21
- data/dojo/dojox/layout/FloatingPane.js +7 -4
- data/dojo/dojox/layout/GridContainer.js +453 -920
- data/dojo/dojox/layout/GridContainerLite.js +811 -0
- data/dojo/dojox/layout/README +1 -1
- data/dojo/dojox/layout/ResizeHandle.js +6 -3
- data/dojo/dojox/layout/RotatorContainer.js +1 -1
- data/dojo/dojox/layout/TableContainer.js +7 -0
- data/dojo/dojox/layout/ToggleSplitter.js +2 -2
- data/dojo/dojox/layout/resources/ExpandoPane.css +52 -0
- data/dojo/dojox/layout/resources/ExpandoPane.html +2 -2
- data/dojo/dojox/layout/resources/GridContainer.css +49 -69
- data/dojo/dojox/layout/resources/GridContainer.html +9 -5
- data/dojo/dojox/layout/resources/ResizeHandle.css +18 -0
- data/dojo/dojox/layout/resources/icons/gridcontainer_grip.gif +0 -0
- data/dojo/dojox/layout/resources/icons/resizeRtl.png +0 -0
- data/dojo/dojox/layout/tests/resources/script_dnd.js +158 -0
- data/dojo/dojox/layout/tests/resources/set_complete_dnd.css +61 -0
- data/dojo/dojox/layout/tests/test_ExpandoPane.html +7 -1
- data/dojo/dojox/layout/tests/test_ExpandoPane_prog.html +1 -1
- data/dojo/dojox/layout/tests/test_GridContainer.html +24 -76
- data/dojo/dojox/layout/tests/test_GridContainerColWidths.html +31 -19
- data/dojo/dojox/layout/tests/test_GridContainerLite.html +122 -0
- data/dojo/dojox/layout/tests/test_GridContainerLite_doLayout.html +112 -0
- data/dojo/dojox/layout/tests/test_GridContainerLite_dragRestriction.html +148 -0
- data/dojo/dojox/layout/tests/test_GridContainer_ResizableCol.html +93 -0
- data/dojo/dojox/layout/tests/test_GridContainer_TitlePanes.html +85 -0
- data/dojo/dojox/layout/tests/test_GridContainer_complete_solution.html +103 -0
- data/dojo/dojox/layout/tests/test_GridContainer_dragHandle.html +107 -0
- data/dojo/dojox/layout/tests/{test_GridContainerBC.html → test_GridContainer_in_BorderContainer.html} +27 -61
- data/dojo/dojox/layout/tests/{test_GridContainerBC_prog.html → test_GridContainer_in_BorderContainer_prog.html} +142 -50
- data/dojo/dojox/layout/tests/test_TableContainer.html +2 -2
- data/dojo/dojox/math/BigInteger-ext.js +1 -3
- data/dojo/dojox/math/BigInteger.js +3 -3
- data/dojo/dojox/math/README +0 -3
- data/dojo/dojox/math/_base.js +48 -11
- data/dojo/dojox/math/tests/math.js +19 -1
- data/dojo/dojox/mdnd/AreaManager.js +707 -0
- data/dojo/dojox/mdnd/AutoScroll.js +195 -0
- data/dojo/dojox/mdnd/DropIndicator.js +86 -0
- data/dojo/dojox/mdnd/LazyManager.js +68 -0
- data/dojo/dojox/mdnd/Moveable.js +251 -0
- data/dojo/dojox/mdnd/PureSource.js +208 -0
- data/dojo/dojox/mdnd/README +94 -0
- data/dojo/dojox/mdnd/adapter/DndFromDojo.js +366 -0
- data/dojo/dojox/mdnd/adapter/DndToDojo.js +484 -0
- data/dojo/dojox/mdnd/dropMode/DefaultDropMode.js +333 -0
- data/dojo/dojox/mdnd/dropMode/OverDropMode.js +308 -0
- data/dojo/dojox/mdnd/dropMode/VerticalDropMode.js +343 -0
- data/dojo/dojox/mdnd/resources/dnd.css +93 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_acceptance.html +71 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_autoScroll.html +52 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_defaultDropMode.html +55 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_dndFromDojo.html +73 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_dndToDojo.html +93 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_dndToDojo_dndFromDojo.html +70 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_overDropMode.html +57 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_stress.html +83 -0
- data/dojo/dojox/mdnd/tests/functionalTests/test_dnd_verticalDropMode.html +55 -0
- data/dojo/dojox/mdnd/tests/module.js +16 -0
- data/dojo/dojox/mdnd/tests/resources/test_dnd.css +68 -0
- data/dojo/dojox/mdnd/tests/robot/module.js +16 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_acceptance.html +284 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_defaultDropMode.html +101 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_dndFromDojo.html +322 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_dndToDojo.html +198 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_overDropMode.html +272 -0
- data/dojo/dojox/mdnd/tests/robot/test_dnd_verticalDropMode.html +101 -0
- data/dojo/dojox/mdnd/tests/runTests.html +9 -0
- data/dojo/dojox/mdnd/tests/unitTests/areaManager/AreaManagerCoverPresence.html +110 -0
- data/dojo/dojox/mdnd/tests/unitTests/areaManager/AreaManagerManagingDragItems.html +149 -0
- data/dojo/dojox/mdnd/tests/unitTests/areaManager/AreaManagerRegistering.html +124 -0
- data/dojo/dojox/mdnd/tests/unitTests/areaManager/module.js +12 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropIndicator/DropIndicatorTest.html +187 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropIndicator/module.js +8 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/DefaultDropModeTest.html +241 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/FixtureLib.js +87 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/OverDropModeTest.html +195 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/VerticalDropModeTest.html +241 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/module.js +10 -0
- data/dojo/dojox/mdnd/tests/unitTests/dropMode/resources/domElement.html +130 -0
- data/dojo/dojox/mdnd/tests/unitTests/module.js +9 -0
- data/dojo/dojox/mobile.js +4 -0
- data/dojo/dojox/mobile/README +55 -0
- data/dojo/dojox/mobile/_base.js +1451 -0
- data/dojo/dojox/mobile/app.js +3 -0
- data/dojo/dojox/mobile/app/AlertDialog.js +182 -0
- data/dojo/dojox/mobile/app/ImageThumbView.js +254 -0
- data/dojo/dojox/mobile/app/ImageView.js +716 -0
- data/dojo/dojox/mobile/app/List.js +577 -0
- data/dojo/dojox/mobile/app/ListSelector.js +218 -0
- data/dojo/dojox/mobile/app/SceneAssistant.js +56 -0
- data/dojo/dojox/mobile/app/SceneController.js +157 -0
- data/dojo/dojox/mobile/app/StageController.js +137 -0
- data/dojo/dojox/mobile/app/TextBox.js +321 -0
- data/dojo/dojox/mobile/app/_FormWidget.js +294 -0
- data/dojo/dojox/mobile/app/_Widget.js +30 -0
- data/dojo/dojox/mobile/app/_base.js +226 -0
- data/dojo/dojox/mobile/app/_event.js +119 -0
- data/dojo/dojox/mobile/app/compat.js +109 -0
- data/dojo/dojox/mobile/build/build.bat +47 -0
- data/dojo/dojox/mobile/build/build.sh +50 -0
- data/dojo/dojox/mobile/build/profiles/mobile-all.profile.js +36 -0
- data/dojo/dojox/mobile/build/profiles/mobile.profile.js +40 -0
- data/dojo/dojox/mobile/compat.js +399 -0
- data/dojo/dojox/mobile/parser.js +80 -0
- data/dojo/dojox/mobile/tests/complexListApp/app/assistants/main-assistant.js +123 -0
- data/dojo/dojox/mobile/tests/complexListApp/app/views/main/emptyTemplate.html +3 -0
- data/dojo/dojox/mobile/tests/complexListApp/app/views/main/main-scene.html +23 -0
- data/dojo/dojox/mobile/tests/complexListApp/app/views/main/rowTemplate.html +15 -0
- data/dojo/dojox/mobile/tests/complexListApp/images/i-icon-1.png +0 -0
- data/dojo/dojox/mobile/tests/complexListApp/images/i-icon-2.png +0 -0
- data/dojo/dojox/mobile/tests/complexListApp/images/i-icon-3.png +0 -0
- data/dojo/dojox/mobile/tests/complexListApp/images/i-icon-4.png +0 -0
- data/dojo/dojox/mobile/tests/complexListApp/index.html +37 -0
- data/dojo/dojox/mobile/tests/complexListApp/styles/style.css +38 -0
- data/dojo/dojox/mobile/tests/dialogApp/app/assistants/main-assistant.js +75 -0
- data/dojo/dojox/mobile/tests/dialogApp/app/views/main/main-scene.html +10 -0
- data/dojo/dojox/mobile/tests/dialogApp/index.html +37 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-image-thumb-view-assistant.js +198 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-image-view-assistant.js +170 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-search-group-assistant.js +123 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-search-selection-assistant.js +54 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/flickr-search-text-assistant.js +119 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/image-view-assistant.js +92 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/assistants/main-assistant.js +40 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-image-thumb-view/flickr-image-thumb-view-scene.html +17 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-image-view/flickr-image-view-scene.html +10 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-group/emptyTemplate.html +3 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-group/flickr-search-group-scene.html +19 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-group/rowTemplate.html +8 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-selection/flickr-search-selection-scene.html +7 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-selection/rowTemplate.html +8 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-text/emptyTemplate.html +3 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-text/flickr-search-group-scene.html +19 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/flickr-search-text/rowTemplate.html +15 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/image-view/image-view-scene.html +23 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/main/main-scene.html +6 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/app/views/main/rowTemplate.html +8 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/chris1_lg.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/chris2_lg.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/imageHoriz.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/imageVert.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/images/square.jpg +0 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/index.html +39 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/styles/styles.css +13 -0
- data/dojo/dojox/mobile/tests/imageControlsApp/view-resources.json +14 -0
- data/dojo/dojox/mobile/tests/images/a-icon-1-41x41.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-1.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-10.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-11.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-12.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-13.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-14.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-15.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-16.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-17.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-18.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-2-41x41.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-2.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-3.png +0 -0
- data/dojo/dojox/mobile/tests/images/a-icon-4.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-1.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-10.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-2.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-3.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-4.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-5.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-6.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-7.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-8.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-9.png +0 -0
- data/dojo/dojox/mobile/tests/images/i-icon-all.png +0 -0
- data/dojo/dojox/mobile/tests/images/icon-1.png +0 -0
- data/dojo/dojox/mobile/tests/images/not-images.png +0 -0
- data/dojo/dojox/mobile/tests/images/red-button-bg.png +0 -0
- data/dojo/dojox/mobile/tests/images/red-button-sel-bg.png +0 -0
- data/dojo/dojox/mobile/tests/images/widget-bg.png +0 -0
- data/dojo/dojox/mobile/tests/index.html +55 -0
- data/dojo/dojox/mobile/tests/inputApp/app/assistants/text-input-assistant.js +21 -0
- data/dojo/dojox/mobile/tests/inputApp/app/views/text-input/text-input-scene.html +50 -0
- data/dojo/dojox/mobile/tests/inputApp/index.html +37 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/assistants/main-assistant.js +41 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/assistants/second-assistant.js +32 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/assistants/third-assistant.js +33 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/views/main/main-scene.html +16 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/views/second/second-scene.html +12 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/app/views/third/third-scene.html +13 -0
- data/dojo/dojox/mobile/tests/multiSceneApp/index.html +37 -0
- data/dojo/dojox/mobile/tests/simpleApp/app/assistants/main-assistant.js +23 -0
- data/dojo/dojox/mobile/tests/simpleApp/app/views/main/main-scene.html +3 -0
- data/dojo/dojox/mobile/tests/simpleApp/index.html +36 -0
- data/dojo/dojox/mobile/tests/simpleListApp/app/assistants/main-assistant.js +66 -0
- data/dojo/dojox/mobile/tests/simpleListApp/app/views/main/main-scene.html +14 -0
- data/dojo/dojox/mobile/tests/simpleListApp/app/views/main/rowTemplate.html +3 -0
- data/dojo/dojox/mobile/tests/simpleListApp/index.html +36 -0
- data/dojo/dojox/mobile/tests/test_Android-ButtonList.html +68 -0
- data/dojo/dojox/mobile/tests/test_Android-EdgeToEdge.html +50 -0
- data/dojo/dojox/mobile/tests/test_Android-EdgeToEdgeCategory.html +46 -0
- data/dojo/dojox/mobile/tests/test_Android-Icon.html +58 -0
- data/dojo/dojox/mobile/tests/test_Android-RoundRectList.html +60 -0
- data/dojo/dojox/mobile/tests/test_Android-Settings.html +104 -0
- data/dojo/dojox/mobile/tests/test_Android-Switch.html +23 -0
- data/dojo/dojox/mobile/tests/test_Android-TabContainer.html +139 -0
- data/dojo/dojox/mobile/tests/test_Android-VariableHeightList.html +100 -0
- data/dojo/dojox/mobile/tests/test_ajax-html.html +34 -0
- data/dojo/dojox/mobile/tests/test_ajax-json.html +34 -0
- data/dojo/dojox/mobile/tests/test_anchor-label.html +74 -0
- data/dojo/dojox/mobile/tests/test_bookmarkable.html +112 -0
- data/dojo/dojox/mobile/tests/test_buttons.html +21 -0
- data/dojo/dojox/mobile/tests/test_dynamic-icons.html +53 -0
- data/dojo/dojox/mobile/tests/test_dynamic-items.html +98 -0
- data/dojo/dojox/mobile/tests/test_dynamic-view.html +58 -0
- data/dojo/dojox/mobile/tests/test_hash-parameter.html +71 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Animation.html +81 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Button.html +41 -0
- data/dojo/dojox/mobile/tests/test_iPhone-ButtonList.html +50 -0
- data/dojo/dojox/mobile/tests/test_iPhone-EdgeToEdge.html +47 -0
- data/dojo/dojox/mobile/tests/test_iPhone-EdgeToEdgeCategory.html +46 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Heading.html +24 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Icon.html +58 -0
- data/dojo/dojox/mobile/tests/test_iPhone-IconMulti.html +36 -0
- data/dojo/dojox/mobile/tests/test_iPhone-IconSingle.html +35 -0
- data/dojo/dojox/mobile/tests/test_iPhone-IconSingleBelow.html +35 -0
- data/dojo/dojox/mobile/tests/test_iPhone-ResultList.html +65 -0
- data/dojo/dojox/mobile/tests/test_iPhone-RoundRect.html +27 -0
- data/dojo/dojox/mobile/tests/test_iPhone-RoundRectList.html +54 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Settings.html +168 -0
- data/dojo/dojox/mobile/tests/test_iPhone-Switch.html +23 -0
- data/dojo/dojox/mobile/tests/test_iPhone-TabContainer.html +169 -0
- data/dojo/dojox/mobile/tests/test_iPhone-VariableHeightList.html +99 -0
- data/dojo/dojox/mobile/tests/test_progress-indicator.html +83 -0
- data/dojo/dojox/mobile/tests/view-sample.html +38 -0
- data/dojo/dojox/mobile/tests/view1.html +14 -0
- data/dojo/dojox/mobile/tests/view1.json +18 -0
- data/dojo/dojox/mobile/tests/view2.html +9 -0
- data/dojo/dojox/mobile/tests/view2.json +31 -0
- data/dojo/dojox/mobile/tests/view3.html +16 -0
- data/dojo/dojox/mobile/tests/view3.json +44 -0
- data/dojo/dojox/mobile/themes/android/android-compat.css +284 -0
- data/dojo/dojox/mobile/themes/android/android.css +738 -0
- data/dojo/dojox/mobile/themes/android/compat/arrow-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/arrow-button-head.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/blue-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/blue-button-sel-bg.png +0 -0
- data/dojo/dojox/{editor/plugins/resources/icons/findReplaceDisabled.gif → mobile/themes/android/compat/gray-arrow.png} +0 -0
- data/dojo/dojox/mobile/themes/android/compat/icon-content-heading-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/switch-blue-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/switch-gray-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/switch-green-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/switch-knob-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/tab-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/tab-orange-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/android/compat/tab-sel-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/buttons-compat.css +30 -0
- data/dojo/dojox/mobile/themes/buttons.css +191 -0
- data/dojo/dojox/mobile/themes/compat/check-off-button.png +0 -0
- data/dojo/dojox/mobile/themes/compat/check-on-button.png +0 -0
- data/dojo/dojox/mobile/themes/compat/small-blue-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/compat/small-darkblue-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/compat/small-red-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/arrow-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/arrow-button-head.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/blue-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/blue-button-sel-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/edge-categ-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/gray-arrow.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/heading-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/icon-content-heading-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/switch-blue-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/switch-gray-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/switch-knob-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/tab-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/tab-sel-button-bg.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/compat/white-arrow.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/images/thumb-overlay.png +0 -0
- data/dojo/dojox/mobile/themes/iphone/iphone-app-compat.css +24 -0
- data/dojo/dojox/mobile/themes/iphone/iphone-app.css +281 -0
- data/dojo/dojox/mobile/themes/iphone/iphone-compat.css +290 -0
- data/dojo/dojox/mobile/themes/iphone/iphone.css +751 -0
- data/dojo/dojox/rails.js +143 -0
- data/dojo/dojox/rails/README +41 -0
- data/dojo/dojox/rails/tests/module.js +7 -0
- data/dojo/dojox/rails/tests/plugd/trigger.js +187 -0
- data/dojo/dojox/rails/tests/runTests.html +9 -0
- data/dojo/dojox/rails/tests/success_response.html +1 -0
- data/dojo/dojox/rails/tests/test_rails.html +320 -0
- data/dojo/dojox/robot/recorder.js +3 -3
- data/dojo/dojox/rpc/SMDLibrary/wikipedia.smd +49 -49
- data/dojo/dojox/rpc/tests/resources/query +5 -5
- data/dojo/dojox/sketch/Figure.js +2 -2
- data/dojo/dojox/sketch/UndoStack.js +2 -2
- data/dojo/dojox/validate/creditCard.js +1 -1
- data/dojo/dojox/widget/Calendar.js +18 -18
- data/dojo/dojox/widget/CalendarViews.js +2 -2
- data/dojo/dojox/widget/ColorPicker.js +248 -73
- data/dojo/dojox/widget/ColorPicker/ColorPicker.css +32 -19
- data/dojo/dojox/widget/ColorPicker/ColorPicker.html +71 -30
- data/dojo/dojox/widget/ColorPicker/images/hueHandleA11y.png +0 -0
- data/dojo/dojox/widget/DataPresentation.js +126 -60
- data/dojo/dojox/widget/Dialog.js +2 -1
- data/dojo/dojox/widget/Dialog/Dialog.css +7 -0
- data/dojo/dojox/widget/DynamicTooltip.js +3 -3
- data/dojo/dojox/widget/FeedPortlet.js +9 -9
- data/dojo/dojox/widget/FilePicker.js +2 -2
- data/dojo/dojox/widget/Portlet.js +8 -0
- data/dojo/dojox/widget/Portlet/Portlet.css +2 -2
- data/dojo/dojox/widget/RollingList.js +11 -8
- data/dojo/dojox/widget/Rotator.js +7 -1
- data/dojo/dojox/widget/Standby.js +32 -5
- data/dojo/dojox/widget/Toaster.js +3 -1
- data/dojo/dojox/widget/UpgradeBar.js +20 -20
- data/dojo/dojox/widget/Wizard.js +2 -2
- data/dojo/dojox/widget/Wizard/Wizard.css +5 -0
- data/dojo/dojox/widget/gauge/_Gauge.js +2 -2
- data/dojo/dojox/widget/nls/ColorPicker.js +4 -2
- data/dojo/dojox/widget/nls/ar/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/ca/ColorPicker.js +6 -0
- data/dojo/dojox/widget/nls/da/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/el/ColorPicker.js +10 -0
- data/dojo/dojox/widget/nls/fi/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/he/ColorPicker.js +10 -0
- data/dojo/dojox/widget/nls/ko/ColorPicker.js +7 -1
- data/dojo/dojox/widget/nls/nb/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/nl/ColorPicker.js +6 -0
- data/dojo/dojox/widget/nls/pt-pt/ColorPicker.js +8 -0
- data/dojo/dojox/widget/nls/ro/ColorPicker.js +5 -0
- data/dojo/dojox/widget/nls/ro/FilePicker.js +6 -0
- data/dojo/dojox/widget/nls/ro/Wizard.js +6 -0
- data/dojo/dojox/widget/nls/sk/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/sl/ColorPicker.js +3 -0
- data/dojo/dojox/widget/nls/sv/ColorPicker.js +6 -0
- data/dojo/dojox/widget/nls/tr/ColorPicker.js +10 -0
- data/dojo/dojox/widget/rotator/ThumbnailController.js +96 -0
- data/dojo/dojox/widget/tests/test_ColorPicker.html +10 -1
- data/dojo/dojox/widget/tests/test_DataPresentation.html +7 -3
- data/dojo/dojox/widget/tests/test_PortletInGridContainer.html +27 -37
- data/dojo/dojox/widget/tests/test_PortletInGridContainer.js +2 -1
- data/dojo/dojox/widget/tests/test_PortletInGridContainerColumns.html +10 -8
- data/dojo/dojox/widget/tests/test_Rotator.html +2 -0
- data/dojo/dojox/widget/tests/test_Rotator_ThumbnailController.html +63 -0
- data/dojo/dojox/widget/tests/test_Standby.html +4 -4
- data/dojo/dojox/wire/Wire.js +32 -4
- data/dojo/dojox/wire/demos/markup/demo_ActionChaining.html +1 -1
- data/dojo/dojox/wire/demos/markup/demo_ConditionalActions.html +6 -6
- data/dojo/dojox/wire/demos/markup/demo_TopicWiring.html +1 -1
- data/dojo/dojox/xml/parser.js +2 -2
- data/dojo/util/LICENSE +1 -1
- data/dojo/util/buildscripts/build.bat +3 -3
- data/dojo/util/buildscripts/build.js +4 -2
- data/dojo/util/buildscripts/build_notice.txt +2 -4
- data/dojo/util/buildscripts/build_release.sh +6 -6
- data/dojo/util/buildscripts/cdnBuild.sh +39 -0
- data/dojo/util/buildscripts/cdnBuild.txt +13 -13
- data/dojo/util/buildscripts/cldr/README +1 -1
- data/dojo/util/buildscripts/cldr/build.xml +1 -1
- data/dojo/util/buildscripts/cldr/calendar.xsl +98 -74
- data/dojo/util/buildscripts/cldr/ldml/CatalogManager.properties +16 -16
- data/dojo/util/buildscripts/cldr/ldml/catalog +1 -1
- data/dojo/util/buildscripts/cldr/ldml/core.zip +0 -0
- data/dojo/util/buildscripts/copyright.txt +1 -1
- data/dojo/util/buildscripts/jslib/buildUtil.js +9 -0
- data/dojo/util/buildscripts/jslib/dojoGuardEnd.jsfrag +8 -7
- data/dojo/util/buildscripts/profiles/baseplus.profile.js +21 -0
- data/dojo/util/buildscripts/profiles/demos-all.profile.js +7 -0
- data/dojo/util/buildscripts/tests/conditionalTest.js +1 -1
- data/dojo/util/checkstyle/checkstyle.bat +3 -3
- data/dojo/util/checkstyle/checkstyleUtil.js +68 -4
- data/dojo/util/checkstyle/runCheckstyle.js +24 -2
- data/dojo/util/docscripts/LICENSE +1 -1
- data/dojo/util/docscripts/cheat/lib.js +1 -1
- data/dojo/util/docscripts/lib/parser2/JavaScriptArray.php +2 -2
- data/dojo/util/docscripts/makeCix.php +1 -1
- data/dojo/util/doh/_browserRunner.js +25 -4
- data/dojo/util/doh/_rhinoRunner.js +1 -0
- data/dojo/util/doh/robot/DOHRobot.jar +0 -0
- data/dojo/util/doh/robot/DOHRobot.java +32 -7
- data/dojo/util/doh/runner.html +2 -2
- data/dojo/util/doh/runner.js +14 -5
- data/dojo/util/jsdoc/LICENSE +1 -1
- data/dojo/util/migration/dijitCss14to15.sed +67 -0
- data/dojo/util/shrinksafe/shrinksafe.jar +0 -0
- data/dojo/util/shrinksafe/src/org/dojotoolkit/shrinksafe/resources/Messages.properties +1 -1
- data/dojo/util/shrinksafe/tests/escapeunicode.js +1 -0
- data/dojo/util/shrinksafe/tests/module.js +14 -5
- data/lib/dojo_src.rb +2 -5
- metadata +4940 -4373
- data/dojo/dijit/tests/_base/viewportQuirks.html +0 -5
- data/dojo/dijit/themes/nihilo/form/ComboBox.css +0 -12
- data/dojo/dijit/themes/nihilo/form/Common_rtl.css +0 -7
- data/dojo/dijit/themes/nihilo/images/editor.gif +0 -0
- data/dojo/dijit/themes/nihilo/images/editorDisabled.gif +0 -0
- data/dojo/dijit/themes/nihilo/images/editorDisabled_rtl.gif +0 -0
- data/dojo/dijit/themes/nihilo/images/editor_rtl.gif +0 -0
- data/dojo/dijit/themes/soria/form/ComboBox.css +0 -12
- data/dojo/dijit/themes/soria/form/Common_rtl.css +0 -7
- data/dojo/dijit/themes/soria/images/editor.gif +0 -0
- data/dojo/dijit/themes/soria/images/editorDisabled.gif +0 -0
- data/dojo/dijit/themes/soria/images/editorDisabled_rtl.gif +0 -0
- data/dojo/dijit/themes/soria/images/editor_rtl.gif +0 -0
- data/dojo/dijit/themes/templateThemeTest.html +0 -178
- data/dojo/dijit/themes/tundra/form/Common_rtl.css +0 -6
- data/dojo/dijit/themes/tundra/images/editor.gif +0 -0
- data/dojo/dijit/themes/tundra/images/editorDisabled.gif +0 -0
- data/dojo/dijit/themes/tundra/images/editorDisabled_rtl.gif +0 -0
- data/dojo/dijit/themes/tundra/images/editorMaster.png +0 -0
- data/dojo/dijit/themes/tundra/images/editor_rtl.gif +0 -0
- data/dojo/dojo/cldr/nls/de-de/number.js +0 -4
- data/dojo/dojo/cldr/nls/en-us/currency.js +0 -5
- data/dojo/dojo/cldr/nls/en-us/number.js +0 -4
- data/dojo/dojo/cldr/nls/es-es/gregorian.js +0 -7
- data/dojo/dojo/cldr/nls/es-es/number.js +0 -4
- data/dojo/dojo/cldr/nls/islamic-civil.js +0 -96
- data/dojo/dojo/cldr/nls/it-it/gregorian.js +0 -5
- data/dojo/dojo/cldr/nls/ja-jp/number.js +0 -4
- data/dojo/dojo/cldr/nls/ko-kr/gregorian.js +0 -6
- data/dojo/dojo/cldr/nls/ko-kr/number.js +0 -4
- data/dojo/dojo/cldr/nls/pt-br/gregorian.js +0 -18
- data/dojo/dojo/cldr/nls/zh-cn/gregorian.js +0 -12
- data/dojo/dojo/cldr/nls/zh-cn/number.js +0 -4
- data/dojo/dojo/cldr/nls/zh-tw/number.js +0 -6
- data/dojo/dojox/editor/plugins/resources/icons/findIcon.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/findReplace.gif +0 -0
- data/dojo/dojox/editor/plugins/resources/icons/replaceIcon.gif +0 -0
- data/dojo/dojox/math/LICENSE-BigInteger +0 -40
- data/dojo/util/buildscripts/cldr/ldml/ldml.dtd +0 -1166
- data/dojo/util/docscripts/api.json +0 -202488
- data/dojo/util/docscripts/api.xml +0 -54976
- data/dojo/util/resources/LICENSE +0 -195
- data/dojo/util/resources/api/api.xml +0 -0
- data/dojo/util/resources/api/dojo.cix +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/dojo-styles.css +0 -114
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/images/bg-content-left.png +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/images/bg-content-right.png +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/images/body.png +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/images/logo.png +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/mini-dtk.css +0 -34
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/mini-dtk.psd +0 -0
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/style.css +0 -1092
- data/dojo/util/resources/dojotoolkit.org/mini-dtk/template.html +0 -115
- data/dojo/util/resources/logo/negative/dijit.logo.neg.ai +15 -4118
- data/dojo/util/resources/logo/negative/dijit.logo.neg.eps +0 -5557
- data/dojo/util/resources/logo/negative/dijit.logo.neg.png +0 -0
- data/dojo/util/resources/logo/negative/dijit.logo.neg.svg +0 -987
- data/dojo/util/resources/logo/negative/dojo.logo.neg.ai +0 -0
- data/dojo/util/resources/logo/negative/dojo.logo.neg.big.png +0 -0
- data/dojo/util/resources/logo/negative/dojo.logo.neg.eps +0 -64
- data/dojo/util/resources/logo/negative/dojo.logo.neg.png +0 -0
- data/dojo/util/resources/logo/negative/dojo.logo.neg.svg +0 -36
- data/dojo/util/resources/logo/negative/dojox.logo.neg.ai +8 -4003
- data/dojo/util/resources/logo/negative/dojox.logo.neg.eps +0 -5357
- data/dojo/util/resources/logo/negative/dojox.logo.neg.png +0 -0
- data/dojo/util/resources/logo/negative/dojox.logo.neg.svg +0 -41
- data/dojo/util/resources/logo/positive/dijit.logo.ai +10 -4169
- data/dojo/util/resources/logo/positive/dijit.logo.eps +0 -5562
- data/dojo/util/resources/logo/positive/dijit.logo.png +0 -0
- data/dojo/util/resources/logo/positive/dijit.logo.svg +0 -987
- data/dojo/util/resources/logo/positive/dojo.logo.ai +15 -3719
- data/dojo/util/resources/logo/positive/dojo.logo.big.png +0 -0
- data/dojo/util/resources/logo/positive/dojo.logo.eps +0 -64
- data/dojo/util/resources/logo/positive/dojo.logo.png +0 -0
- data/dojo/util/resources/logo/positive/dojo.logo.svg +0 -36
- data/dojo/util/resources/logo/positive/dojox.logo.ai +13 -4068
- data/dojo/util/resources/logo/positive/dojox.logo.eps +0 -5362
- data/dojo/util/resources/logo/positive/dojox.logo.png +0 -0
- data/dojo/util/resources/logo/positive/dojox.logo.svg +0 -41
- data/dojo/util/resources/themes/nihilo/nihilo.psd +0 -0
- data/dojo/util/resources/themes/soria/soria.psd +0 -0
@@ -0,0 +1,77 @@
|
|
1
|
+
.claro .dijitTabContainerTop-tabs .dijitTabRtl,
|
2
|
+
.claro .dijitTabContainerBottom-tabs .dijitTabRtl {
|
3
|
+
margin-right: 0;
|
4
|
+
margin-left: 1px;
|
5
|
+
}
|
6
|
+
.claro .dijitTabRtl {
|
7
|
+
-moz-box-orient:horizontal;
|
8
|
+
text-align: right;
|
9
|
+
}
|
10
|
+
.dj_ie7 .claro .dijitTabRtl .dijitTabContent {
|
11
|
+
display: block;
|
12
|
+
left: 0;
|
13
|
+
}
|
14
|
+
.dj_ie7 .claro .dijitTabContainerTop-tabs .dijitTabRtl,
|
15
|
+
.dj_ie7 .claro .dijitTabContainerTop-tabs .dijitTabCheckedRtl {
|
16
|
+
top: 1px;
|
17
|
+
}
|
18
|
+
.dj_ie7 .claro .tabStripButtonRtl .dijitButtonContents,
|
19
|
+
.dj_ie8 .claro .tabStripButtonRtl .dijitButtonContents, /* needed for IE8 quirks, but breaks IE6 quirks */
|
20
|
+
.dj_ie6 .claro .dijitTabContainerTop-tabs .dijitTabRtl .dijitTabInnerDiv,
|
21
|
+
.dj_ie6 .claro .dijitTabContainerBottom-tabs .dijitTabRtl .dijitTabInnerDiv,
|
22
|
+
.dj_ie7 .claro .dijitTabContainerTop-tabs .dijitTabRtl .dijitTabInnerDiv,
|
23
|
+
.dj_ie7 .claro .dijitTabContainerBottom-tabs .dijitTabRtl .dijitTabInnerDiv,
|
24
|
+
.dj_iequirks .claro .dijitTabContainerTop-tabs .dijitTabRtl .dijitTabInnerDiv,
|
25
|
+
.dj_iequirks .claro .dijitTabContainerBottom-tabs .dijitTabRtl .dijitTabInnerDiv {
|
26
|
+
float:left;
|
27
|
+
}
|
28
|
+
.dj_ie6 .claro .dijitTabRtl .tabLabel,
|
29
|
+
.dj_ie6 .claro .dijitTabContainerRight-tabs .dijitTabRtl,
|
30
|
+
.dj_ie6 .claro .dijitTabContainerLeft-tabs .dijitTabRtl,
|
31
|
+
.dj_ie7 .claro .dijitTabContainerRight-tabs .dijitTabRtl .dijitTabInnerDiv,
|
32
|
+
.dj_ie7 .claro .dijitTabContainerLeft-tabs .dijitTabRtl .dijitTabInnerDiv {
|
33
|
+
/*Make the .tablabel have width in ie6 with haslayout property, fix Close icon position bug*/
|
34
|
+
zoom:1;
|
35
|
+
}
|
36
|
+
.dj_ie6 .claro .dijitTabRtl .dijitTabCloseButton,
|
37
|
+
.dj_ie7 .claro .dijitTabRtl .dijitTabCloseButton,
|
38
|
+
.dj_iequirks .claro .dijitTabRtl .dijitTabCloseButton {
|
39
|
+
margin-right:5px;
|
40
|
+
}
|
41
|
+
|
42
|
+
.dj_ie6 .claro .dijitTabContainerRightRtl .dijitTabContainerRight-tabs,
|
43
|
+
.dj_ie6 .claro .dijitTabContainerLeftRtl .dijitTabContainerLeft-tabs {
|
44
|
+
width:1%;
|
45
|
+
}
|
46
|
+
|
47
|
+
.dj_ie6 .dijitTabContainerTopStrip,
|
48
|
+
.dj_ie6 .dijitTabContainerBottomStrip {
|
49
|
+
position:absolute;
|
50
|
+
}
|
51
|
+
.dj_iequirks .claro .dijitTabContainerTopRtl .dijitTabContainerTopStrip {
|
52
|
+
padding-top: 10px;
|
53
|
+
}
|
54
|
+
.dj_ie7 .claro .dijitTabContainerRight-tabs .dijitTabRtlChecked .dijitTabInnerDiv {
|
55
|
+
background-position:-341px -179px;
|
56
|
+
}
|
57
|
+
|
58
|
+
.dj_ie6 .dijitTabContainerTopRtl .dijitTabStripIcon,
|
59
|
+
.dj_ie6 .dijitTabContainerBottomRtl .dijitTabStripIcon {
|
60
|
+
position: relative;
|
61
|
+
}
|
62
|
+
|
63
|
+
|
64
|
+
.dj_ie6-rtl .claro .dijitTabContainerTop-tabs {
|
65
|
+
/* this strange rule prevents IE6 bug in themeTester.html?dir=rtl upon closing
|
66
|
+
* "Closable" tab, where the other tabs disappear
|
67
|
+
*/
|
68
|
+
padding-left: 3px;
|
69
|
+
}
|
70
|
+
|
71
|
+
.dj_iequirks-rtl .claro .dijitTabListWrapper {
|
72
|
+
/* this strange rule prevents IE6 bug in themeTesterQuirk.html?dir=rtl upon closing
|
73
|
+
* "Closable" tab, where the other tabs disappear
|
74
|
+
*/
|
75
|
+
border-left: 1px solid #fff;
|
76
|
+
border-right: 1px solid #fff;
|
77
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/dojo/dijit/themes/dijit.css
CHANGED
@@ -21,6 +21,9 @@
|
|
21
21
|
font: inherit;
|
22
22
|
color: inherit;
|
23
23
|
}
|
24
|
+
.dijit_a11y .dijitReset {
|
25
|
+
-moz-appearance: none; /* remove predefined high-contrast styling in Firefox */
|
26
|
+
}
|
24
27
|
|
25
28
|
.dijitInline {
|
26
29
|
/* To inline block elements.
|
@@ -47,16 +50,32 @@
|
|
47
50
|
position: relative; /* to support setting width/height, see #2033 */
|
48
51
|
}
|
49
52
|
|
53
|
+
.dijitInputContainer {
|
54
|
+
/* for positioning of placeHolder */
|
55
|
+
#zoom: 1;
|
56
|
+
overflow: hidden;
|
57
|
+
float: none !important; /* needed by FF to squeeze the INPUT in */
|
58
|
+
position:relative;
|
59
|
+
}
|
50
60
|
|
51
61
|
.dj_ie INPUT.dijitTextBox,
|
52
|
-
.dj_ie .
|
62
|
+
.dj_ie .dijitTextBox INPUT {
|
53
63
|
font-size: 100%;
|
54
64
|
}
|
55
|
-
|
56
|
-
.
|
57
|
-
|
65
|
+
.dijitTextBox .dijitSpinnerButtonContainer,
|
66
|
+
.dijitTextBox .dijitArrowButtonContainer,
|
67
|
+
.dijitTextBox .dijitValidationContainer {
|
68
|
+
float: right;
|
69
|
+
text-align: center;
|
70
|
+
}
|
71
|
+
.dijitTextBox INPUT.dijitInputField {
|
72
|
+
/* override unreasonable user styling of buttons and icons */
|
73
|
+
padding-left: 0 !important;
|
74
|
+
padding-right: 0 !important;
|
75
|
+
}
|
76
|
+
.dijitTextBox .dijitValidationContainer {
|
77
|
+
display: none;
|
58
78
|
}
|
59
|
-
|
60
79
|
.dijitInlineTable {
|
61
80
|
/* To inline tables with a given width set (otherwise, use dijitInline above) */
|
62
81
|
display:inline-table;
|
@@ -73,6 +92,13 @@
|
|
73
92
|
line-height:1px;
|
74
93
|
}
|
75
94
|
|
95
|
+
.dijitOffScreen {
|
96
|
+
position: absolute;
|
97
|
+
visibility: hidden;
|
98
|
+
left: 50%;
|
99
|
+
top: -10000px;
|
100
|
+
}
|
101
|
+
|
76
102
|
/*
|
77
103
|
* Popup items have a wrapper div (dijitPopup)
|
78
104
|
* with the real popup inside, and maybe an iframe too
|
@@ -85,17 +111,12 @@
|
|
85
111
|
padding: 0;
|
86
112
|
}
|
87
113
|
.dijit_a11y .dijitPopup,
|
88
|
-
.dijit_ally .dijitPopup
|
89
|
-
.dijit_a11y .dijitPopup
|
114
|
+
.dijit_ally .dijitPopup DIV,
|
115
|
+
.dijit_a11y .dijitPopup TABLE,
|
90
116
|
.dijit_a11y .dijitTooltipContainer {
|
91
117
|
background-color: white !important;
|
92
118
|
}
|
93
119
|
|
94
|
-
.dijitInputField {
|
95
|
-
overflow:hidden;
|
96
|
-
#zoom:1;
|
97
|
-
}
|
98
|
-
|
99
120
|
.dijitPositionOnly {
|
100
121
|
/* Null out all position-related properties */
|
101
122
|
padding: 0 !important;
|
@@ -127,13 +148,6 @@
|
|
127
148
|
margin: 0;
|
128
149
|
}
|
129
150
|
|
130
|
-
.dijitClickableRegion {
|
131
|
-
/* An InlineEditBox in view mode (click this to edit the text) */
|
132
|
-
background-color: #e2ebf2;
|
133
|
-
cursor: text;
|
134
|
-
}
|
135
|
-
|
136
|
-
|
137
151
|
.dijitDisplayNone {
|
138
152
|
/* hide something. Use this as a class rather than element.style so another class can override */
|
139
153
|
display:none !important;
|
@@ -150,10 +164,19 @@
|
|
150
164
|
.dijit_a11y * {
|
151
165
|
background-image:none !important;
|
152
166
|
}
|
153
|
-
|
167
|
+
.dijit_a11y .dijitIcon,
|
168
|
+
.dijit_a11y DIV.dijitArrowButtonInner, /* is this only for Spinner? if so, it should be deleted */
|
169
|
+
.dijit_a11y SPAN.dijitArrowButtonInner,
|
170
|
+
.dijit_a11y IMG.dijitArrowButtonInner,
|
154
171
|
.dijit_a11y .dijitCalendarIncrementControl {
|
155
|
-
|
172
|
+
/* hide icon nodes in high contrast mode; when necesary they will be replaced by character equivalents
|
173
|
+
* exception for INPUT.dijitArrowButtonInner, because the icon and character are controlled by the same node */
|
174
|
+
display: none;
|
175
|
+
}
|
176
|
+
.dijitSpinner DIV.dijitArrowButtonInner {
|
177
|
+
display: block; /* override previous rule */
|
156
178
|
}
|
179
|
+
|
157
180
|
.dijit_a11y .dijitA11ySideArrow {
|
158
181
|
display: inline !important; /* display text instead */
|
159
182
|
cursor: pointer;
|
@@ -169,7 +192,8 @@
|
|
169
192
|
padding: 1px;
|
170
193
|
}
|
171
194
|
.dijit_a11y .dijitCalendarSelectedDate .dijitCalendarDateLabel {
|
172
|
-
border:
|
195
|
+
border-style: dotted !important;
|
196
|
+
border-width: 1px;
|
173
197
|
padding: 0px;
|
174
198
|
}
|
175
199
|
.dijit_a11y .dijitCalendarDateTemplate {
|
@@ -186,17 +210,8 @@
|
|
186
210
|
border-width: medium!important;
|
187
211
|
}
|
188
212
|
|
189
|
-
.dijit_a11y .
|
190
|
-
.dijit_a11y .
|
191
|
-
.dijit_a11y .dijitSpinnerReadOnly .dijitButtonNode,
|
192
|
-
.dijit_a11y .dijitSpinnerReadOnly .dijitInputField,
|
193
|
-
.dijit_a11y .dijitButtonDisabled .dijitButtonNode,
|
194
|
-
.dijit_a11y .dijitDropDownButtonDisabled .dijitButtonNode,
|
195
|
-
.dijit_a11y .dijitComboButtonDisabled .dijitButtonNode,
|
196
|
-
.dijit_a11y .dijitComboBoxDisabled .dijitInputField,
|
197
|
-
.dijit_a11y .dijitComboBoxDisabled .dijitButtonNode,
|
198
|
-
.dijit_a11y .dijitSpinnerDisabled .dijitButtonNode,
|
199
|
-
.dijit_a11y .dijitSpinnerDisabled .dijitInputField {
|
213
|
+
.dijit_a11y .dijitTextBoxReadOnly .dijitInputField,
|
214
|
+
.dijit_a11y .dijitTextBoxReadOnly .dijitButtonNode {
|
200
215
|
border-style: outset!important;
|
201
216
|
border-width: medium!important;
|
202
217
|
border-color: #999 !important;
|
@@ -207,26 +222,17 @@
|
|
207
222
|
.dijitButtonNode * {
|
208
223
|
vertical-align: middle;
|
209
224
|
}
|
210
|
-
.dijit_a11y .dijitArrowButtonInner {
|
211
|
-
width: 1em;
|
212
|
-
display: none !important;
|
213
|
-
}
|
214
225
|
.dijitButtonNode .dijitArrowButtonInner {
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
226
|
+
/* the arrow icon node */
|
227
|
+
background: no-repeat center;
|
228
|
+
width: 12px;
|
229
|
+
height: 12px;
|
230
|
+
direction: ltr; /* needed by IE/RTL */
|
220
231
|
}
|
221
232
|
|
222
|
-
/* In high contrast mode, display the check symbol */
|
223
|
-
.dijit_a11y .dijitToggleButtonChecked .dijitToggleButtonIconChar {
|
224
|
-
display: inline !important;
|
225
|
-
}
|
226
|
-
|
227
|
-
|
228
233
|
/****
|
229
|
-
|
234
|
+
3-element borders: ( dijitLeft + dijitStretch + dijitRight )
|
235
|
+
These were added for rounded corners on dijit.form.*Button but never actually used.
|
230
236
|
****/
|
231
237
|
|
232
238
|
.dijitLeft {
|
@@ -248,6 +254,8 @@
|
|
248
254
|
background-repeat:no-repeat;
|
249
255
|
}
|
250
256
|
|
257
|
+
/* Buttons */
|
258
|
+
|
251
259
|
.dijitToggleButton,
|
252
260
|
.dijitButton,
|
253
261
|
.dijitDropDownButton,
|
@@ -256,6 +264,31 @@
|
|
256
264
|
margin: 0.2em;
|
257
265
|
}
|
258
266
|
|
267
|
+
.dijitButtonContents {
|
268
|
+
display: block; /* to make focus border rectangular */
|
269
|
+
}
|
270
|
+
td.dijitButtonContents {
|
271
|
+
display: table-cell; /* but don't affect Select, ComboButton */
|
272
|
+
}
|
273
|
+
|
274
|
+
.dijitButtonNode IMG {
|
275
|
+
/* make text and images line up cleanly */
|
276
|
+
vertical-align:middle;
|
277
|
+
/*margin-bottom:.2em;*/
|
278
|
+
}
|
279
|
+
|
280
|
+
TABLE.dijitComboButton { /* TODO: why not add dijitReset class to ComboButton? */
|
281
|
+
/* In ComboButton, borders are on each cell rather than on <table> itself */
|
282
|
+
border-collapse: collapse;
|
283
|
+
border:0;
|
284
|
+
padding:0;
|
285
|
+
margin:0;
|
286
|
+
}
|
287
|
+
.dijitToolbar .dijitComboButton {
|
288
|
+
/* because Toolbar only draws a border around the hovered thing */
|
289
|
+
border-collapse: separate;
|
290
|
+
}
|
291
|
+
|
259
292
|
.dijitToolbar .dijitToggleButton,
|
260
293
|
.dijitToolbar .dijitButton,
|
261
294
|
.dijitToolbar .dijitDropDownButton,
|
@@ -263,19 +296,11 @@
|
|
263
296
|
margin: 0;
|
264
297
|
}
|
265
298
|
|
266
|
-
.
|
267
|
-
|
268
|
-
/* FF and IE<8 adds implicit padding to buttons, so make other browsers follow suit,
|
269
|
-
* to avoid a bunch of browse specific rules in theme files
|
270
|
-
*/
|
299
|
+
.dijitToolbar .dijitButtonContents {
|
300
|
+
/* just because it used to be this way */
|
271
301
|
padding: 1px 2px;
|
272
302
|
}
|
273
303
|
|
274
|
-
.dj_ie .dijitToolbar .dijitComboBox{
|
275
|
-
/* make combobox buttons align porperly with other buttons in a toolbar */
|
276
|
-
vertical-align: middle;
|
277
|
-
}
|
278
|
-
|
279
304
|
.dj_ie .dijitComboButton {
|
280
305
|
/* hack to get inline-table to vertically align w/other buttons */
|
281
306
|
margin-bottom: -3px;
|
@@ -298,18 +323,18 @@
|
|
298
323
|
text-align:center;
|
299
324
|
white-space: nowrap;
|
300
325
|
}
|
301
|
-
|
302
|
-
|
303
|
-
|
326
|
+
.dj_webkit .dijitSpinner .dijitSpinnerButtonContainer {
|
327
|
+
/* apparent WebKit bug where messing with the font coupled with line-height:normal X 2 (dijitReset & dijitButtonNode)
|
328
|
+
can be different than just a single line-height:normal, visible in InlineEditBox/Spinner */
|
329
|
+
line-height:inherit;
|
330
|
+
}
|
331
|
+
.dijitTextBox .dijitButtonNode {
|
332
|
+
border-width: 0;
|
304
333
|
}
|
305
334
|
|
306
|
-
|
307
|
-
.
|
308
|
-
|
309
|
-
.dijitReadOnly,
|
310
|
-
.dijitDisabled,
|
311
|
-
.dijitDisabledClickableRegion { /* a region the user would be able to click on, but it's disabled */
|
312
|
-
cursor: not-allowed !important;
|
335
|
+
.dijitButtonNode,
|
336
|
+
.dijitButtonNode * {
|
337
|
+
cursor: pointer;
|
313
338
|
}
|
314
339
|
|
315
340
|
.dj_ie .dijitButtonNode {
|
@@ -325,74 +350,16 @@
|
|
325
350
|
overflow: visible;
|
326
351
|
}
|
327
352
|
|
328
|
-
.dijitArrowButton {
|
329
|
-
/* Node that is acting as a arrow button -- drop down (spinner has its own treatment). Also gets dijitButtonNode */
|
330
|
-
/* place AFTER dijitButtonNode so it overrides */
|
331
|
-
padding: 0 .4em;
|
332
|
-
}
|
333
353
|
DIV.dijitArrowButton {
|
334
354
|
float: right;
|
335
355
|
}
|
336
356
|
|
337
|
-
.dijitSpinner .dijitInputLayoutContainer .dijitArrowButton {
|
338
|
-
border-style: solid;
|
339
|
-
border-width: 0 0 0 1px !important;
|
340
|
-
padding: 0;
|
341
|
-
position: absolute;
|
342
|
-
right: 0;
|
343
|
-
float: none;
|
344
|
-
}
|
345
|
-
.dijitSpinner .dijitInputLayoutContainer .dijitArrowButton {
|
346
|
-
position: absolute;
|
347
|
-
height: 50%;
|
348
|
-
}
|
349
|
-
.dijitSpinner .dijitInputLayoutContainer .dijitDownArrowButton {
|
350
|
-
top: auto;
|
351
|
-
bottom: 0;
|
352
|
-
border-top-width: 1px !important;
|
353
|
-
}
|
354
|
-
.dijitSpinner .dijitInputLayoutContainer .dijitUpArrowButton {
|
355
|
-
top: 0;
|
356
|
-
bottom: auto;
|
357
|
-
}
|
358
|
-
|
359
|
-
TABLE.dijitComboButton {
|
360
|
-
/* In ComboButton, borders are on each cell rather than on <table> itself */
|
361
|
-
border-collapse: collapse;
|
362
|
-
border:0;
|
363
|
-
padding:0;
|
364
|
-
margin:0;
|
365
|
-
}
|
366
|
-
.dijitToolbar .dijitComboButton {
|
367
|
-
/* because Toolbar only draws a border around the hovered thing */
|
368
|
-
border-collapse: separate;
|
369
|
-
}
|
370
|
-
|
371
|
-
.dj_ie BUTTON.dijitButtonNode {
|
372
|
-
overflow: visible; /* eliminates arbitrary left and right padding on buttons */
|
373
|
-
}
|
374
|
-
|
375
|
-
table .dijitButton .dijitButtonNode,
|
376
|
-
table .dijitComboButton .dijitButtonNode {
|
377
|
-
#overflow:hidden; /* visible messes up if the button is inside a table on IE */
|
378
|
-
}
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
.dijitButtonNode IMG {
|
383
|
-
/* make text and images line up cleanly */
|
384
|
-
vertical-align:middle;
|
385
|
-
/*margin-bottom:.2em;*/
|
386
|
-
}
|
387
|
-
|
388
357
|
/******
|
389
358
|
TextBox related.
|
390
359
|
Everything that has an <input>
|
391
360
|
*******/
|
392
361
|
|
393
|
-
.dijitTextBox
|
394
|
-
.dijitComboBox,
|
395
|
-
.dijitSpinner {
|
362
|
+
.dijitTextBox {
|
396
363
|
border: solid black 1px;
|
397
364
|
#overflow: hidden; /* #6027, #6067 */
|
398
365
|
width: 15em; /* need to set default size on outer node since inner nodes say <input style="width:100%"> and <td width=100%>. user can override */
|
@@ -400,68 +367,257 @@ table .dijitComboButton .dijitButtonNode {
|
|
400
367
|
#vertical-align: auto;
|
401
368
|
}
|
402
369
|
|
370
|
+
.dijitTextBoxReadOnly,
|
371
|
+
.dijitTextBoxDisabled {
|
372
|
+
color: gray;
|
373
|
+
}
|
374
|
+
.dj_webkit .dijitTextBoxDisabled INPUT {
|
375
|
+
color: #eee; /* because WebKit lightens disabled input/textarea no matter what color you specify */
|
376
|
+
}
|
377
|
+
.dj_webkit TEXTAREA.dijitTextAreaDisabled {
|
378
|
+
color: #333; /* because WebKit lightens disabled input/textarea no matter what color you specify */
|
379
|
+
}
|
380
|
+
.dj_gecko .dijitTextBoxReadOnly INPUT,
|
381
|
+
.dj_gecko .dijitTextBoxDisabled INPUT {
|
382
|
+
-moz-user-input: none; /* prevent focus of disabled textbox buttons */
|
383
|
+
}
|
384
|
+
|
385
|
+
.dijitPlaceHolder {
|
386
|
+
/* hint text that appears in a textbox until user starts typing */
|
387
|
+
color: #AAAAAA;
|
388
|
+
font-style: italic;
|
389
|
+
position: absolute;
|
390
|
+
top: 0;
|
391
|
+
left: 0;
|
392
|
+
#filter: ""; /* make this showup in IE6 after the rendering of the widget */
|
393
|
+
}
|
394
|
+
|
403
395
|
.dijitTimeTextBox {
|
404
396
|
width: 8em;
|
405
397
|
}
|
406
398
|
|
407
|
-
/* rules for
|
408
|
-
.dijitTextBox
|
409
|
-
.dijitComboBox input:focus,
|
410
|
-
.dijitSpinner input:focus {
|
399
|
+
/* rules for webkit to deal with fuzzy blue focus border */
|
400
|
+
.dijitTextBox INPUT:focus {
|
411
401
|
outline: none; /* blue fuzzy line looks wrong on combobox or something w/validation icon showing */
|
412
402
|
}
|
413
|
-
.dijitTextBoxFocused
|
414
|
-
.dijitComboBoxFocused,
|
415
|
-
.dijitSpinnerFocused, .dijitSpinnerUpArrowActive, .dijitSpinnerDownArrowActive,
|
416
|
-
.dijitTextAreaFocused {
|
417
|
-
/* should we display focus like we do on other browsers, or use the safari standard focus indicator?? */
|
403
|
+
.dijitTextBoxFocused {
|
418
404
|
outline: auto 5px -webkit-focus-ring-color;
|
419
405
|
}
|
420
406
|
|
421
|
-
.dijitTextBox INPUT
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
position:static !important;
|
407
|
+
.dijitTextBox INPUT {
|
408
|
+
float: left; /* needed by IE to remove secret margin */
|
409
|
+
}
|
410
|
+
.dijitInputInner {
|
411
|
+
/* for when an <input> is embedded inside an inline-block <div> with a size and border */
|
427
412
|
border:0 !important;
|
428
|
-
|
429
|
-
vertical-align:top !important;
|
413
|
+
vertical-align:middle !important;
|
430
414
|
background-color:transparent !important;
|
431
|
-
background-image:none !important;
|
432
415
|
width:100% !important;
|
416
|
+
/* IE dislikes horizontal tweaking combined with width:100% so punish everyone for consistency */
|
417
|
+
padding-left: 0 !important;
|
418
|
+
padding-right: 0 !important;
|
419
|
+
margin-left: 0 !important;
|
420
|
+
margin-right: 0 !important;
|
421
|
+
}
|
422
|
+
.dijit_a11y .dijitTextBox INPUT {
|
423
|
+
margin: 0 !important;
|
424
|
+
}
|
425
|
+
.dijitTextBoxError INPUT.dijitValidationInner,
|
426
|
+
.dijitTextBox INPUT.dijitArrowButtonInner {
|
427
|
+
/* <input> used to display arrow icon/validation icon, or in arrow character in high contrast mode.
|
428
|
+
* The css below is a trick to hide the character in non-high-contrast mode
|
429
|
+
*/
|
430
|
+
text-indent: -1em !important;
|
431
|
+
direction: ltr !important;
|
432
|
+
text-align: left !important;
|
433
|
+
height: auto !important;
|
434
|
+
#text-indent: 0 !important;
|
435
|
+
#letter-spacing: -5em !important;
|
436
|
+
#text-align: right !important;
|
437
|
+
}
|
438
|
+
.dj_ie .dijitTextBox INPUT,
|
439
|
+
.dj_ie INPUT.dijitTextBox {
|
440
|
+
overflow-y: visible; /* INPUTs need help expanding when padding is added or line-height is adjusted */
|
441
|
+
line-height: normal; /* strict mode */
|
442
|
+
}
|
443
|
+
.dj_ie7 .dijitTextBox INPUT.dijitValidationInner,
|
444
|
+
.dj_ie7 .dijitTextBox INPUT.dijitArrowButtonInner {
|
445
|
+
line-height: 86%; /* IE7 problem where the icon is vertically too low w/o this - real input stays at normal */
|
446
|
+
}
|
447
|
+
.dj_ie6 .dijitTextBox INPUT,
|
448
|
+
.dj_ie6 INPUT.dijitTextBox,
|
449
|
+
.dj_iequirks .dijitTextBox INPUT.dijitValidationInner,
|
450
|
+
.dj_iequirks .dijitTextBox INPUT.dijitArrowButtonInner,
|
451
|
+
.dj_iequirks .dijitTextBox INPUT.dijitSpinnerButtonInner,
|
452
|
+
.dj_iequirks .dijitTextBox INPUT.dijitInputInner,
|
453
|
+
.dj_iequirks INPUT.dijitTextBox {
|
454
|
+
line-height: 100%; /* IE7 problem where the icon is vertically way too low w/o this */
|
455
|
+
}
|
456
|
+
.dijit_a11y INPUT.dijitValidationInner,
|
457
|
+
.dijit_a11y INPUT.dijitArrowButtonInner {
|
458
|
+
/* (in high contrast mode) revert rules from above so character displays */
|
459
|
+
text-indent: 0 !important;
|
460
|
+
width: 1em !important;
|
461
|
+
#text-align: left !important;
|
462
|
+
}
|
463
|
+
.dijitTextBoxError .dijitValidationContainer {
|
464
|
+
display: inline;
|
465
|
+
cursor: default;
|
433
466
|
}
|
434
467
|
|
435
|
-
/*
|
436
|
-
|
437
|
-
.
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
468
|
+
/* ComboBox & Spinner */
|
469
|
+
|
470
|
+
.dijitSpinner .dijitSpinnerButtonContainer,
|
471
|
+
.dijitComboBox .dijitArrowButtonContainer {
|
472
|
+
/* dividing line between input area and up/down button(s) for ComboBox and Spinner */
|
473
|
+
border-width: 0 0 0 1px !important; /* !important needed due to wayward ".theme .dijitButtonNode" rules */
|
474
|
+
}
|
475
|
+
.dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode {
|
476
|
+
/* dividing line between input area and up/down button(s) for ComboBox and Spinner */
|
477
|
+
border-width: 0;
|
478
|
+
}
|
479
|
+
.dj_ie .dijit_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitButtonNode {
|
480
|
+
clear: both; /* IE workaround */
|
481
|
+
}
|
482
|
+
.dijit_a11y .dijitTextBox .dijitValidationContainer,
|
483
|
+
.dijit_a11y .dijitTextBox .dijitSpinnerButtonContainer,
|
484
|
+
.dijit_a11y .dijitComboBox .dijitArrowButtonContainer {
|
485
|
+
/* dividing line between input area and up/down button(s) for ComboBox and Spinner */
|
486
|
+
border: solid black !important;
|
487
|
+
border-width: 0 0 0 1px !important;
|
488
|
+
}
|
489
|
+
|
490
|
+
.dj_ie .dijitToolbar .dijitComboBox {
|
491
|
+
/* make combobox buttons align porperly with other buttons in a toolbar */
|
492
|
+
vertical-align: middle;
|
493
|
+
}
|
494
|
+
|
495
|
+
/* Spinner */
|
496
|
+
|
497
|
+
.dijitTextBox .dijitSpinnerButtonContainer {
|
498
|
+
width: 1em;
|
499
|
+
position: relative !important;
|
500
|
+
overflow: hidden;
|
501
|
+
}
|
502
|
+
.dijitSpinner .dijitSpinnerButtonInner {
|
503
|
+
width:1em;
|
504
|
+
visibility:hidden !important; /* just a sizing element */
|
505
|
+
overflow-x:hidden;
|
506
|
+
}
|
507
|
+
.dijitComboBox .dijitButtonNode,
|
508
|
+
.dijitSpinnerButtonContainer .dijitButtonNode {
|
509
|
+
border-width: 0;
|
510
|
+
}
|
511
|
+
.dijit_a11y .dijitSpinnerButtonContainer .dijitButtonNode {
|
512
|
+
border: 0 none !important;
|
513
|
+
}
|
514
|
+
.dijit_a11y .dijitTextBox .dijitSpinnerButtonContainer,
|
515
|
+
.dijit_a11y .dijitSpinner .dijitArrowButtonInner,
|
516
|
+
.dijit_a11y .dijitSpinnerButtonContainer INPUT {
|
517
|
+
width: 1em !important;
|
518
|
+
}
|
519
|
+
.dijit_a11y .dijitSpinner .dijitArrowButtonInner {
|
520
|
+
margin: 0 auto !important; /* should auto-center */
|
521
|
+
}
|
522
|
+
.dj_ie .dijit_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {
|
523
|
+
padding-left: 0.3em !important;
|
524
|
+
padding-right: 0.3em !important;
|
525
|
+
margin-left: 0.3em !important;
|
526
|
+
margin-right: 0.3em !important;
|
527
|
+
width: 1.4em !important;
|
528
|
+
}
|
529
|
+
.dj_ie7 .dijit_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {
|
530
|
+
padding-left: 0.0em !important; /* manually center INPUT: character is .5em and total width = 1em */
|
531
|
+
padding-right: 0.0em !important;
|
532
|
+
width: 1em !important;
|
533
|
+
}
|
534
|
+
.dj_ie6 .dijit_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {
|
535
|
+
margin-left: 0.1em !important;
|
536
|
+
margin-right: 0.1em !important;
|
537
|
+
width: 1em !important;
|
538
|
+
}
|
539
|
+
.dj_iequirks .dijit_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {
|
540
|
+
margin-left: 0 !important;
|
541
|
+
margin-right: 0 !important;
|
542
|
+
width: 2em !important;
|
543
|
+
}
|
544
|
+
.dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {
|
545
|
+
/* note: .dijitInputLayoutContainer makes this rule override .dijitArrowButton settings
|
546
|
+
* for dijit.form.Button
|
547
|
+
*/
|
548
|
+
padding: 0;
|
549
|
+
position: absolute !important;
|
550
|
+
right: 0;
|
551
|
+
float: none;
|
552
|
+
height: 50%;
|
553
|
+
width: 100%;
|
554
|
+
bottom: auto;
|
555
|
+
left: 0;
|
556
|
+
right: auto;
|
557
|
+
}
|
558
|
+
.dj_iequirks .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {
|
559
|
+
width: auto;
|
560
|
+
}
|
561
|
+
.dijit_a11y .dijitSpinnerButtonContainer .dijitArrowButton {
|
562
|
+
overflow: visible !important;
|
563
|
+
}
|
564
|
+
.dijitSpinner .dijitSpinnerButtonContainer .dijitDownArrowButton {
|
565
|
+
top: 50%;
|
566
|
+
border-top-width: 1px !important;
|
567
|
+
}
|
568
|
+
.dijitSpinner .dijitSpinnerButtonContainer .dijitUpArrowButton {
|
569
|
+
#bottom: 50%; /* otherwise (on some machines) top arrow icon too close to splitter border (IE6/7) */
|
570
|
+
top: 0;
|
443
571
|
}
|
444
|
-
.
|
572
|
+
.dijitSpinner .dijitArrowButtonInner {
|
573
|
+
margin: auto;
|
574
|
+
overflow-x: hidden;
|
575
|
+
height: 100% !important;
|
576
|
+
}
|
577
|
+
.dj_iequirks .dijitSpinner .dijitArrowButtonInner {
|
578
|
+
height: auto !important;
|
579
|
+
}
|
580
|
+
.dijitSpinner .dijitArrowButtonInner .dijitInputField {
|
581
|
+
-moz-transform: scale(0.5);
|
582
|
+
-moz-transform-origin: center top;
|
583
|
+
-webkit-transform: scale(0.5);
|
584
|
+
-webkit-transform-origin: center top;
|
585
|
+
-o-transform: scale(0.5);
|
586
|
+
-o-transform-origin: center top;
|
587
|
+
transform: scale(0.5);
|
588
|
+
transform-origin: left top;
|
589
|
+
padding-top: 0;
|
590
|
+
padding-bottom: 0;
|
591
|
+
padding-left: 0 !important;
|
592
|
+
padding-right: 0 !important;
|
593
|
+
width: 100%;
|
594
|
+
}
|
595
|
+
.dj_ie .dijitSpinner .dijitArrowButtonInner .dijitInputField {
|
596
|
+
zoom: 50%; /* emulate transform: scale(0.5) */
|
597
|
+
}
|
598
|
+
.dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButtonInner {
|
599
|
+
overflow: hidden;
|
600
|
+
}
|
601
|
+
|
602
|
+
.dijit_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {
|
603
|
+
width: 100%;
|
604
|
+
}
|
605
|
+
.dj_iequirks .dijit_a11y .dijitSpinner .dijitSpinnerButtonContainer .dijitArrowButton {
|
606
|
+
width: 1em; /* matches .dijit_a11y .dijitTextBox .dijitSpinnerButtonContainer rule - 100% is the whole screen width in quirks */
|
607
|
+
}
|
608
|
+
.dijitSpinner .dijitArrowButtonInner .dijitInputField {
|
445
609
|
visibility: hidden;
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
font-style:italic;
|
450
|
-
font-size: 0.75em;
|
451
|
-
padding-right: 0.15em;
|
452
|
-
line-height: 160%;
|
453
|
-
}
|
454
|
-
.dijit_a11y .dijitValidationIcon { display: none !important; }
|
455
|
-
.dijit_a11y .dijitValidationIconText { display: block !important; }
|
456
|
-
|
457
|
-
.dijitError .dijitValidationIcon,
|
458
|
-
.dijitError .dijitValidationIconText {
|
610
|
+
}
|
611
|
+
.dijit_a11y .dijitSpinner .dijitArrowButtonInner .dijitInputField {
|
612
|
+
vertical-align:top;
|
459
613
|
visibility: visible;
|
460
614
|
}
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
615
|
+
.dijit_a11y .dijitSpinnerButtonContainer {
|
616
|
+
width: 1em;
|
617
|
+
}
|
618
|
+
.dijit_a11y .dijitSpinnerButtonContainer .dijitButtonNode {
|
619
|
+
border-width: 1px 0px 0px 0px;
|
620
|
+
border-style: solid !important;
|
465
621
|
}
|
466
622
|
|
467
623
|
/****
|
@@ -500,8 +656,9 @@ table .dijitComboButton .dijitButtonNode {
|
|
500
656
|
|
501
657
|
.dijit_a11y .dijitCheckBox,
|
502
658
|
.dijit_a11y .dijitRadio {
|
503
|
-
|
504
|
-
|
659
|
+
/* in a11y mode we display the native checkbox (not the icon), so don't restrict the size */
|
660
|
+
width: auto !important;
|
661
|
+
height: auto !important;
|
505
662
|
}
|
506
663
|
.dijit_a11y .dijitCheckBoxInput {
|
507
664
|
opacity: 1;
|
@@ -515,7 +672,7 @@ table .dijitComboButton .dijitButtonNode {
|
|
515
672
|
dijit.ProgressBar
|
516
673
|
****/
|
517
674
|
|
518
|
-
.dijitProgressBarEmpty{
|
675
|
+
.dijitProgressBarEmpty {
|
519
676
|
/* outer container and background of the bar that's not finished yet*/
|
520
677
|
position:relative;overflow:hidden;
|
521
678
|
border:1px solid black; /* a11y: border necessary for high-contrast mode */
|
@@ -550,9 +707,9 @@ table .dijitComboButton .dijitButtonNode {
|
|
550
707
|
background-attachment: fixed;
|
551
708
|
}
|
552
709
|
|
553
|
-
.dijit_a11y .dijitProgressBarTile{
|
710
|
+
.dijit_a11y .dijitProgressBarTile {
|
554
711
|
/* a11y: The border provides visibility in high-contrast mode */
|
555
|
-
border-width:
|
712
|
+
border-width:2px;
|
556
713
|
border-style:solid;
|
557
714
|
background-color:transparent !important;
|
558
715
|
}
|
@@ -623,44 +780,18 @@ table .dijitComboButton .dijitButtonNode {
|
|
623
780
|
.dijitTooltipConnector {
|
624
781
|
position: absolute;
|
625
782
|
}
|
783
|
+
.dijit_a11y .dijitTooltipConnector {
|
784
|
+
display: none; /* won't show b/c it's background-image; hide to avoid border gap */
|
785
|
+
}
|
626
786
|
|
627
787
|
.dijitTooltipData {
|
628
788
|
display:none;
|
629
789
|
}
|
630
|
-
/* MOW: using actual images at this time ??? close???
|
631
|
-
/* draw an arrow with CSS only * /
|
632
|
-
.dijitTooltipConnector {
|
633
|
-
/* the border on the triangle * /
|
634
|
-
font-size: 0; line-height: 0%; width: 0;
|
635
|
-
border-top: none;
|
636
|
-
border-bottom: 14px solid black;
|
637
|
-
border-left: 7px solid transparent;
|
638
|
-
border-right: 7px solid transparent;
|
639
|
-
top: -14px;
|
640
|
-
left: 3px;
|
641
|
-
z-index: 2;
|
642
|
-
}
|
643
|
-
|
644
|
-
.dijitTooltipConnector div {
|
645
|
-
/* the background of the triangle * /
|
646
|
-
font-size: 0; line-height: 0%; width: 0;
|
647
|
-
position: absolute;
|
648
|
-
border-bottom: 10px solid #b8b5b5;
|
649
|
-
border-left: 5px solid transparent;
|
650
|
-
border-right: 5px solid transparent;
|
651
|
-
top: 6px;
|
652
|
-
left: -5px;
|
653
|
-
z-index: 3;
|
654
|
-
}
|
655
|
-
|
656
|
-
*/
|
657
|
-
|
658
|
-
|
659
790
|
|
660
791
|
/* Layout widgets. This is essential CSS to make layout work (it isn't "styling" CSS)
|
661
792
|
make sure that the position:absolute in dijitAlign* overrides other classes */
|
662
793
|
|
663
|
-
.dijitLayoutContainer{
|
794
|
+
.dijitLayoutContainer {
|
664
795
|
position: relative;
|
665
796
|
display: block;
|
666
797
|
overflow: hidden;
|
@@ -728,7 +859,7 @@ body .dijitAlignClient { position: absolute; }
|
|
728
859
|
z-index: 11 !important;
|
729
860
|
}
|
730
861
|
|
731
|
-
.dijitSplitterCover{
|
862
|
+
.dijitSplitterCover {
|
732
863
|
position:absolute;
|
733
864
|
z-index:-1;
|
734
865
|
top:0;
|
@@ -737,12 +868,12 @@ body .dijitAlignClient { position: absolute; }
|
|
737
868
|
height:100%;
|
738
869
|
}
|
739
870
|
|
740
|
-
.dijitSplitterCoverActive{
|
871
|
+
.dijitSplitterCoverActive {
|
741
872
|
z-index:3 !important;
|
742
873
|
}
|
743
874
|
|
744
875
|
/* #6945: stop mouse events */
|
745
|
-
.dj_ie .dijitSplitterCover{
|
876
|
+
.dj_ie .dijitSplitterCover {
|
746
877
|
background: white;
|
747
878
|
filter: alpha(opacity=0);
|
748
879
|
}
|
@@ -759,13 +890,17 @@ body .dijitAlignClient { position: absolute; }
|
|
759
890
|
border-right:1px;
|
760
891
|
cursor: ew-resize;
|
761
892
|
}
|
762
|
-
.dijitSplitContainer{
|
893
|
+
.dijitSplitContainer {
|
763
894
|
position: relative;
|
764
895
|
overflow: hidden;
|
765
896
|
display: block;
|
766
897
|
}
|
898
|
+
.dj_ff3 .dijit_a11y div.dijitSplitter:focus {
|
899
|
+
outline-style:dotted;
|
900
|
+
outline-width: 2px;
|
901
|
+
}
|
767
902
|
|
768
|
-
.dijitSplitPane{
|
903
|
+
.dijitSplitPane {
|
769
904
|
position: absolute;
|
770
905
|
}
|
771
906
|
|
@@ -835,86 +970,139 @@ body .dijitAlignClient { position: absolute; }
|
|
835
970
|
}
|
836
971
|
|
837
972
|
/* TitlePane */
|
973
|
+
|
838
974
|
.dijitTitlePane {
|
839
975
|
display: block;
|
840
976
|
overflow: hidden;
|
841
977
|
}
|
978
|
+
.dijitTitlePaneTitle {
|
979
|
+
cursor: pointer;
|
980
|
+
}
|
981
|
+
.dijitFixedOpen {
|
982
|
+
/* TitlePane that cannot be closed */
|
983
|
+
cursor: default;
|
984
|
+
}
|
985
|
+
.dijitTitlePaneTitle * {
|
986
|
+
vertical-align: middle;
|
987
|
+
}
|
988
|
+
.dijitTitlePane .dijitArrowNodeInner {
|
989
|
+
/* normally, hide arrow text in favor of icon */
|
990
|
+
display: none;
|
991
|
+
}
|
992
|
+
.dijit_a11y .dijitTitlePane .dijitArrowNodeInner {
|
993
|
+
/* ... except in a11y mode, then show text arrow */
|
994
|
+
display:inline !important;
|
995
|
+
font-family: monospace; /* because - and + are different widths */
|
996
|
+
}
|
997
|
+
.dijit_a11y .dijitTitlePane .dijitArrowNode {
|
998
|
+
/* ... and hide icon */
|
999
|
+
display:none;
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
.dj_ie6 .dijitTitlePaneContentOuter,
|
1003
|
+
.dj_ie6 .dijitTitlePane .dijitTitlePaneTitle {
|
1004
|
+
/* force hasLayout to ensure borders etc, show up */
|
1005
|
+
zoom: 1;
|
1006
|
+
}
|
842
1007
|
|
843
|
-
/* Color Palette
|
1008
|
+
/* Color Palette
|
1009
|
+
* Sizes designed so that table cell positions match icons in underlying image,
|
1010
|
+
* which appear at 20x20 intervals.
|
1011
|
+
*/
|
844
1012
|
|
845
1013
|
.dijitColorPalette {
|
846
|
-
border:1px solid #999;
|
847
|
-
background
|
848
|
-
|
1014
|
+
border: 1px solid #999;
|
1015
|
+
background: #fff;
|
1016
|
+
position: relative;
|
849
1017
|
}
|
850
1018
|
|
851
1019
|
img.dijitColorPaletteUnder {
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
1020
|
+
/* This single image contains the "icons" for every color in the color palette, and sits behind the transparent <table> */
|
1021
|
+
border-style: none;
|
1022
|
+
position: absolute;
|
1023
|
+
left: 0;
|
1024
|
+
top: 0;
|
856
1025
|
}
|
857
|
-
.
|
1026
|
+
.dijitColorPalette .dijitPaletteTable {
|
1027
|
+
/* Table that holds the palette cells, and overlays image file with color swatches.
|
1028
|
+
* padding/margin to align table with image.
|
1029
|
+
*/
|
1030
|
+
padding: 2px 3px 3px 3px;
|
858
1031
|
position: relative;
|
859
|
-
overflow:hidden;
|
860
|
-
outline:0;
|
1032
|
+
overflow: hidden;
|
1033
|
+
outline: 0;
|
1034
|
+
border-collapse: separate;
|
861
1035
|
}
|
862
|
-
.
|
863
|
-
|
1036
|
+
.dj_ie6 .dijitColorPalette .dijitPaletteTable,
|
1037
|
+
.dj_ie7 .dijitColorPalette .dijitPaletteTable,
|
1038
|
+
.dj_iequirks .dijitColorPalette .dijitPaletteTable {
|
1039
|
+
/* using padding above so that focus border isn't cutoff on moz/webkit,
|
1040
|
+
* but using margin on IE because padding doesn't seem to work
|
1041
|
+
*/
|
1042
|
+
padding: 0;
|
1043
|
+
margin: 2px 3px 3px 3px;
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
.dijitColorPalette .dijitPaletteCell {
|
1047
|
+
/* <td> in the <table>, matching size of color swatches embedded in the img.dijitColorPaletteUnder */
|
864
1048
|
height: 20px;
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
1049
|
+
width: 20px;
|
1050
|
+
font-size: 1px;
|
1051
|
+
vertical-align: middle;
|
1052
|
+
text-align: center;
|
869
1053
|
}
|
870
|
-
.dijitPaletteImg {
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
1054
|
+
.dijitColorPalette .dijitPaletteImg {
|
1055
|
+
/* transparent (but clickable) <img> node inside of each <td>, overlaying the color swatch.
|
1056
|
+
* displays border around a color swatch
|
1057
|
+
*/
|
1058
|
+
width: 16px;
|
1059
|
+
height: 14px;
|
1060
|
+
border: 1px solid #999;
|
877
1061
|
cursor: default;
|
878
|
-
|
879
|
-
|
1062
|
+
vertical-align: middle;
|
1063
|
+
}
|
1064
|
+
.dj_iequirks .dijitColorPalette .dijitPaletteImg {
|
1065
|
+
margin: 1px; /* needed to fix spacing for ColorPalette in TooltipDialog on IE/quirks */
|
1066
|
+
}
|
1067
|
+
.dijitPaletteTable td {
|
1068
|
+
padding: 0px;
|
1069
|
+
}
|
1070
|
+
.dijitColorPalette .dijitPaletteCellHover .dijitPaletteImg {
|
1071
|
+
/* hovered color swatch */
|
1072
|
+
border: 1px solid #000;
|
880
1073
|
}
|
881
1074
|
|
882
|
-
.
|
883
|
-
|
884
|
-
|
885
|
-
position: absolute;
|
886
|
-
top: 1px;
|
887
|
-
left: 1px;
|
888
|
-
overflow: hidden;
|
889
|
-
cursor: default;
|
890
|
-
border:2px solid #000;
|
891
|
-
outline:1px solid #dedede;
|
892
|
-
/* -moz-border-radius:0; */
|
1075
|
+
.dijitColorPalette .dijitPaletteCellActive .dijitPaletteImg,
|
1076
|
+
.dijitColorPalette .dijitPaletteCellSelected .dijitPaletteImg {
|
1077
|
+
border: 2px solid #000;
|
893
1078
|
}
|
894
1079
|
|
895
|
-
|
896
|
-
|
1080
|
+
|
1081
|
+
.dijit_a11y .dijitColorPalette .dijitPaletteTable,
|
1082
|
+
.dijit_a11y .dijitColorPalette .dijitPaletteTable * {
|
1083
|
+
/* table cells are to catch events, but the swatches are in the PaletteImg behind the table */
|
1084
|
+
background-color: transparent !important;
|
897
1085
|
}
|
898
|
-
.dijit_a11y .dijitPaletteImg {
|
899
|
-
|
1086
|
+
.dj_gecko .dijit_a11y .dijitColorPalette .dijitPaletteCellFocused .dijitPaletteImg {
|
1087
|
+
border: 3px dotted #000; /* focus border on table cells broken in FF high contrast :-( */
|
1088
|
+
margin: -1px;
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
.dijit_a11y .dijitColorPalette .dijitPaletteCellHover .dijitPaletteImg {
|
1092
|
+
border: 2px solid #000 !important;
|
900
1093
|
}
|
901
1094
|
|
1095
|
+
/* AccordionContainer */
|
1096
|
+
|
902
1097
|
.dijitAccordionContainer {
|
903
1098
|
border:1px solid #b7b7b7;
|
904
1099
|
border-top:0 !important;
|
905
1100
|
}
|
906
|
-
/* prevent partial, ugly focus border on FF and Safari */
|
907
|
-
.dj_webkit .dijitAccordionContainer div:focus {
|
908
|
-
outline:none;
|
909
|
-
}
|
910
|
-
.dj_ff3 .dijitAccordionContainer div:focus {
|
911
|
-
outline:none;
|
912
|
-
}
|
913
1101
|
.dijitAccordionTitle {
|
914
1102
|
cursor: pointer;
|
915
1103
|
}
|
916
|
-
.
|
917
|
-
|
1104
|
+
.dijitAccordionTitleSelected {
|
1105
|
+
cursor: default;
|
918
1106
|
}
|
919
1107
|
|
920
1108
|
/* images off, high-contrast mode styles */
|
@@ -926,17 +1114,28 @@ img.dijitColorPaletteUnder {
|
|
926
1114
|
}
|
927
1115
|
|
928
1116
|
.dijit_a11y .dijitAccordionTitle .arrowTextUp,
|
929
|
-
.dijit_a11y .
|
1117
|
+
.dijit_a11y .dijitAccordionTitleSelected .arrowTextDown {
|
930
1118
|
display: inline;
|
931
1119
|
}
|
932
1120
|
|
933
|
-
.dijit_a11y .
|
1121
|
+
.dijit_a11y .dijitAccordionTitleSelected .arrowTextUp {
|
934
1122
|
display: none;
|
935
1123
|
}
|
936
1124
|
|
1125
|
+
.dj_ie6 .dijitAccordionTitle,
|
1126
|
+
.dj_iequirks .dijitAccordionTitle {
|
1127
|
+
/* avoid IE6/IE quirks size calc bug where accordion ends up too short (themeTesterQuirk.html)
|
1128
|
+
* and IE6 bug where the first title bar turns white upon hovering any title bar
|
1129
|
+
*/
|
1130
|
+
zoom: 1;
|
1131
|
+
}
|
1132
|
+
|
937
1133
|
/* Calendar */
|
938
1134
|
|
939
|
-
.dijitCalendarContainer
|
1135
|
+
.dijitCalendarContainer {
|
1136
|
+
width: auto; /* in case user has specified a width for the TABLE nodes, see #10553 */
|
1137
|
+
}
|
1138
|
+
.dijitCalendarContainer th, .dijitCalendarContainer td {
|
940
1139
|
padding: 0;
|
941
1140
|
}
|
942
1141
|
|
@@ -952,21 +1151,18 @@ img.dijitColorPaletteUnder {
|
|
952
1151
|
vertical-align: middle;
|
953
1152
|
}
|
954
1153
|
|
955
|
-
.dijitCalendarDisabledDate {
|
956
|
-
color:gray !important;
|
957
|
-
}
|
958
|
-
|
959
|
-
.dijitCalendarPreviousMonthDisabled,
|
960
|
-
.dijitCalendarCurrentMonthDisabled,
|
961
|
-
.dijitCalendarNextMonthDisabled {
|
962
|
-
cursor:default !important
|
963
|
-
}
|
964
|
-
|
965
1154
|
.dijitCalendarIncrementControl,
|
966
|
-
.dijitCalendarBodyContainer tbody tr td,
|
967
1155
|
.dijitCalendarDateTemplate,
|
968
|
-
.
|
969
|
-
|
1156
|
+
.dijitCalendarMonthLabel,
|
1157
|
+
.dijitCalendarPreviousYear,
|
1158
|
+
.dijitCalendarNextYear {
|
1159
|
+
cursor: pointer;
|
1160
|
+
}
|
1161
|
+
|
1162
|
+
.dijitCalendarDisabledDate {
|
1163
|
+
color: gray;
|
1164
|
+
text-decoration: line-through;
|
1165
|
+
cursor: default;
|
970
1166
|
}
|
971
1167
|
|
972
1168
|
.dijitSpacer {
|
@@ -985,7 +1181,6 @@ img.dijitColorPaletteUnder {
|
|
985
1181
|
background-color:white;
|
986
1182
|
}
|
987
1183
|
.dijitMenuTable {
|
988
|
-
margin:1px 0;
|
989
1184
|
border-collapse:collapse;
|
990
1185
|
border-width:0;
|
991
1186
|
background-color:white;
|
@@ -996,7 +1191,7 @@ img.dijitColorPaletteUnder {
|
|
996
1191
|
border-right:hidden;
|
997
1192
|
}
|
998
1193
|
|
999
|
-
.dijitMenuItem{
|
1194
|
+
.dijitMenuItem {
|
1000
1195
|
text-align: left;
|
1001
1196
|
white-space: nowrap;
|
1002
1197
|
padding:.1em .2em;
|
@@ -1022,9 +1217,10 @@ img.dijitColorPaletteUnder {
|
|
1022
1217
|
|
1023
1218
|
.dijitMenuItemDisabled * {
|
1024
1219
|
/* for a disabled menu item, just set it to mostly transparent */
|
1025
|
-
opacity:0.
|
1220
|
+
opacity:0.5;
|
1026
1221
|
cursor:default;
|
1027
1222
|
}
|
1223
|
+
.dj_ie .dijit_a11y .dijitMenuItemDisabled,
|
1028
1224
|
.dj_ie .dijit_a11y .dijitMenuItemDisabled td,
|
1029
1225
|
.dj_ie .dijitMenuItemDisabled *,
|
1030
1226
|
.dj_ie .dijitMenuItemDisabled td {
|
@@ -1038,11 +1234,11 @@ img.dijitColorPaletteUnder {
|
|
1038
1234
|
}
|
1039
1235
|
|
1040
1236
|
.dijit_a11y .dijitMenuItemSelected {
|
1041
|
-
border: 1px
|
1237
|
+
border: 1px dotted black !important;
|
1042
1238
|
}
|
1043
1239
|
.dj_ff3 .dijit_a11y .dijitMenuItem td {
|
1044
1240
|
padding: none !important;
|
1045
|
-
background:none !
|
1241
|
+
background:none !important;
|
1046
1242
|
}
|
1047
1243
|
.dijit_a11y .dijitMenuItemSelected .dijitMenuItemLabel {
|
1048
1244
|
border-width: 1px;
|
@@ -1093,7 +1289,10 @@ img.dijitColorPaletteUnder {
|
|
1093
1289
|
.dijit_a11y .dijitCheckedMenuItemIcon {
|
1094
1290
|
display: none;
|
1095
1291
|
}
|
1096
|
-
|
1292
|
+
.dj_ie .dijit_a11y .dijitMenuBar .dijitMenuItem {
|
1293
|
+
/* so bottom border of MenuBar appears on IE7 in high-contrast mode */
|
1294
|
+
margin: 0px;
|
1295
|
+
}
|
1097
1296
|
|
1098
1297
|
/* StackContainer */
|
1099
1298
|
|
@@ -1122,16 +1321,16 @@ img.dijitColorPaletteUnder {
|
|
1122
1321
|
overflow: hidden;
|
1123
1322
|
border: 1px solid black;
|
1124
1323
|
}
|
1125
|
-
.
|
1324
|
+
.nowrapTabStrip {
|
1126
1325
|
width: 50000px;
|
1127
1326
|
display: block;
|
1128
1327
|
position: relative;
|
1129
1328
|
}
|
1130
|
-
.
|
1329
|
+
.dijitTabListWrapper {
|
1131
1330
|
overflow: hidden;
|
1132
1331
|
}
|
1133
1332
|
|
1134
|
-
.dijit_a11y .
|
1333
|
+
.dijit_a11y .tabStripButton img {
|
1135
1334
|
/* hide the icons (or rather the empty space where they normally appear) because text will appear instead */
|
1136
1335
|
display: none;
|
1137
1336
|
}
|
@@ -1166,19 +1365,10 @@ img.dijitColorPaletteUnder {
|
|
1166
1365
|
border-right: 0px;
|
1167
1366
|
}
|
1168
1367
|
|
1169
|
-
|
1368
|
+
DIV.dijitTabDisabled, .dj_ie DIV.dijitTabDisabled {
|
1170
1369
|
cursor: auto;
|
1171
1370
|
}
|
1172
|
-
/*
|
1173
|
-
div.dijitTabBtnDisabled img {
|
1174
|
-
opacity: 0.3;
|
1175
|
-
}
|
1176
|
-
|
1177
1371
|
|
1178
|
-
.dj_ie div.dijitTabBtnDisabled img {
|
1179
|
-
filter: gray() alpha(opacity=30);
|
1180
|
-
}
|
1181
|
-
*/
|
1182
1372
|
.dijitTab {
|
1183
1373
|
position:relative;
|
1184
1374
|
cursor:pointer;
|
@@ -1193,10 +1383,6 @@ div.dijitTabBtnDisabled img {
|
|
1193
1383
|
cursor: default; /* because clicking will have no effect */
|
1194
1384
|
}
|
1195
1385
|
|
1196
|
-
.dijitTabButtonIcon {
|
1197
|
-
height: 18px;
|
1198
|
-
}
|
1199
|
-
|
1200
1386
|
.dijitTabContainerTop-tabs .dijitTab {
|
1201
1387
|
top: 1px; /* to overlap border on .dijitTabContainerTop-tabs */
|
1202
1388
|
}
|
@@ -1233,28 +1419,32 @@ div.dijitTabBtnDisabled img {
|
|
1233
1419
|
}
|
1234
1420
|
|
1235
1421
|
|
1236
|
-
.
|
1422
|
+
.dijitTabCloseButton {
|
1237
1423
|
margin-left: 1em;
|
1238
1424
|
}
|
1239
1425
|
|
1240
|
-
|
1241
|
-
.dijitTab .closeText {
|
1426
|
+
.dijitTabCloseText {
|
1242
1427
|
display:none;
|
1243
1428
|
}
|
1244
1429
|
|
1245
|
-
|
1246
|
-
display:inline;
|
1247
|
-
margin: 0px 6px;
|
1248
|
-
}
|
1430
|
+
/* images off, high-contrast mode styles */
|
1249
1431
|
|
1250
|
-
.dijit_a11y .
|
1251
|
-
|
1432
|
+
.dijit_a11y .dijitTabCloseButton {
|
1433
|
+
background-image: none !important;
|
1434
|
+
width: auto !important;
|
1435
|
+
height: auto !important;
|
1436
|
+
border: thin dotted; /* non-hover state */
|
1437
|
+
}
|
1438
|
+
.dijit_a11y .dijitTabCloseButtonHover {
|
1439
|
+
border:thin solid; /* hover state */
|
1252
1440
|
}
|
1253
1441
|
|
1254
|
-
.dijit_a11y .
|
1255
|
-
|
1442
|
+
.dijit_a11y .dijitTabCloseText {
|
1443
|
+
display: inline;
|
1256
1444
|
}
|
1445
|
+
|
1257
1446
|
.dijit_a11y .dijitTabChecked {
|
1447
|
+
/* the selected tab */
|
1258
1448
|
border-style:dashed !important;
|
1259
1449
|
}
|
1260
1450
|
|
@@ -1271,28 +1461,28 @@ div.dijitTabBtnDisabled img {
|
|
1271
1461
|
border: none !important;
|
1272
1462
|
}
|
1273
1463
|
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1277
|
-
|
1278
|
-
}
|
1279
|
-
.dj_ie .dijitInlineEditor {
|
1280
|
-
vertical-align:middle;
|
1464
|
+
/* InlineEditBox */
|
1465
|
+
.dijitInlineEditBoxDisplayMode {
|
1466
|
+
border: 1px solid transparent; /* so keyline (border) on hover can appear without screen jump */
|
1467
|
+
cursor: text;
|
1281
1468
|
}
|
1282
1469
|
|
1283
|
-
.
|
1284
|
-
|
1470
|
+
.dijit_a11y .dijitInlineEditBoxDisplayMode,
|
1471
|
+
.dj_ie6 .dijitInlineEditBoxDisplayMode {
|
1472
|
+
/* except that IE6 doesn't support transparent borders, nor does high contrast mode */
|
1473
|
+
border: none;
|
1285
1474
|
}
|
1286
1475
|
|
1287
|
-
.
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1476
|
+
.dijitInlineEditBoxDisplayModeHover,
|
1477
|
+
.dijit_a11y .dijitInlineEditBoxDisplayModeHover,
|
1478
|
+
.dj_ie6 .dijitInlineEditBoxDisplayModeHover {
|
1479
|
+
/* An InlineEditBox in view mode (click this to edit the text) */
|
1480
|
+
background-color: #e2ebf2;
|
1481
|
+
border: solid 1px black;
|
1292
1482
|
}
|
1293
1483
|
|
1294
|
-
.
|
1295
|
-
|
1484
|
+
.dijitInlineEditBoxDisplayModeDisabled {
|
1485
|
+
cursor: default;
|
1296
1486
|
}
|
1297
1487
|
|
1298
1488
|
/* Tree */
|
@@ -1338,14 +1528,18 @@ div.dijitTabBtnDisabled img {
|
|
1338
1528
|
.dijitDialog {
|
1339
1529
|
position: absolute;
|
1340
1530
|
z-index: 999;
|
1341
|
-
padding: 1px;
|
1342
1531
|
overflow: hidden; /* override overflow: auto; from ContentPane to make dragging smoother */
|
1343
1532
|
}
|
1344
1533
|
|
1345
|
-
.
|
1534
|
+
.dijitDialogTitleBar {
|
1535
|
+
cursor: move;
|
1536
|
+
}
|
1537
|
+
.dijitDialogFixed .dijitDialogTitleBar {
|
1346
1538
|
cursor:default;
|
1347
1539
|
}
|
1348
|
-
|
1540
|
+
.dijitDialogCloseIcon {
|
1541
|
+
cursor: pointer;
|
1542
|
+
}
|
1349
1543
|
.dijitDialogUnderlayWrapper {
|
1350
1544
|
position: absolute;
|
1351
1545
|
left: 0;
|
@@ -1365,7 +1559,7 @@ div.dijitTabBtnDisabled img {
|
|
1365
1559
|
}
|
1366
1560
|
|
1367
1561
|
/* images off, high-contrast mode styles */
|
1368
|
-
.dijit_a11y .
|
1562
|
+
.dijit_a11y .dijitSpinnerButtonContainer,
|
1369
1563
|
.dijit_a11y .dijitDialog {
|
1370
1564
|
opacity: 1 !important;
|
1371
1565
|
background-color: white !important;
|
@@ -1381,6 +1575,8 @@ div.dijitTabBtnDisabled img {
|
|
1381
1575
|
display:inline;
|
1382
1576
|
}
|
1383
1577
|
|
1578
|
+
/* Slider */
|
1579
|
+
|
1384
1580
|
.dijitSliderMoveable {
|
1385
1581
|
z-index:99;
|
1386
1582
|
position:absolute !important;
|
@@ -1391,15 +1587,28 @@ div.dijitTabBtnDisabled img {
|
|
1391
1587
|
.dijitSliderMoveableH {
|
1392
1588
|
right:0;
|
1393
1589
|
}
|
1590
|
+
.dijitSliderMoveableV {
|
1591
|
+
right:50%;
|
1592
|
+
}
|
1394
1593
|
|
1395
|
-
.dijit_a11y
|
1594
|
+
.dijit_a11y DIV.dijitSliderImageHandle,
|
1396
1595
|
.dijitSliderImageHandle {
|
1397
1596
|
margin:0;
|
1398
1597
|
padding:0;
|
1399
|
-
position:
|
1598
|
+
position:relative !important;
|
1400
1599
|
border:8px solid gray;
|
1401
1600
|
width:0;
|
1402
1601
|
height:0;
|
1602
|
+
cursor: pointer;
|
1603
|
+
}
|
1604
|
+
.dj_iequirks .dijit_a11y .dijitSliderImageHandle {
|
1605
|
+
font-size: 0;
|
1606
|
+
}
|
1607
|
+
.dj_ie7 .dijitSliderImageHandle {
|
1608
|
+
overflow: hidden; /* IE7 workaround to make slider handle VISIBLE in non-a11y mode */
|
1609
|
+
}
|
1610
|
+
.dj_ie7 .dijit_a11y .dijitSliderImageHandle {
|
1611
|
+
overflow: visible; /* IE7 workaround to make slider handle VISIBLE in a11y mode */
|
1403
1612
|
}
|
1404
1613
|
.dijit_a11y .dijitSliderFocused .dijitSliderImageHandle {
|
1405
1614
|
border:4px solid #000;
|
@@ -1409,11 +1618,11 @@ div.dijitTabBtnDisabled img {
|
|
1409
1618
|
|
1410
1619
|
.dijitSliderImageHandleV {
|
1411
1620
|
top:-8px;
|
1412
|
-
|
1621
|
+
right: -50%;
|
1413
1622
|
}
|
1414
1623
|
|
1415
1624
|
.dijitSliderImageHandleH {
|
1416
|
-
left
|
1625
|
+
left:50%;
|
1417
1626
|
top:-5px;
|
1418
1627
|
vertical-align:top;
|
1419
1628
|
}
|
@@ -1421,6 +1630,7 @@ div.dijitTabBtnDisabled img {
|
|
1421
1630
|
.dijitSliderBar {
|
1422
1631
|
border-style:solid;
|
1423
1632
|
border-color:black;
|
1633
|
+
cursor: pointer;
|
1424
1634
|
}
|
1425
1635
|
|
1426
1636
|
.dijitSliderBarContainerV {
|
@@ -1506,11 +1716,22 @@ div.dijitTabBtnDisabled img {
|
|
1506
1716
|
background-color:transparent;
|
1507
1717
|
}
|
1508
1718
|
|
1509
|
-
.
|
1719
|
+
.dijitSliderDecoration {
|
1510
1720
|
text-align:center;
|
1511
1721
|
}
|
1722
|
+
.dijitSliderV TD {
|
1723
|
+
position: relative; /* needed for IE+quirks+RTL+vertical (rendering bug) but add everywhere for custom styling consistency but this messes up IE horizontal sliders */
|
1724
|
+
}
|
1512
1725
|
|
1513
|
-
.
|
1726
|
+
.dijitSliderDecorationH {
|
1727
|
+
width: 100%;
|
1728
|
+
}
|
1729
|
+
|
1730
|
+
.dijitSliderDecorationV {
|
1731
|
+
height: 100%;
|
1732
|
+
}
|
1733
|
+
|
1734
|
+
.dijitSliderButton {
|
1514
1735
|
font-family:monospace;
|
1515
1736
|
margin:0;
|
1516
1737
|
padding:0;
|
@@ -1523,7 +1744,10 @@ div.dijitTabBtnDisabled img {
|
|
1523
1744
|
|
1524
1745
|
.dijitSliderButtonContainer {
|
1525
1746
|
text-align:center;
|
1526
|
-
height:0;
|
1747
|
+
height:0; /* ??? */
|
1748
|
+
}
|
1749
|
+
.dijitSliderButtonContainer * {
|
1750
|
+
cursor: pointer;
|
1527
1751
|
}
|
1528
1752
|
|
1529
1753
|
.dijitSlider .dijitButtonNode {
|
@@ -1583,6 +1807,13 @@ div.dijitTabBtnDisabled img {
|
|
1583
1807
|
left:-50%;
|
1584
1808
|
}
|
1585
1809
|
|
1810
|
+
.dijitRuleLabelV {
|
1811
|
+
/* so that long labels don't overflow to multiple rows, or overwrite slider itself */
|
1812
|
+
text-overflow: ellipsis;
|
1813
|
+
white-space: nowrap;
|
1814
|
+
overflow: hidden;
|
1815
|
+
}
|
1816
|
+
|
1586
1817
|
.dijitRuleMarkV {
|
1587
1818
|
height:0;
|
1588
1819
|
border-right-width:0 !important;
|
@@ -1596,15 +1827,32 @@ div.dijitTabBtnDisabled img {
|
|
1596
1827
|
margin-top:-.55em;
|
1597
1828
|
}
|
1598
1829
|
|
1830
|
+
.dijit_a11y .dijitSliderReadOnly,
|
1831
|
+
.dijit_a11y .dijitSliderDisabled {
|
1832
|
+
opacity:0.6;
|
1833
|
+
}
|
1834
|
+
.dj_ie .dijit_a11y .dijitSliderReadOnly .dijitSliderBar,
|
1835
|
+
.dj_ie .dijit_a11y .dijitSliderDisabled .dijitSliderBar {
|
1836
|
+
filter: alpha(opacity=40);
|
1837
|
+
}
|
1838
|
+
|
1839
|
+
/* + and - Slider buttons: override theme settings to display icons */
|
1840
|
+
.dijit_a11y .dijitSlider .dijitSliderButtonContainer DIV {
|
1841
|
+
font-family: monospace; /* otherwise hyphen is larger and more vertically centered */
|
1842
|
+
font-size: 1em;
|
1843
|
+
line-height: 1em;
|
1844
|
+
height: auto;
|
1845
|
+
width: auto;
|
1846
|
+
margin: 0px 4px;
|
1847
|
+
}
|
1848
|
+
|
1599
1849
|
/* Icon-only buttons (often in toolbars) still display the text in high-contrast mode */
|
1600
1850
|
.dijit_a11y .dijitButtonContents .dijitButtonText,
|
1601
1851
|
.dijit_a11y .dijitTab .tabLabel {
|
1602
1852
|
display: inline !important;
|
1603
1853
|
}
|
1604
|
-
.dj_ie7 .dijitButtonNode > BUTTON.dijitButtonContents > * {
|
1605
|
-
position: relative; /* workaround for IE7 distorted text on scroll */
|
1606
|
-
}
|
1607
1854
|
|
1855
|
+
/* TextArea, SimpleTextArea */
|
1608
1856
|
.dijitTextArea {
|
1609
1857
|
width:100%;
|
1610
1858
|
overflow-y: auto; /* w/out this IE's SimpleTextArea goes to overflow: scroll */
|
@@ -1615,17 +1863,10 @@ div.dijitTabBtnDisabled img {
|
|
1615
1863
|
.dj_ie .dijitTextAreaCols {
|
1616
1864
|
width:auto;
|
1617
1865
|
}
|
1618
|
-
.dijitTextArea > DIV {
|
1619
|
-
text-decoration:none;
|
1620
|
-
overflow:auto;
|
1621
|
-
min-height: 1.40em;
|
1622
|
-
}
|
1623
1866
|
|
1624
|
-
|
1625
|
-
|
1626
|
-
|
1627
|
-
line-height: normal !important;
|
1628
|
-
}
|
1867
|
+
/* Toolbar
|
1868
|
+
* Note that other toolbar rules (for objects in toolbars) are scattered throughout this file.
|
1869
|
+
*/
|
1629
1870
|
|
1630
1871
|
.dijitToolbarSeparator {
|
1631
1872
|
height: 18px;
|
@@ -1641,10 +1882,15 @@ div.dijitTabBtnDisabled img {
|
|
1641
1882
|
top: expression(eval((document.documentElement||document.body).scrollTop));
|
1642
1883
|
}
|
1643
1884
|
|
1644
|
-
.
|
1885
|
+
.dijitEditor {
|
1645
1886
|
display: block; /* prevents glitch on FF with InlineEditBox, see #8404 */
|
1646
1887
|
}
|
1647
1888
|
|
1889
|
+
.dijitEditorDisabled,
|
1890
|
+
.dijitEditorReadOnly {
|
1891
|
+
color: gray;
|
1892
|
+
}
|
1893
|
+
|
1648
1894
|
/* TimePicker */
|
1649
1895
|
|
1650
1896
|
.dijitTimePickerItemInner {
|
@@ -1682,72 +1928,46 @@ div.dijitTabBtnDisabled img {
|
|
1682
1928
|
color:white;
|
1683
1929
|
cursor:pointer;
|
1684
1930
|
}
|
1685
|
-
|
1686
|
-
|
1687
|
-
|
1931
|
+
.dijit_a11y .dijitTimePickerItemSelected .dijitTimePickerItemInner {
|
1932
|
+
border: solid 4px black;
|
1933
|
+
}
|
1934
|
+
.dijit_a11y .dijitTimePickerItemHover .dijitTimePickerItemInner {
|
1935
|
+
border: dashed 4px black;
|
1688
1936
|
}
|
1689
1937
|
|
1690
1938
|
|
1691
|
-
/* Disable the high contrast character */
|
1692
1939
|
.dijitToggleButtonIconChar {
|
1940
|
+
/* character (instead of icon) to show that ToggleButton is checked */
|
1693
1941
|
display:none !important;
|
1694
1942
|
}
|
1695
|
-
.dijit_a11y .dijitToggleButtonIconChar {
|
1943
|
+
.dijit_a11y .dijitToggleButton .dijitToggleButtonIconChar {
|
1696
1944
|
display:inline !important;
|
1697
|
-
}
|
1698
|
-
|
1699
|
-
.dijit_a11y .dijitToggleButtonIconChar {
|
1700
1945
|
visibility:hidden;
|
1701
1946
|
}
|
1947
|
+
.dj_ie6 .dijitToggleButtonIconChar, .dj_ie6 .tabStripButton .dijitButtonText {
|
1948
|
+
font-family: "Arial Unicode MS"; /* otherwise the a11y character (checkmark, arrow, etc.) appears as a box */
|
1949
|
+
}
|
1702
1950
|
.dijit_a11y .dijitToggleButtonChecked .dijitToggleButtonIconChar {
|
1951
|
+
display: inline !important; /* In high contrast mode, display the check symbol */
|
1703
1952
|
visibility:visible !important;
|
1704
1953
|
}
|
1705
1954
|
|
1706
1955
|
.dijitArrowButtonChar {
|
1707
|
-
|
1956
|
+
display:none !important;
|
1708
1957
|
}
|
1709
1958
|
.dijit_a11y .dijitArrowButtonChar {
|
1710
|
-
|
1711
|
-
}
|
1712
|
-
.dijitInputLayoutContainer {
|
1713
|
-
position: relative;
|
1714
|
-
overflow: hidden;
|
1715
|
-
}
|
1716
|
-
.dijitSpinnerButtonContainer {
|
1717
|
-
float: right;
|
1718
|
-
width: 18px;
|
1719
|
-
position: relative;
|
1720
|
-
overflow: hidden;
|
1721
|
-
}
|
1722
|
-
.dijitSpinner .dijitInputLayoutContainer .dijitArrowButton {
|
1723
|
-
height: 50%;
|
1724
|
-
width: 16px;
|
1725
|
-
overflow: hidden;
|
1726
|
-
}
|
1727
|
-
.dijitSpinner .dijitInputLayoutContainer .dijitArrowButtonInner {
|
1728
|
-
overflow: hidden;
|
1729
|
-
line-height: 50%;
|
1730
|
-
}
|
1731
|
-
.dijit_a11y .dijitSpinner .dijitInputLayoutContainer .dijitArrowButton {
|
1732
|
-
width: 100%;
|
1733
|
-
}
|
1734
|
-
.dijit_a11y .dijitSpinner .dijitArrowButton .dijitArrowButtonChar {
|
1735
|
-
font-size: 0.4em;
|
1736
|
-
vertical-align: top;
|
1737
|
-
}
|
1738
|
-
.dijit_a11y .dijitSpinnerButtonContainer {
|
1739
|
-
width: 0.5em;
|
1740
|
-
margin-left: 2px;
|
1741
|
-
overflow: visible;
|
1959
|
+
display:inline !important;
|
1742
1960
|
}
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1961
|
+
|
1962
|
+
.dijit_a11y .dijitDropDownButton .dijitArrowButtonInner,
|
1963
|
+
.dijit_a11y .dijitComboButton .dijitArrowButtonInner {
|
1964
|
+
display:none !important;
|
1746
1965
|
}
|
1747
1966
|
|
1748
1967
|
/* Select */
|
1749
1968
|
.dijitSelect {
|
1750
1969
|
margin: 0.2em;
|
1970
|
+
border-collapse: collapse;
|
1751
1971
|
}
|
1752
1972
|
.dj_ie .dijitSelect,
|
1753
1973
|
.dj_ie7 .dijitSelect,
|
@@ -1757,12 +1977,6 @@ div.dijitTabBtnDisabled img {
|
|
1757
1977
|
.dj_ie8 .dijitSelect .dijitButtonText {
|
1758
1978
|
vertical-align: top;
|
1759
1979
|
}
|
1760
|
-
.dijitSelect .dijitButtonNode {
|
1761
|
-
text-align: left;
|
1762
|
-
}
|
1763
|
-
.dijitRtl .dijitSelect .dijitButtonNode {
|
1764
|
-
text-align: right;
|
1765
|
-
}
|
1766
1980
|
.dijitToolbar .dijitSelect {
|
1767
1981
|
margin: 0;
|
1768
1982
|
}
|
@@ -1778,14 +1992,17 @@ div.dijitTabBtnDisabled img {
|
|
1778
1992
|
.dijitSelect .dijitButtonContents {
|
1779
1993
|
padding: 0px;
|
1780
1994
|
background: transparent none;
|
1995
|
+
white-space: nowrap;
|
1996
|
+
text-align: left;
|
1781
1997
|
}
|
1782
1998
|
.dijitSelectFixedWidth .dijitButtonContents {
|
1783
1999
|
width: 100%;
|
1784
2000
|
}
|
1785
|
-
.dijitSelect .dijitArrowButton {
|
1786
|
-
width: 16px;
|
1787
|
-
}
|
1788
2001
|
|
2002
|
+
.dijitSelectMenu .dijitMenuItemIcon {
|
2003
|
+
/* avoid blank area in left side of menu (since we have no icons) */
|
2004
|
+
display:none;
|
2005
|
+
}
|
1789
2006
|
.dj_ie6 .dijitSelectMenu .dijitMenuItemLabel,
|
1790
2007
|
.dj_ie7 .dijitSelectMenu .dijitMenuItemLabel {
|
1791
2008
|
/* Set back to static due to bug in ie6/ie7 - See Bug #9651 */
|
@@ -1809,58 +2026,22 @@ div.dijitTabBtnDisabled img {
|
|
1809
2026
|
}
|
1810
2027
|
|
1811
2028
|
/* Style the different areas of the button to look like a "real" dropdown */
|
1812
|
-
.dijitSelect .dijitButtonContents {
|
1813
|
-
white-space: nowrap;
|
1814
|
-
}
|
1815
|
-
|
1816
2029
|
/* Remove margins on the sub-table */
|
1817
2030
|
.dijitSelectMenu .dijitMenuTable {
|
1818
2031
|
margin: 0px;
|
1819
2032
|
background-color: transparent;
|
1820
2033
|
}
|
1821
2034
|
|
1822
|
-
/*
|
1823
|
-
.dijitTextBoxReadOnly,
|
1824
|
-
.dijitComboBoxReadOnly,
|
1825
|
-
.dijitSpinnerReadOnly,
|
1826
|
-
.dijitTextAreaReadOnly,
|
1827
|
-
.dijitTextBoxDisabled,
|
1828
|
-
.dijitComboBoxDisabled,
|
1829
|
-
.dijitSpinnerDisabled,
|
1830
|
-
.dijitTextAreaDisabled {
|
1831
|
-
color: gray;
|
1832
|
-
}
|
1833
|
-
.dj_webkit .dijitTextBoxDisabled INPUT,
|
1834
|
-
.dj_webkit .dijitComboBoxDisabled INPUT,
|
1835
|
-
.dj_webkit .dijitSpinnerDisabled INPUT {
|
1836
|
-
color: #eee;
|
1837
|
-
}
|
1838
|
-
.dj_webkit INPUT.dijitTextBoxDisabled,
|
1839
|
-
.dj_webkit TEXTAREA.dijitTextAreaDisabled {
|
1840
|
-
color: #333; /* because WebKit lightens disabled input/textarea no matter what color you specify */
|
1841
|
-
}
|
1842
|
-
|
1843
|
-
.dijit_a11y .dijitSliderReadOnly,
|
1844
|
-
.dijit_a11y .dijitSliderDisabled {
|
1845
|
-
opacity:0.6;
|
1846
|
-
}
|
1847
|
-
.dj_ie .dijit_a11y .dijitSliderReadOnly .dijitSliderBar,
|
1848
|
-
.dj_ie .dijit_a11y .dijitSliderDisabled .dijitSliderBar {
|
1849
|
-
filter: alpha(opacity=40);
|
1850
|
-
}
|
1851
|
-
|
1852
|
-
/* + and - Slider buttons: undo themed image values */
|
1853
|
-
.dijit_a11y .dijitSlider .dijitSliderButtonContainer DIV {
|
1854
|
-
font-family: monospace; /* hypen is larger and more vertically centered */
|
1855
|
-
font-size: 1em;
|
1856
|
-
line-height: 1em;
|
1857
|
-
height: auto;
|
1858
|
-
width: auto;
|
1859
|
-
margin: 0px 4px;
|
1860
|
-
}
|
1861
|
-
|
1862
|
-
|
2035
|
+
/* Used in cases, such as FullScreen plugin, when we need to force stuff to static positioning. */
|
1863
2036
|
.dijitForceStatic {
|
1864
|
-
|
2037
|
+
position: static !important;
|
1865
2038
|
}
|
1866
2039
|
|
2040
|
+
/**** Disabled cursor *****/
|
2041
|
+
.dijitReadOnly *,
|
2042
|
+
.dijitDisabled *,
|
2043
|
+
.dijitReadOnly,
|
2044
|
+
.dijitDisabled {
|
2045
|
+
/* a region the user would be able to click on, but it's disabled */
|
2046
|
+
cursor: default;
|
2047
|
+
}
|