source: Dev/branches/rest-dojo-ui/client/dojox/layout/resources/GridContainer.css @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 1.2 KB
Line 
1@import url("../../mdnd/resources/dnd.css");
2.dj_ie6 .gridContainer *{
3        zoom:1;
4}
5
6.gridContainer{
7        display:block; 
8        position:relative;
9        background:#FFF;       
10        margin:0;       
11        width:100%;
12        /*height:1%;*/ /*Bug focus with IE6/7)*/
13        height:auto;
14        overflow-y:auto;
15        overflow-x:hidden !important;
16}
17       
18.gridContainerTable{
19        width:100%;
20        border:1px solid #BFBFBF;
21}
22
23.gridContainerTable tbody, .gridContainerTable tr{
24        height:100%;
25}
26
27.gridContainerZone{
28        vertical-align:top;     
29        background-color:#FDFDFD;       
30        height:100%;
31}
32
33.gridContainerZone .serviceWidgetTitleText h2{
34        position:relative;
35}
36
37.gridContainerGrip{
38        cursor:default;
39        position:absolute;
40        top:0; 
41        width:10px;     
42        padding:0;     
43        margin:0;
44        background-image:url(icons/pixel.gif);
45        height:100%;
46}
47       
48.gridContainerGripShow{
49        cursor:e-resize;       
50        position:absolute;     
51        top:0;
52        width:10px;     
53        padding:0;     
54        margin:0;       
55        background-image:url(icons/gridcontainer_grip.gif);
56        height:100%;
57}
58
59.dropIndicator{
60        border:2px dashed #BFBFBF;
61}
62
63.dropIndicator > div{
64        background-color:#FFF;
65}
66
67.dj_ie6 .dropIndicator,
68.dj_ie6 .dojoxPortlet .dijitContentPane,
69.dj_ie6 .dojoxPortlet, .dj_ie6 .dojoxPortlet.dijitTitlePane{
70        margin: 10px;
71}
72.gridContainerZone > *{
73        margin: 10px !important;
74}
Note: See TracBrowser for help on using the repository browser.