rwiki 0.1.3 → 0.2.1

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.
Files changed (220) hide show
  1. data/Capfile +2 -0
  2. data/Gemfile +30 -0
  3. data/Rakefile +22 -65
  4. data/VERSION +1 -1
  5. data/config.ru +11 -0
  6. data/config/config.yml.example +1 -0
  7. data/config/deploy.rb +37 -0
  8. data/features/create_page.feature +30 -20
  9. data/features/delete_page.feature +23 -18
  10. data/features/display_page.feature +10 -11
  11. data/features/editor.feature +45 -0
  12. data/features/history.feature +46 -0
  13. data/features/rename_page.feature +42 -37
  14. data/features/step_definitions/common_steps.rb +19 -47
  15. data/features/step_definitions/common_transforms.rb +5 -0
  16. data/features/step_definitions/dialog_box_steps.rb +16 -0
  17. data/features/step_definitions/history_steps.rb +11 -0
  18. data/features/step_definitions/tab_panel_steps.rb +27 -0
  19. data/features/step_definitions/tree_panel_steps.rb +42 -0
  20. data/features/step_definitions/wait_steps.rb +21 -0
  21. data/features/support/env.rb +6 -0
  22. data/features/tab_panel.feature +47 -0
  23. data/features/tree_panel.feature +14 -15
  24. data/lib/rwiki.rb +1 -0
  25. data/lib/rwiki/app.rb +14 -2
  26. data/lib/rwiki/models/folder.rb +1 -1
  27. data/lib/rwiki/models/node.rb +11 -1
  28. data/lib/rwiki/models/page.rb +1 -1
  29. data/public/favicon.ico +0 -0
  30. data/public/images/compressed.png +0 -0
  31. data/public/images/css.png +0 -0
  32. data/public/images/file.png +0 -0
  33. data/public/images/html.png +0 -0
  34. data/public/images/icon_word.png +0 -0
  35. data/public/images/image.png +0 -0
  36. data/public/images/javascript.png +0 -0
  37. data/public/images/pdf.png +0 -0
  38. data/public/images/php.png +0 -0
  39. data/public/images/presentation.png +0 -0
  40. data/public/images/ruby.png +0 -0
  41. data/public/images/shellscript.png +0 -0
  42. data/public/images/stylesheet.png +0 -0
  43. data/public/images/text.png +0 -0
  44. data/public/images/wordprocessing.png +0 -0
  45. data/public/javascripts/Rwiki.js +71 -29
  46. data/public/javascripts/Rwiki/EditorPanel.js +5 -37
  47. data/public/javascripts/Rwiki/EditorPanel/Editor.js +8 -44
  48. data/public/javascripts/Rwiki/EditorWindow.js +66 -0
  49. data/public/javascripts/Rwiki/FuzzyFinderDialog.js +61 -0
  50. data/public/javascripts/Rwiki/NavigationPanel.js +25 -0
  51. data/public/javascripts/Rwiki/NodeManager.js +2 -0
  52. data/public/javascripts/Rwiki/TabPanel.js +39 -2
  53. data/public/javascripts/Rwiki/TreePanel.js +39 -26
  54. data/public/javascripts/Rwiki/TreePanel/Menu.js +1 -1
  55. data/public/javascripts/Rwiki/TreePanel/Node.js +46 -0
  56. data/public/javascripts/vendor/ext/adapter/ext/ext-base-debug.js +836 -710
  57. data/public/javascripts/vendor/ext/adapter/ext/ext-base.js +5 -5
  58. data/public/javascripts/vendor/ext/adapter/jquery/ext-jquery-adapter-debug.js +47 -700
  59. data/public/javascripts/vendor/ext/adapter/jquery/ext-jquery-adapter.js +5 -5
  60. data/public/javascripts/vendor/ext/adapter/prototype/ext-prototype-adapter-debug.js +45 -698
  61. data/public/javascripts/vendor/ext/adapter/prototype/ext-prototype-adapter.js +5 -5
  62. data/public/javascripts/vendor/ext/adapter/yui/ext-yui-adapter-debug.js +39 -696
  63. data/public/javascripts/vendor/ext/adapter/yui/ext-yui-adapter.js +5 -5
  64. data/public/javascripts/vendor/ext/ext-all-debug-w-comments.js +17932 -12860
  65. data/public/javascripts/vendor/ext/ext-all-debug.js +11674 -8102
  66. data/public/javascripts/vendor/ext/ext-all.js +6 -6
  67. data/public/javascripts/vendor/ext/ux/StatusBar.js +418 -0
  68. data/public/resources/ext/charts.swf +0 -0
  69. data/public/resources/ext/css/debug.css +4 -4
  70. data/public/resources/ext/css/ext-all-notheme.css +204 -52
  71. data/public/resources/ext/css/ext-all.css +234 -54
  72. data/public/resources/ext/css/reset-min.css +4 -4
  73. data/public/resources/ext/css/structure/borders.css +4 -4
  74. data/public/resources/ext/css/structure/box.css +4 -4
  75. data/public/resources/ext/css/structure/button.css +7 -7
  76. data/public/resources/ext/css/structure/combo.css +4 -4
  77. data/public/resources/ext/css/structure/core.css +15 -5
  78. data/public/resources/ext/css/structure/date-picker.css +4 -4
  79. data/public/resources/ext/css/structure/dd.css +4 -4
  80. data/public/resources/ext/css/structure/debug.css +4 -4
  81. data/public/resources/ext/css/structure/dialog.css +6 -9
  82. data/public/resources/ext/css/structure/editor.css +4 -4
  83. data/public/resources/ext/css/structure/form.css +14 -4
  84. data/public/resources/ext/css/structure/grid.css +15 -5
  85. data/public/resources/ext/css/structure/layout.css +7 -7
  86. data/public/resources/ext/css/structure/list-view.css +4 -4
  87. data/public/resources/ext/css/structure/menu.css +13 -6
  88. data/public/resources/ext/css/structure/panel-reset.css +4 -4
  89. data/public/resources/ext/css/structure/panel.css +70 -22
  90. data/public/resources/ext/css/structure/pivotgrid.css +65 -0
  91. data/public/resources/ext/css/structure/progress.css +4 -4
  92. data/public/resources/ext/css/structure/qtips.css +4 -4
  93. data/public/resources/ext/css/structure/reset.css +11 -5
  94. data/public/resources/ext/css/structure/resizable.css +4 -4
  95. data/public/resources/ext/css/structure/slider.css +4 -4
  96. data/public/resources/ext/css/structure/tabs.css +13 -8
  97. data/public/resources/ext/css/structure/toolbar.css +5 -5
  98. data/public/resources/ext/css/structure/tree.css +11 -11
  99. data/public/resources/ext/css/structure/window.css +5 -5
  100. data/public/resources/ext/css/theme-access/borders.css +4 -4
  101. data/public/resources/ext/css/theme-access/box.css +4 -4
  102. data/public/resources/ext/css/theme-access/button.css +4 -4
  103. data/public/resources/ext/css/theme-access/combo.css +4 -4
  104. data/public/resources/ext/css/theme-access/core.css +4 -4
  105. data/public/resources/ext/css/theme-access/date-picker.css +4 -4
  106. data/public/resources/ext/css/theme-access/dd.css +4 -4
  107. data/public/resources/ext/css/theme-access/debug.css +4 -4
  108. data/public/resources/ext/css/theme-access/dialog.css +4 -4
  109. data/public/resources/ext/css/theme-access/editor.css +4 -4
  110. data/public/resources/ext/css/theme-access/form.css +4 -4
  111. data/public/resources/ext/css/theme-access/grid.css +4 -4
  112. data/public/resources/ext/css/theme-access/layout.css +4 -4
  113. data/public/resources/ext/css/theme-access/list-view.css +8 -4
  114. data/public/resources/ext/css/theme-access/menu.css +4 -4
  115. data/public/resources/ext/css/theme-access/panel.css +4 -4
  116. data/public/resources/ext/css/theme-access/progress.css +4 -4
  117. data/public/resources/ext/css/theme-access/qtips.css +4 -4
  118. data/public/resources/ext/css/theme-access/resizable.css +4 -4
  119. data/public/resources/ext/css/theme-access/slider.css +4 -4
  120. data/public/resources/ext/css/theme-access/tabs.css +4 -4
  121. data/public/resources/ext/css/theme-access/toolbar.css +4 -4
  122. data/public/resources/ext/css/theme-access/tree.css +4 -4
  123. data/public/resources/ext/css/theme-access/window.css +5 -5
  124. data/public/resources/ext/css/theme-gray/borders.css +4 -4
  125. data/public/resources/ext/css/theme-gray/box.css +4 -4
  126. data/public/resources/ext/css/theme-gray/button.css +4 -4
  127. data/public/resources/ext/css/theme-gray/combo.css +4 -4
  128. data/public/resources/ext/css/theme-gray/core.css +6 -4
  129. data/public/resources/ext/css/theme-gray/date-picker.css +4 -4
  130. data/public/resources/ext/css/theme-gray/dd.css +4 -4
  131. data/public/resources/ext/css/theme-gray/debug.css +4 -4
  132. data/public/resources/ext/css/theme-gray/dialog.css +4 -4
  133. data/public/resources/ext/css/theme-gray/editor.css +4 -4
  134. data/public/resources/ext/css/theme-gray/form.css +4 -4
  135. data/public/resources/ext/css/theme-gray/grid.css +10 -6
  136. data/public/resources/ext/css/theme-gray/layout.css +4 -4
  137. data/public/resources/ext/css/theme-gray/list-view.css +5 -5
  138. data/public/resources/ext/css/theme-gray/menu.css +4 -4
  139. data/public/resources/ext/css/theme-gray/panel.css +4 -4
  140. data/public/resources/ext/css/theme-gray/pivotgrid.css +28 -0
  141. data/public/resources/ext/css/theme-gray/progress.css +4 -4
  142. data/public/resources/ext/css/theme-gray/qtips.css +4 -4
  143. data/public/resources/ext/css/theme-gray/resizable.css +4 -4
  144. data/public/resources/ext/css/theme-gray/slider.css +4 -4
  145. data/public/resources/ext/css/theme-gray/tabs.css +4 -4
  146. data/public/resources/ext/css/theme-gray/toolbar.css +4 -4
  147. data/public/resources/ext/css/theme-gray/tree.css +4 -4
  148. data/public/resources/ext/css/theme-gray/window.css +4 -4
  149. data/public/resources/ext/css/visual/borders.css +4 -4
  150. data/public/resources/ext/css/visual/box.css +4 -4
  151. data/public/resources/ext/css/visual/button.css +4 -4
  152. data/public/resources/ext/css/visual/combo.css +4 -4
  153. data/public/resources/ext/css/visual/core.css +6 -4
  154. data/public/resources/ext/css/visual/date-picker.css +4 -4
  155. data/public/resources/ext/css/visual/dd.css +4 -4
  156. data/public/resources/ext/css/visual/debug.css +4 -4
  157. data/public/resources/ext/css/visual/dialog.css +4 -4
  158. data/public/resources/ext/css/visual/editor.css +4 -4
  159. data/public/resources/ext/css/visual/form.css +4 -4
  160. data/public/resources/ext/css/visual/grid.css +8 -4
  161. data/public/resources/ext/css/visual/layout.css +4 -4
  162. data/public/resources/ext/css/visual/list-view.css +4 -4
  163. data/public/resources/ext/css/visual/menu.css +4 -4
  164. data/public/resources/ext/css/visual/panel.css +4 -4
  165. data/public/resources/ext/css/visual/pivotgrid.css +28 -0
  166. data/public/resources/ext/css/visual/progress.css +4 -4
  167. data/public/resources/ext/css/visual/qtips.css +4 -4
  168. data/public/resources/ext/css/visual/resizable.css +4 -4
  169. data/public/resources/ext/css/visual/slider.css +4 -4
  170. data/public/resources/ext/css/visual/tabs.css +4 -4
  171. data/public/resources/ext/css/visual/toolbar.css +5 -5
  172. data/public/resources/ext/css/visual/tree.css +4 -4
  173. data/public/resources/ext/css/visual/window.css +4 -4
  174. data/public/resources/ext/css/xtheme-access.css +9 -5
  175. data/public/resources/ext/css/xtheme-blue.css +34 -6
  176. data/public/resources/ext/css/xtheme-gray.css +35 -7
  177. data/public/resources/ext/css/yourtheme.css +11 -5
  178. data/public/resources/ext/images/access/panel/tool-sprites.gif +0 -0
  179. data/public/resources/ext/images/default/grid/grid3-rowheader.gif +0 -0
  180. data/public/resources/ext/images/default/grid/refresh-disabled.gif +0 -0
  181. data/public/resources/ext/images/default/panel/tool-sprites.gif +0 -0
  182. data/public/resources/ext/images/gray/grid/sort-hd.gif +0 -0
  183. data/public/resources/ext/images/gray/panel/tool-sprites.gif +0 -0
  184. data/public/resources/ext/images/gray/window/left-corners.png +0 -0
  185. data/public/resources/ext/images/gray/window/left-right.png +0 -0
  186. data/public/resources/ext/images/gray/window/right-corners.png +0 -0
  187. data/public/resources/ext/images/gray/window/top-bottom.png +0 -0
  188. data/public/stylesheets/coderay.css +3 -0
  189. data/public/stylesheets/markitup.css +19 -0
  190. data/public/stylesheets/style.css +1 -1
  191. data/run_tests.sh +1 -0
  192. data/rwiki.gemspec +56 -37
  193. data/test/fixtures/pages/Info/dummy +0 -0
  194. data/test/rwiki/models/test_folder.rb +4 -4
  195. data/vendor/.gitkeep +0 -0
  196. data/views/layout.erb +13 -5
  197. metadata +78 -69
  198. data/.idea/projectCodeStyle.xml +0 -80
  199. data/.rvmrc +0 -1
  200. data/public/javascripts/Rwiki/SidePanel.js +0 -26
  201. data/public/javascripts/Rwiki/Toolbar.js +0 -31
  202. data/public/javascripts/Rwiki/Viewport.js +0 -10
  203. data/tmp/ExtDesigner/MyViewport.js +0 -18
  204. data/tmp/ExtDesigner/MyViewport.ui.js +0 -29
  205. data/tmp/ExtDesigner/Rwiki.EditorPanel.js +0 -19
  206. data/tmp/ExtDesigner/Rwiki.EditorPanel.ui.js +0 -27
  207. data/tmp/ExtDesigner/Rwiki.MainPanel.js +0 -19
  208. data/tmp/ExtDesigner/Rwiki.MainPanel.ui.js +0 -29
  209. data/tmp/ExtDesigner/Rwiki.TabPane.PageTab.js +0 -19
  210. data/tmp/ExtDesigner/Rwiki.TabPane.PageTab.ui.js +0 -19
  211. data/tmp/ExtDesigner/Rwiki.TabPanel.js +0 -19
  212. data/tmp/ExtDesigner/Rwiki.TabPanel.ui.js +0 -27
  213. data/tmp/ExtDesigner/Rwiki.TreePanel.js +0 -19
  214. data/tmp/ExtDesigner/Rwiki.TreePanel.ui.js +0 -27
  215. data/tmp/ExtDesigner/Rwiki.Viewport.js +0 -18
  216. data/tmp/ExtDesigner/Rwiki.Viewport.ui.js +0 -30
  217. data/tmp/ExtDesigner/rwiki.xds +0 -192
  218. data/tmp/ExtDesigner/xds_includeOrder.txt +0 -12
  219. data/tmp/ExtDesigner/xds_index.html +0 -26
  220. data/tmp/ExtDesigner/xds_index.js +0 -19
@@ -1,10 +1,17 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
- html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}img,body,html{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul {list-style:none;}caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;}q:before,q:after{content:'';}.ext-el-mask {
7
+ html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}img,body,html{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul {list-style:none;}caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;}q:before,q:after{content:'';}
8
+
9
+ .ext-forced-border-box, .ext-forced-border-box * {
10
+ -moz-box-sizing: border-box;
11
+ -ms-box-sizing: border-box;
12
+ -webkit-box-sizing: border-box;
13
+ }
14
+ .ext-el-mask {
8
15
  z-index: 100;
9
16
  position: absolute;
10
17
  top:0;
@@ -68,6 +75,16 @@ html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,bloc
68
75
  display:none !important;
69
76
  }
70
77
 
78
+ .x-hide-nosize,
79
+ .x-hide-nosize * /* Emulate display:none for children */
80
+ {
81
+ height:0px!important;
82
+ width:0px!important;
83
+ visibility:hidden!important;
84
+ border:none!important;
85
+ zoom:1;
86
+ }
87
+
71
88
  .x-hide-visibility {
72
89
  visibility:hidden !important;
73
90
  }
@@ -224,7 +241,7 @@ html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,bloc
224
241
  .x-shadow .xsmc {
225
242
  float: left;
226
243
  height: 100%;
227
- background: transparent;
244
+ background-color: transparent;
228
245
  }
229
246
 
230
247
  .x-shadow .xst, .x-shadow .xsb {
@@ -642,17 +659,22 @@ ul.x-tab-strip li.x-tab-edge {
642
659
  /*
643
660
  * Horrible hack for IE8 in quirks mode
644
661
  */
645
- .ext-ie8 ul.x-tab-strip li {
662
+ .ext-ie8 .x-tab-strip li {
646
663
  position: relative;
647
664
  }
648
- .ext-ie8 .x-tab-strip .x-tab-right{
649
- margin-bottom: 0 !important;
665
+ .ext-border-box .ext-ie8 .x-tab-strip-top .x-tab-right {
650
666
  top: 1px;
651
667
  }
652
- .ext-ie8 ul.x-tab-strip-top {
668
+ .ext-ie8 .x-tab-strip-top {
669
+ padding-top: 1;
670
+ }
671
+ .ext-border-box .ext-ie8 .x-tab-strip-top {
653
672
  padding-top: 0;
654
673
  }
655
674
  .ext-ie8 .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
675
+ top:3px;
676
+ }
677
+ .ext-border-box .ext-ie8 .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
656
678
  top:4px;
657
679
  }
658
680
  .ext-ie8 .x-tab-strip-bottom .x-tab-right{
@@ -884,6 +906,10 @@ textarea.x-form-field {
884
906
  line-height:18px;
885
907
  }
886
908
 
909
+ .ext-ie6 .x-form-field-wrap .x-form-file-btn, .ext-ie7 .x-form-field-wrap .x-form-file-btn {
910
+ top: -1px; /* because of all these margin hacks, these buttons are off by one pixel in IE6,7 */
911
+ }
912
+
887
913
  .ext-ie6 textarea.x-form-field, .ext-ie7 textarea.x-form-field {
888
914
  margin:-1px 0; /* ie bogus margin bug */
889
915
  }
@@ -896,9 +922,11 @@ textarea.x-form-field {
896
922
  margin-bottom:-2px; /* another bogus margin bug, safari/mac only */
897
923
  }
898
924
 
925
+ /*
899
926
  .ext-strict .ext-ie8 .x-form-text, .ext-strict .ext-ie8 textarea.x-form-field {
900
927
  margin-bottom: 1px;
901
928
  }
929
+ */
902
930
 
903
931
  .ext-gecko .x-form-text , .ext-ie8 .x-form-text {
904
932
  padding-top:2px; /* FF won't center the text vertically */
@@ -1380,6 +1408,10 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
1380
1408
  overflow: auto;
1381
1409
  }
1382
1410
 
1411
+ .ext-mac.ext-gecko .x-window-body .x-form-item {
1412
+ overflow:hidden;
1413
+ }
1414
+
1383
1415
  .ext-gecko .x-form-item {
1384
1416
  -moz-outline: none;
1385
1417
  outline: none;
@@ -1416,7 +1448,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
1416
1448
 
1417
1449
  .x-btn button{
1418
1450
  border:0 none;
1419
- background:transparent;
1451
+ background-color:transparent;
1420
1452
  padding-left:3px;
1421
1453
  padding-right:3px;
1422
1454
  cursor:pointer;
@@ -1748,7 +1780,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
1748
1780
  /* height adjustment class */
1749
1781
  .x-btn-as-arrow .x-btn-mc em {
1750
1782
  display:block;
1751
- background:transparent;
1783
+ background-color:transparent;
1752
1784
  padding-bottom:14px;
1753
1785
  }
1754
1786
 
@@ -1807,7 +1839,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
1807
1839
  }
1808
1840
 
1809
1841
  .x-btn-group-mc .x-btn-group-body {
1810
- background:transparent;
1842
+ background-color:transparent;
1811
1843
  border: 0 none;
1812
1844
  }
1813
1845
 
@@ -2032,7 +2064,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
2032
2064
 
2033
2065
  .x-toolbar-more em.x-btn-arrow {
2034
2066
  display:inline;
2035
- background:transparent;
2067
+ background-color:transparent;
2036
2068
  padding-right:0;
2037
2069
  }
2038
2070
 
@@ -2154,6 +2186,16 @@ div.x-toolbar-no-items {
2154
2186
  white-space: nowrap;
2155
2187
  }
2156
2188
 
2189
+ /* ActionColumn, reduce padding to accommodate 16x16 icons in normal row height */
2190
+ .x-action-col-cell .x-grid3-cell-inner {
2191
+ padding-top: 1px;
2192
+ padding-bottom: 1px;
2193
+ }
2194
+
2195
+ .x-action-col-icon {
2196
+ cursor: pointer;
2197
+ }
2198
+
2157
2199
  .x-grid3-hd-inner {
2158
2200
  position:relative;
2159
2201
  cursor:inherit;
@@ -2431,7 +2473,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
2431
2473
  .x-grid3-col-dd {
2432
2474
  border:0 none;
2433
2475
  padding:0;
2434
- background:transparent;
2476
+ background-color:transparent;
2435
2477
  }
2436
2478
 
2437
2479
  .x-dd-drag-ghost .x-grid3-dd-wrap {
@@ -2659,7 +2701,65 @@ a.x-grid3-hd-btn:hover {
2659
2701
  padding-right:0;
2660
2702
  border-right:1px solid;
2661
2703
  }
2662
- .x-dd-drag-proxy{
2704
+ .x-pivotgrid .x-grid3-header-offset table {
2705
+ width: 100%;
2706
+ border-collapse: collapse;
2707
+ }
2708
+
2709
+ .x-pivotgrid .x-grid3-header-offset table td {
2710
+ padding: 4px 3px 4px 5px;
2711
+ text-align: center;
2712
+ white-space: nowrap;
2713
+ overflow: hidden;
2714
+ text-overflow: ellipsis;
2715
+ font-size: 11px;
2716
+ line-height: 13px;
2717
+ font-family: tahoma;
2718
+ }
2719
+
2720
+ .x-pivotgrid .x-grid3-row-headers {
2721
+ display: block;
2722
+ float: left;
2723
+ }
2724
+
2725
+ .x-pivotgrid .x-grid3-row-headers table {
2726
+ height: 100%;
2727
+ width: 100%;
2728
+ border-collapse: collapse;
2729
+ }
2730
+
2731
+ .x-pivotgrid .x-grid3-row-headers table td {
2732
+ height: 18px;
2733
+ padding: 2px 7px 0 0;
2734
+ text-align: right;
2735
+ text-overflow: ellipsis;
2736
+ font-size: 11px;
2737
+ font-family: tahoma;
2738
+ }
2739
+
2740
+ .ext-gecko .x-pivotgrid .x-grid3-row-headers table td {
2741
+ height: 21px;
2742
+ }
2743
+
2744
+ .x-grid3-header-title {
2745
+ top: 0%;
2746
+ left: 0%;
2747
+ position: absolute;
2748
+ text-align: center;
2749
+ vertical-align: middle;
2750
+ font-family: tahoma;
2751
+ font-size: 11px;
2752
+ padding: auto 1px;
2753
+ display: table-cell;
2754
+ }
2755
+
2756
+ .x-grid3-header-title span {
2757
+ position: absolute;
2758
+ top: 50%;
2759
+ left: 0%;
2760
+ width: 100%;
2761
+ margin-top: -6px;
2762
+ }.x-dd-drag-proxy{
2663
2763
  position:absolute;
2664
2764
  left:0;
2665
2765
  top:0;
@@ -2784,20 +2884,20 @@ input.x-tree-node-cb {
2784
2884
 
2785
2885
  /* No line styles */
2786
2886
  .x-tree-no-lines .x-tree-elbow{
2787
- background:transparent;
2887
+ background-color:transparent;
2788
2888
  }
2789
2889
 
2790
2890
  .x-tree-no-lines .x-tree-elbow-end{
2791
- background:transparent;
2891
+ background-color:transparent;
2792
2892
  }
2793
2893
 
2794
2894
  .x-tree-no-lines .x-tree-elbow-line{
2795
- background:transparent;
2895
+ background-color:transparent;
2796
2896
  }
2797
2897
 
2798
2898
  /* Arrows */
2799
2899
  .x-tree-arrows .x-tree-elbow{
2800
- background:transparent;
2900
+ background-color:transparent;
2801
2901
  }
2802
2902
 
2803
2903
  .x-tree-arrows .x-tree-elbow-plus{
@@ -2809,7 +2909,7 @@ input.x-tree-node-cb {
2809
2909
  }
2810
2910
 
2811
2911
  .x-tree-arrows .x-tree-elbow-end{
2812
- background:transparent;
2912
+ background-color:transparent;
2813
2913
  }
2814
2914
 
2815
2915
  .x-tree-arrows .x-tree-elbow-end-plus{
@@ -2821,7 +2921,7 @@ input.x-tree-node-cb {
2821
2921
  }
2822
2922
 
2823
2923
  .x-tree-arrows .x-tree-elbow-line{
2824
- background:transparent;
2924
+ background-color:transparent;
2825
2925
  }
2826
2926
 
2827
2927
  .x-tree-arrows .x-tree-ec-over .x-tree-elbow-plus{
@@ -2882,7 +2982,7 @@ input.x-tree-node-cb {
2882
2982
  }
2883
2983
 
2884
2984
  .x-tree-node .x-tree-node-inline-icon{
2885
- background:transparent;
2985
+ background-color:transparent;
2886
2986
  }
2887
2987
 
2888
2988
  .x-tree-node a:hover, .x-dd-drag-ghost a:hover{
@@ -3356,7 +3456,7 @@ td.x-date-mp-sep {
3356
3456
 
3357
3457
  .x-menu-list{
3358
3458
  padding: 2px;
3359
- background:transparent;
3459
+ background-color:transparent;
3360
3460
  border:0 none;
3361
3461
  overflow:hidden;
3362
3462
  overflow-y: hidden;
@@ -3478,7 +3578,7 @@ a.x-menu-item {
3478
3578
  }
3479
3579
 
3480
3580
  .x-menu-group-item .x-menu-item-icon{
3481
- background: transparent;
3581
+ background-color: transparent;
3482
3582
  }
3483
3583
 
3484
3584
  .x-menu-item-checked .x-menu-group-item .x-menu-item-icon{
@@ -3524,6 +3624,13 @@ a.x-menu-item {
3524
3624
  height: 1px;
3525
3625
  }
3526
3626
 
3627
+ /*
3628
+ * Fixes an issue with "fat" separators in webkit
3629
+ */
3630
+ .ext-webkit .x-menu-sep{
3631
+ height: 1px;
3632
+ }
3633
+
3527
3634
  /*
3528
3635
  * Ugly mess to remove the white border under the picker
3529
3636
  */
@@ -3722,7 +3829,7 @@ a.x-menu-item {
3722
3829
  .x-panel-tl .x-panel-header {
3723
3830
  padding:5px 0 4px 0;
3724
3831
  border:0 none;
3725
- background:transparent;
3832
+ background:transparent no-repeat;
3726
3833
  }
3727
3834
 
3728
3835
  .x-panel-tl .x-panel-icon, .x-window-tl .x-panel-icon {
@@ -3795,7 +3902,7 @@ a.x-menu-item {
3795
3902
  }
3796
3903
 
3797
3904
  .x-panel-mc .x-panel-body {
3798
- background:transparent;
3905
+ background-color:transparent;
3799
3906
  border: 0 none;
3800
3907
  }
3801
3908
 
@@ -3933,6 +4040,22 @@ a.x-menu-item {
3933
4040
  background-position:-15px -90px;
3934
4041
  }
3935
4042
 
4043
+ .x-tool-prev {
4044
+ background-position:0 -105px;
4045
+ }
4046
+
4047
+ .x-tool-prev-over {
4048
+ background-position:-15px -105px;
4049
+ }
4050
+
4051
+ .x-tool-next {
4052
+ background-position:0 -120px;
4053
+ }
4054
+
4055
+ .x-tool-next-over {
4056
+ background-position:-15px -120px;
4057
+ }
4058
+
3936
4059
  .x-tool-pin {
3937
4060
  background-position:0 -135px;
3938
4061
  }
@@ -3965,14 +4088,6 @@ a.x-menu-item {
3965
4088
  background-position:-15px -180px;
3966
4089
  }
3967
4090
 
3968
- .x-tool-up {
3969
- background-position:0 -210px;
3970
- }
3971
-
3972
- .x-tool-up-over {
3973
- background-position:-15px -210px;
3974
- }
3975
-
3976
4091
  .x-tool-down {
3977
4092
  background-position:0 -195px;
3978
4093
  }
@@ -3981,20 +4096,20 @@ a.x-menu-item {
3981
4096
  background-position:-15px -195px;
3982
4097
  }
3983
4098
 
3984
- .x-tool-refresh {
3985
- background-position:0 -225px;
4099
+ .x-tool-up {
4100
+ background-position:0 -210px;
3986
4101
  }
3987
4102
 
3988
- .x-tool-refresh-over {
3989
- background-position:-15px -225px;
4103
+ .x-tool-up-over {
4104
+ background-position:-15px -210px;
3990
4105
  }
3991
4106
 
3992
- .x-tool-minus {
3993
- background-position:0 -255px;
4107
+ .x-tool-refresh {
4108
+ background-position:0 -225px;
3994
4109
  }
3995
4110
 
3996
- .x-tool-minus-over {
3997
- background-position:-15px -255px;
4111
+ .x-tool-refresh-over {
4112
+ background-position:-15px -225px;
3998
4113
  }
3999
4114
 
4000
4115
  .x-tool-plus {
@@ -4005,6 +4120,14 @@ a.x-menu-item {
4005
4120
  background-position:-15px -240px;
4006
4121
  }
4007
4122
 
4123
+ .x-tool-minus {
4124
+ background-position:0 -255px;
4125
+ }
4126
+
4127
+ .x-tool-minus-over {
4128
+ background-position:-15px -255px;
4129
+ }
4130
+
4008
4131
  .x-tool-search {
4009
4132
  background-position:0 -270px;
4010
4133
  }
@@ -4037,6 +4160,38 @@ a.x-menu-item {
4037
4160
  background-position:-15px -315px;
4038
4161
  }
4039
4162
 
4163
+ .x-tool-expand {
4164
+ background-position:0 -330px;
4165
+ }
4166
+
4167
+ .x-tool-expand-over {
4168
+ background-position:-15px -330px;
4169
+ }
4170
+
4171
+ .x-tool-collapse {
4172
+ background-position:0 -345px;
4173
+ }
4174
+
4175
+ .x-tool-collapse-over {
4176
+ background-position:-15px -345px;
4177
+ }
4178
+
4179
+ .x-tool-resize {
4180
+ background-position:0 -360px;
4181
+ }
4182
+
4183
+ .x-tool-resize-over {
4184
+ background-position:-15px -360px;
4185
+ }
4186
+
4187
+ .x-tool-move {
4188
+ background-position:0 -375px;
4189
+ }
4190
+
4191
+ .x-tool-move-over {
4192
+ background-position:-15px -375px;
4193
+ }
4194
+
4040
4195
  /* Ghosting */
4041
4196
  .x-panel-ghost {
4042
4197
  z-index:12000;
@@ -4390,7 +4545,7 @@ a.x-menu-item {
4390
4545
  }
4391
4546
 
4392
4547
  .x-window-body {
4393
- background:transparent;
4548
+ background-color:transparent;
4394
4549
  }
4395
4550
 
4396
4551
  .x-panel-ghost .x-window-tl {
@@ -4667,7 +4822,7 @@ body.ext-ie6.x-body-masked .x-window select {
4667
4822
 
4668
4823
  .x-tool-expand-east, .x-tool-expand-west {
4669
4824
  float:none;
4670
- margin:3px auto;
4825
+ margin:3px 2px;
4671
4826
  }
4672
4827
 
4673
4828
  .x-accordion-hd .x-tool-toggle {
@@ -4831,14 +4986,14 @@ body.ext-ie6.x-body-masked .x-window select {
4831
4986
  border:0 none;
4832
4987
  width:5px !important;
4833
4988
  padding:0;
4834
- background:transparent;
4989
+ background-color:transparent;
4835
4990
  }
4836
4991
 
4837
4992
  .x-layout-cmini-north, .x-layout-cmini-south {
4838
4993
  border:0 none;
4839
4994
  height:5px !important;
4840
4995
  padding:0;
4841
- background:transparent;
4996
+ background-color:transparent;
4842
4997
  }
4843
4998
 
4844
4999
  .x-viewport, .x-viewport body {
@@ -5133,12 +5288,9 @@ body.ext-ie6.x-body-masked .x-window select {
5133
5288
  height:32px;
5134
5289
  }
5135
5290
 
5136
- .ext-ie .x-window-dlg .ext-mb-icon {
5137
- width:44px; /* 3px IE margin issue */
5138
- }
5139
-
5140
5291
  .x-window-dlg .x-dlg-icon .ext-mb-content{
5141
- zoom: 1; margin-left: 47px;
5292
+ zoom: 1;
5293
+ margin-left: 47px;
5142
5294
  }
5143
5295
 
5144
5296
  .x-window-dlg .ext-mb-info, .x-window-dlg .ext-mb-warning, .x-window-dlg .ext-mb-question, .x-window-dlg .ext-mb-error {
@@ -5189,9 +5341,11 @@ body.ext-ie6.x-body-masked .x-window select {
5189
5341
  background-color: #deecfd;
5190
5342
  }
5191
5343
 
5344
+ /*
5192
5345
  .x-color-palette em:hover, .x-color-palette span:hover{
5193
5346
  background-color: #deecfd;
5194
5347
  }
5348
+ */
5195
5349
 
5196
5350
  .x-color-palette em {
5197
5351
  border-color:#aca899;
@@ -5608,7 +5762,7 @@ ul.x-tab-strip-bottom{
5608
5762
  }
5609
5763
 
5610
5764
  .x-item-disabled .x-tbar-loading{
5611
- background-image: url(../images/default/grid/loading.gif) !important;
5765
+ background-image: url(../images/default/grid/refresh-disabled.gif) !important;
5612
5766
  }
5613
5767
 
5614
5768
  .x-item-disabled .x-tbar-page-first{
@@ -5779,6 +5933,10 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
5779
5933
  background-image:url(../images/default/grid/col-move-bottom.gif);
5780
5934
  }
5781
5935
 
5936
+ td.grid-hd-group-cell {
5937
+ background: url(../images/default/grid/grid3-hrow.gif) repeat-x bottom;
5938
+ }
5939
+
5782
5940
  .x-grid3-row-selected {
5783
5941
  background-color: #dfe8f6 !important;
5784
5942
  background-image: none;
@@ -5936,7 +6094,29 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
5936
6094
 
5937
6095
  .x-grid-with-col-lines .x-grid3-row-selected {
5938
6096
  border-top-color:#a3bae9;
5939
- }.x-dd-drag-ghost{
6097
+ }.x-pivotgrid .x-grid3-header-offset table td {
6098
+ background: url(../images/default/grid/grid3-hrow.gif) repeat-x 50% 100%;
6099
+ border-left: 1px solid;
6100
+ border-right: 1px solid;
6101
+ border-left-color: #EEE;
6102
+ border-right-color: #D0D0D0;
6103
+ }
6104
+
6105
+ .x-pivotgrid .x-grid3-row-headers {
6106
+ background-color: #f9f9f9;
6107
+ }
6108
+
6109
+ .x-pivotgrid .x-grid3-row-headers table td {
6110
+ background: #EEE url(../images/default/grid/grid3-rowheader.gif) repeat-x left top;
6111
+ border-left: 1px solid;
6112
+ border-right: 1px solid;
6113
+ border-left-color: #EEE;
6114
+ border-right-color: #D0D0D0;
6115
+ border-bottom: 1px solid;
6116
+ border-bottom-color: #D0D0D0;
6117
+ height: 18px;
6118
+ }
6119
+ .x-dd-drag-ghost{
5940
6120
  color:#000;
5941
6121
  font: normal 11px arial, helvetica, sans-serif;
5942
6122
  border-color: #ddd #bbb #bbb #ddd;