jsduck 0.6 → 0.6.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.
data/README.md CHANGED
@@ -141,10 +141,10 @@ Here's how the resulting documentation will look (ExtJS 3.3.1):
141
141
  * [JsDuck generated documentation](http://triin.net/temp/jsduck/)
142
142
  * [Official ExtJS documentation](http://dev.sencha.com/deploy/dev/docs/) (for comparison)
143
143
 
144
- Here's the same for ExtJS 4 Preview 5:
144
+ Here's the same for ExtJS 4:
145
145
 
146
146
  * [JsDuck generated documentation](http://triin.net/temp/jsduck4/)
147
- * [Official ExtJS documentation](http://dev.sencha.com/deploy/ext-4.0-pr5/docs/) (for comparison)
147
+ * [Official ExtJS documentation](http://docs.sencha.com/ext-js/4-0/api) (for comparison)
148
148
 
149
149
 
150
150
  Documentation
@@ -204,6 +204,11 @@ and [Nick Poulden](https://github.com/nick).
204
204
  Changelog
205
205
  ---------
206
206
 
207
+ * 0.6.1 - Bug fixes.
208
+ * Fix scrolling to class members in Chrome 12.
209
+ * Make JSDuck work with Ruby 1.8.6.
210
+ * Upgrade the embedded ExtJS to 3.4.0.
211
+
207
212
  * 0.6 - JsDuck is now used for creating the official ExtJS4 documentation.
208
213
  * Automatic linking of class names found in comments. Instead of writing
209
214
  `{@link Ext.Panel}` one can simply write `Ext.Panel` and link will be
data/jsduck.gemspec CHANGED
@@ -2,8 +2,8 @@ Gem::Specification.new do |s|
2
2
  s.required_rubygems_version = ">= 1.3.7"
3
3
 
4
4
  s.name = 'jsduck'
5
- s.version = '0.6'
6
- s.date = '2011-04-27'
5
+ s.version = '0.6.1'
6
+ s.date = '2011-07-07'
7
7
  s.summary = "Simple JavaScript Duckumentation generator"
8
8
  s.description = "Better ext-doc like JavaScript documentation generator for ExtJS"
9
9
  s.homepage = "https://github.com/nene/jsduck"
@@ -47,7 +47,9 @@ module JsDuck
47
47
  # Returns source code as HTML with lines starting doc-comments specially marked.
48
48
  def to_html
49
49
  linenr = 0
50
- return @contents.lines.map do |line|
50
+ lines = []
51
+ # Use #each_line instead of #lines to support Ruby 1.6
52
+ @contents.each_line do |line|
51
53
  linenr += 1;
52
54
  line = CGI.escapeHTML(line)
53
55
  # wrap the line in as many spans as there are links to this line number.
@@ -56,8 +58,9 @@ module JsDuck
56
58
  line = "<span id='#{id(doc)}'>#{line}</span>"
57
59
  end
58
60
  end
59
- line
60
- end.join()
61
+ lines << line
62
+ end
63
+ lines.join()
61
64
  end
62
65
 
63
66
  def id(doc)
@@ -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.4.0
3
+ * Copyright(c) 2006-2011 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,26 @@ textarea.x-form-field {
884
906
  line-height:18px;
885
907
  }
886
908
 
909
+ .x-quirks .ext-ie9 .x-form-text {
910
+ height: 22px;
911
+ padding-top: 3px;
912
+ padding-bottom: 0px;
913
+ }
914
+
915
+ /* Ugly hacks for the bogus 1px margin bug in IE9 quirks */
916
+ .x-quirks .ext-ie9 .x-input-wrapper .x-form-text,
917
+ .x-quirks .ext-ie9 .x-form-field-trigger-wrap .x-form-text {
918
+ margin-top: -1px;
919
+ margin-bottom: -1px;
920
+ }
921
+ .x-quirks .ext-ie9 .x-input-wrapper .x-form-element {
922
+ margin-bottom: -1px;
923
+ }
924
+
925
+ .ext-ie6 .x-form-field-wrap .x-form-file-btn, .ext-ie7 .x-form-field-wrap .x-form-file-btn {
926
+ top: -1px; /* because of all these margin hacks, these buttons are off by one pixel in IE6,7 */
927
+ }
928
+
887
929
  .ext-ie6 textarea.x-form-field, .ext-ie7 textarea.x-form-field {
888
930
  margin:-1px 0; /* ie bogus margin bug */
889
931
  }
@@ -896,9 +938,11 @@ textarea.x-form-field {
896
938
  margin-bottom:-2px; /* another bogus margin bug, safari/mac only */
897
939
  }
898
940
 
941
+ /*
899
942
  .ext-strict .ext-ie8 .x-form-text, .ext-strict .ext-ie8 textarea.x-form-field {
900
943
  margin-bottom: 1px;
901
944
  }
945
+ */
902
946
 
903
947
  .ext-gecko .x-form-text , .ext-ie8 .x-form-text {
904
948
  padding-top:2px; /* FF won't center the text vertically */
@@ -1170,6 +1214,10 @@ textarea {
1170
1214
 
1171
1215
  .ext-webkit .x-small-editor .x-form-text{padding-top:3px;font-size:100%;}
1172
1216
 
1217
+ .ext-strict .ext-webkit .x-small-editor .x-form-text{
1218
+ height:14px !important;
1219
+ }
1220
+
1173
1221
  .x-form-clear {
1174
1222
  clear:both;
1175
1223
  height:0;
@@ -1313,6 +1361,10 @@ textarea {
1313
1361
  margin-bottom:10px;
1314
1362
  }
1315
1363
 
1364
+ .ext-strict .ext-ie9 .x-fieldset legend.x-fieldset-header {
1365
+ padding-top: 1px;
1366
+ }
1367
+
1316
1368
  .ext-ie .x-fieldset {
1317
1369
  padding-top: 0;
1318
1370
  padding-bottom:10px;
@@ -1380,6 +1432,10 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
1380
1432
  overflow: auto;
1381
1433
  }
1382
1434
 
1435
+ .ext-mac.ext-gecko .x-window-body .x-form-item {
1436
+ overflow:hidden;
1437
+ }
1438
+
1383
1439
  .ext-gecko .x-form-item {
1384
1440
  -moz-outline: none;
1385
1441
  outline: none;
@@ -1416,7 +1472,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
1416
1472
 
1417
1473
  .x-btn button{
1418
1474
  border:0 none;
1419
- background:transparent;
1475
+ background-color:transparent;
1420
1476
  padding-left:3px;
1421
1477
  padding-right:3px;
1422
1478
  cursor:pointer;
@@ -1748,7 +1804,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
1748
1804
  /* height adjustment class */
1749
1805
  .x-btn-as-arrow .x-btn-mc em {
1750
1806
  display:block;
1751
- background:transparent;
1807
+ background-color:transparent;
1752
1808
  padding-bottom:14px;
1753
1809
  }
1754
1810
 
@@ -1807,7 +1863,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
1807
1863
  }
1808
1864
 
1809
1865
  .x-btn-group-mc .x-btn-group-body {
1810
- background:transparent;
1866
+ background-color:transparent;
1811
1867
  border: 0 none;
1812
1868
  }
1813
1869
 
@@ -2032,7 +2088,7 @@ fieldset.x-panel-collapsed .x-fieldset-bwrap {
2032
2088
 
2033
2089
  .x-toolbar-more em.x-btn-arrow {
2034
2090
  display:inline;
2035
- background:transparent;
2091
+ background-color:transparent;
2036
2092
  padding-right:0;
2037
2093
  }
2038
2094
 
@@ -2154,6 +2210,16 @@ div.x-toolbar-no-items {
2154
2210
  white-space: nowrap;
2155
2211
  }
2156
2212
 
2213
+ /* ActionColumn, reduce padding to accommodate 16x16 icons in normal row height */
2214
+ .x-action-col-cell .x-grid3-cell-inner {
2215
+ padding-top: 1px;
2216
+ padding-bottom: 1px;
2217
+ }
2218
+
2219
+ .x-action-col-icon {
2220
+ cursor: pointer;
2221
+ }
2222
+
2157
2223
  .x-grid3-hd-inner {
2158
2224
  position:relative;
2159
2225
  cursor:inherit;
@@ -2431,7 +2497,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
2431
2497
  .x-grid3-col-dd {
2432
2498
  border:0 none;
2433
2499
  padding:0;
2434
- background:transparent;
2500
+ background-color:transparent;
2435
2501
  }
2436
2502
 
2437
2503
  .x-dd-drag-ghost .x-grid3-dd-wrap {
@@ -2659,7 +2725,65 @@ a.x-grid3-hd-btn:hover {
2659
2725
  padding-right:0;
2660
2726
  border-right:1px solid;
2661
2727
  }
2662
- .x-dd-drag-proxy{
2728
+ .x-pivotgrid .x-grid3-header-offset table {
2729
+ width: 100%;
2730
+ border-collapse: collapse;
2731
+ }
2732
+
2733
+ .x-pivotgrid .x-grid3-header-offset table td {
2734
+ padding: 4px 3px 4px 5px;
2735
+ text-align: center;
2736
+ white-space: nowrap;
2737
+ overflow: hidden;
2738
+ text-overflow: ellipsis;
2739
+ font-size: 11px;
2740
+ line-height: 13px;
2741
+ font-family: tahoma;
2742
+ }
2743
+
2744
+ .x-pivotgrid .x-grid3-row-headers {
2745
+ display: block;
2746
+ float: left;
2747
+ }
2748
+
2749
+ .x-pivotgrid .x-grid3-row-headers table {
2750
+ height: 100%;
2751
+ width: 100%;
2752
+ border-collapse: collapse;
2753
+ }
2754
+
2755
+ .x-pivotgrid .x-grid3-row-headers table td {
2756
+ height: 18px;
2757
+ padding: 2px 7px 0 0;
2758
+ text-align: right;
2759
+ text-overflow: ellipsis;
2760
+ font-size: 11px;
2761
+ font-family: tahoma;
2762
+ }
2763
+
2764
+ .ext-gecko .x-pivotgrid .x-grid3-row-headers table td {
2765
+ height: 21px;
2766
+ }
2767
+
2768
+ .x-grid3-header-title {
2769
+ top: 0%;
2770
+ left: 0%;
2771
+ position: absolute;
2772
+ text-align: center;
2773
+ vertical-align: middle;
2774
+ font-family: tahoma;
2775
+ font-size: 11px;
2776
+ padding: auto 1px;
2777
+ display: table-cell;
2778
+ }
2779
+
2780
+ .x-grid3-header-title span {
2781
+ position: absolute;
2782
+ top: 50%;
2783
+ left: 0%;
2784
+ width: 100%;
2785
+ margin-top: -6px;
2786
+ }.x-dd-drag-proxy{
2663
2787
  position:absolute;
2664
2788
  left:0;
2665
2789
  top:0;
@@ -2784,20 +2908,20 @@ input.x-tree-node-cb {
2784
2908
 
2785
2909
  /* No line styles */
2786
2910
  .x-tree-no-lines .x-tree-elbow{
2787
- background:transparent;
2911
+ background-color:transparent;
2788
2912
  }
2789
2913
 
2790
2914
  .x-tree-no-lines .x-tree-elbow-end{
2791
- background:transparent;
2915
+ background-color:transparent;
2792
2916
  }
2793
2917
 
2794
2918
  .x-tree-no-lines .x-tree-elbow-line{
2795
- background:transparent;
2919
+ background-color:transparent;
2796
2920
  }
2797
2921
 
2798
2922
  /* Arrows */
2799
2923
  .x-tree-arrows .x-tree-elbow{
2800
- background:transparent;
2924
+ background-color:transparent;
2801
2925
  }
2802
2926
 
2803
2927
  .x-tree-arrows .x-tree-elbow-plus{
@@ -2809,7 +2933,7 @@ input.x-tree-node-cb {
2809
2933
  }
2810
2934
 
2811
2935
  .x-tree-arrows .x-tree-elbow-end{
2812
- background:transparent;
2936
+ background-color:transparent;
2813
2937
  }
2814
2938
 
2815
2939
  .x-tree-arrows .x-tree-elbow-end-plus{
@@ -2821,7 +2945,7 @@ input.x-tree-node-cb {
2821
2945
  }
2822
2946
 
2823
2947
  .x-tree-arrows .x-tree-elbow-line{
2824
- background:transparent;
2948
+ background-color:transparent;
2825
2949
  }
2826
2950
 
2827
2951
  .x-tree-arrows .x-tree-ec-over .x-tree-elbow-plus{
@@ -2882,7 +3006,7 @@ input.x-tree-node-cb {
2882
3006
  }
2883
3007
 
2884
3008
  .x-tree-node .x-tree-node-inline-icon{
2885
- background:transparent;
3009
+ background-color:transparent;
2886
3010
  }
2887
3011
 
2888
3012
  .x-tree-node a:hover, .x-dd-drag-ghost a:hover{
@@ -3356,7 +3480,7 @@ td.x-date-mp-sep {
3356
3480
 
3357
3481
  .x-menu-list{
3358
3482
  padding: 2px;
3359
- background:transparent;
3483
+ background-color:transparent;
3360
3484
  border:0 none;
3361
3485
  overflow:hidden;
3362
3486
  overflow-y: hidden;
@@ -3478,7 +3602,7 @@ a.x-menu-item {
3478
3602
  }
3479
3603
 
3480
3604
  .x-menu-group-item .x-menu-item-icon{
3481
- background: transparent;
3605
+ background-color: transparent;
3482
3606
  }
3483
3607
 
3484
3608
  .x-menu-item-checked .x-menu-group-item .x-menu-item-icon{
@@ -3524,6 +3648,13 @@ a.x-menu-item {
3524
3648
  height: 1px;
3525
3649
  }
3526
3650
 
3651
+ /*
3652
+ * Fixes an issue with "fat" separators in webkit
3653
+ */
3654
+ .ext-webkit .x-menu-sep{
3655
+ height: 1px;
3656
+ }
3657
+
3527
3658
  /*
3528
3659
  * Ugly mess to remove the white border under the picker
3529
3660
  */
@@ -3722,7 +3853,7 @@ a.x-menu-item {
3722
3853
  .x-panel-tl .x-panel-header {
3723
3854
  padding:5px 0 4px 0;
3724
3855
  border:0 none;
3725
- background:transparent;
3856
+ background:transparent no-repeat;
3726
3857
  }
3727
3858
 
3728
3859
  .x-panel-tl .x-panel-icon, .x-window-tl .x-panel-icon {
@@ -3795,7 +3926,7 @@ a.x-menu-item {
3795
3926
  }
3796
3927
 
3797
3928
  .x-panel-mc .x-panel-body {
3798
- background:transparent;
3929
+ background-color:transparent;
3799
3930
  border: 0 none;
3800
3931
  }
3801
3932
 
@@ -3933,6 +4064,22 @@ a.x-menu-item {
3933
4064
  background-position:-15px -90px;
3934
4065
  }
3935
4066
 
4067
+ .x-tool-prev {
4068
+ background-position:0 -105px;
4069
+ }
4070
+
4071
+ .x-tool-prev-over {
4072
+ background-position:-15px -105px;
4073
+ }
4074
+
4075
+ .x-tool-next {
4076
+ background-position:0 -120px;
4077
+ }
4078
+
4079
+ .x-tool-next-over {
4080
+ background-position:-15px -120px;
4081
+ }
4082
+
3936
4083
  .x-tool-pin {
3937
4084
  background-position:0 -135px;
3938
4085
  }
@@ -3965,14 +4112,6 @@ a.x-menu-item {
3965
4112
  background-position:-15px -180px;
3966
4113
  }
3967
4114
 
3968
- .x-tool-up {
3969
- background-position:0 -210px;
3970
- }
3971
-
3972
- .x-tool-up-over {
3973
- background-position:-15px -210px;
3974
- }
3975
-
3976
4115
  .x-tool-down {
3977
4116
  background-position:0 -195px;
3978
4117
  }
@@ -3981,20 +4120,20 @@ a.x-menu-item {
3981
4120
  background-position:-15px -195px;
3982
4121
  }
3983
4122
 
3984
- .x-tool-refresh {
3985
- background-position:0 -225px;
4123
+ .x-tool-up {
4124
+ background-position:0 -210px;
3986
4125
  }
3987
4126
 
3988
- .x-tool-refresh-over {
3989
- background-position:-15px -225px;
4127
+ .x-tool-up-over {
4128
+ background-position:-15px -210px;
3990
4129
  }
3991
4130
 
3992
- .x-tool-minus {
3993
- background-position:0 -255px;
4131
+ .x-tool-refresh {
4132
+ background-position:0 -225px;
3994
4133
  }
3995
4134
 
3996
- .x-tool-minus-over {
3997
- background-position:-15px -255px;
4135
+ .x-tool-refresh-over {
4136
+ background-position:-15px -225px;
3998
4137
  }
3999
4138
 
4000
4139
  .x-tool-plus {
@@ -4005,6 +4144,14 @@ a.x-menu-item {
4005
4144
  background-position:-15px -240px;
4006
4145
  }
4007
4146
 
4147
+ .x-tool-minus {
4148
+ background-position:0 -255px;
4149
+ }
4150
+
4151
+ .x-tool-minus-over {
4152
+ background-position:-15px -255px;
4153
+ }
4154
+
4008
4155
  .x-tool-search {
4009
4156
  background-position:0 -270px;
4010
4157
  }
@@ -4037,6 +4184,38 @@ a.x-menu-item {
4037
4184
  background-position:-15px -315px;
4038
4185
  }
4039
4186
 
4187
+ .x-tool-expand {
4188
+ background-position:0 -330px;
4189
+ }
4190
+
4191
+ .x-tool-expand-over {
4192
+ background-position:-15px -330px;
4193
+ }
4194
+
4195
+ .x-tool-collapse {
4196
+ background-position:0 -345px;
4197
+ }
4198
+
4199
+ .x-tool-collapse-over {
4200
+ background-position:-15px -345px;
4201
+ }
4202
+
4203
+ .x-tool-resize {
4204
+ background-position:0 -360px;
4205
+ }
4206
+
4207
+ .x-tool-resize-over {
4208
+ background-position:-15px -360px;
4209
+ }
4210
+
4211
+ .x-tool-move {
4212
+ background-position:0 -375px;
4213
+ }
4214
+
4215
+ .x-tool-move-over {
4216
+ background-position:-15px -375px;
4217
+ }
4218
+
4040
4219
  /* Ghosting */
4041
4220
  .x-panel-ghost {
4042
4221
  z-index:12000;
@@ -4390,7 +4569,7 @@ a.x-menu-item {
4390
4569
  }
4391
4570
 
4392
4571
  .x-window-body {
4393
- background:transparent;
4572
+ background-color:transparent;
4394
4573
  }
4395
4574
 
4396
4575
  .x-panel-ghost .x-window-tl {
@@ -4667,7 +4846,7 @@ body.ext-ie6.x-body-masked .x-window select {
4667
4846
 
4668
4847
  .x-tool-expand-east, .x-tool-expand-west {
4669
4848
  float:none;
4670
- margin:3px auto;
4849
+ margin:3px 2px;
4671
4850
  }
4672
4851
 
4673
4852
  .x-accordion-hd .x-tool-toggle {
@@ -4831,14 +5010,14 @@ body.ext-ie6.x-body-masked .x-window select {
4831
5010
  border:0 none;
4832
5011
  width:5px !important;
4833
5012
  padding:0;
4834
- background:transparent;
5013
+ background-color:transparent;
4835
5014
  }
4836
5015
 
4837
5016
  .x-layout-cmini-north, .x-layout-cmini-south {
4838
5017
  border:0 none;
4839
5018
  height:5px !important;
4840
5019
  padding:0;
4841
- background:transparent;
5020
+ background-color:transparent;
4842
5021
  }
4843
5022
 
4844
5023
  .x-viewport, .x-viewport body {
@@ -5133,12 +5312,9 @@ body.ext-ie6.x-body-masked .x-window select {
5133
5312
  height:32px;
5134
5313
  }
5135
5314
 
5136
- .ext-ie .x-window-dlg .ext-mb-icon {
5137
- width:44px; /* 3px IE margin issue */
5138
- }
5139
-
5140
5315
  .x-window-dlg .x-dlg-icon .ext-mb-content{
5141
- zoom: 1; margin-left: 47px;
5316
+ zoom: 1;
5317
+ margin-left: 47px;
5142
5318
  }
5143
5319
 
5144
5320
  .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 +5365,11 @@ body.ext-ie6.x-body-masked .x-window select {
5189
5365
  background-color: #deecfd;
5190
5366
  }
5191
5367
 
5368
+ /*
5192
5369
  .x-color-palette em:hover, .x-color-palette span:hover{
5193
5370
  background-color: #deecfd;
5194
5371
  }
5372
+ */
5195
5373
 
5196
5374
  .x-color-palette em {
5197
5375
  border-color:#aca899;
@@ -5608,7 +5786,7 @@ ul.x-tab-strip-bottom{
5608
5786
  }
5609
5787
 
5610
5788
  .x-item-disabled .x-tbar-loading{
5611
- background-image: url(../images/default/grid/loading.gif) !important;
5789
+ background-image: url(../images/default/grid/refresh-disabled.gif) !important;
5612
5790
  }
5613
5791
 
5614
5792
  .x-item-disabled .x-tbar-page-first{
@@ -5779,6 +5957,10 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
5779
5957
  background-image:url(../images/default/grid/col-move-bottom.gif);
5780
5958
  }
5781
5959
 
5960
+ td.grid-hd-group-cell {
5961
+ background: url(../images/default/grid/grid3-hrow.gif) repeat-x bottom;
5962
+ }
5963
+
5782
5964
  .x-grid3-row-selected {
5783
5965
  background-color: #dfe8f6 !important;
5784
5966
  background-image: none;
@@ -5936,7 +6118,29 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
5936
6118
 
5937
6119
  .x-grid-with-col-lines .x-grid3-row-selected {
5938
6120
  border-top-color:#a3bae9;
5939
- }.x-dd-drag-ghost{
6121
+ }.x-pivotgrid .x-grid3-header-offset table td {
6122
+ background: url(../images/default/grid/grid3-hrow.gif) repeat-x 50% 100%;
6123
+ border-left: 1px solid;
6124
+ border-right: 1px solid;
6125
+ border-left-color: #EEE;
6126
+ border-right-color: #D0D0D0;
6127
+ }
6128
+
6129
+ .x-pivotgrid .x-grid3-row-headers {
6130
+ background-color: #f9f9f9;
6131
+ }
6132
+
6133
+ .x-pivotgrid .x-grid3-row-headers table td {
6134
+ background: #EEE url(../images/default/grid/grid3-rowheader.gif) repeat-x left top;
6135
+ border-left: 1px solid;
6136
+ border-right: 1px solid;
6137
+ border-left-color: #EEE;
6138
+ border-right-color: #D0D0D0;
6139
+ border-bottom: 1px solid;
6140
+ border-bottom-color: #D0D0D0;
6141
+ height: 18px;
6142
+ }
6143
+ .x-dd-drag-ghost{
5940
6144
  color:#000;
5941
6145
  font: normal 11px arial, helvetica, sans-serif;
5942
6146
  border-color: #ddd #bbb #bbb #ddd;