~cdparra/gelee/trunk

« back to all changes in this revision

Viewing changes to webui/web/extjs/resources/css/structure/box.css

  • Committer: parra
  • Date: 2010-03-15 15:56:56 UTC
  • Revision ID: svn-v4:ac5bba68-f036-4e09-846e-8f32731cc928:trunk/gelee:1448
merged gelee at svn

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Ext JS Library 3.0 RC2
 
3
 * Copyright(c) 2006-2009, Ext JS, LLC.
 
4
 * licensing@extjs.com
 
5
 * 
 
6
 * http://extjs.com/license
 
7
 */
 
8
 
 
9
/*
 
10
 Creates rounded, raised boxes like on the Ext website - the markup isn't pretty:
 
11
  <div class="x-box-blue">
 
12
        <div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>
 
13
        <div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc">
 
14
            <h3>YOUR TITLE HERE (optional)</h3>
 
15
            <div>YOUR CONTENT HERE</div>
 
16
        </div></div></div>
 
17
        <div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div>
 
18
    </div>
 
19
 */
 
20
 
 
21
.x-box-tl {
 
22
        background: transparent no-repeat 0 0;
 
23
    zoom:1;
 
24
}
 
25
 
 
26
.x-box-tc {
 
27
        height: 8px;
 
28
        background: transparent repeat-x 0 0;
 
29
        overflow: hidden;
 
30
}
 
31
 
 
32
.x-box-tr {
 
33
        background: transparent no-repeat right -8px;
 
34
}
 
35
 
 
36
.x-box-ml {
 
37
        background: transparent repeat-y 0;
 
38
        padding-left: 4px;
 
39
        overflow: hidden;
 
40
    zoom:1;
 
41
}
 
42
 
 
43
.x-box-mc {
 
44
        background: repeat-x 0 -16px;
 
45
        padding: 4px 10px;
 
46
}
 
47
 
 
48
.x-box-mc h3 {
 
49
        margin: 0 0 4px 0;
 
50
    zoom:1;
 
51
}
 
52
 
 
53
.x-box-mr {
 
54
        background: transparent repeat-y right;
 
55
        padding-right: 4px;
 
56
        overflow: hidden;
 
57
}
 
58
 
 
59
.x-box-bl {
 
60
        background: transparent no-repeat 0 -16px;
 
61
    zoom:1;
 
62
}
 
63
 
 
64
.x-box-bc {
 
65
        background: transparent repeat-x 0 -8px;
 
66
        height: 8px;
 
67
        overflow: hidden;
 
68
}
 
69
 
 
70
.x-box-br {
 
71
        background: transparent no-repeat right -24px;
 
72
}
 
73
 
 
74
.x-box-tl, .x-box-bl {
 
75
        padding-left: 8px;
 
76
        overflow: hidden;
 
77
}
 
78
 
 
79
.x-box-tr, .x-box-br {
 
80
        padding-right: 8px;
 
81
        overflow: hidden;
 
82
}
 
 
b'\\ No newline at end of file'