To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / public / stylesheets / jstoolbar.css @ 988:7c94a1b38c2f

History | View | Annotate | Download (2.13 KB)

1
.jstEditor {
2
    padding-left: 0px;
3
}
4
.jstEditor textarea, .jstEditor iframe {
5
    margin: 0;
6
}
7

    
8
.jstHandle {
9
    height: 10px;
10
    font-size: 0.1em;
11
    cursor: s-resize;
12
    /*background: transparent url(img/resizer.png) no-repeat 45% 50%;*/
13
}
14

    
15
.jstElements {
16
    padding: 3px 3px 3px 0;
17
}
18

    
19
.jstElements button {
20
    margin-right: 4px;
21
    width : 24px;
22
    height: 24px;
23
    padding: 4px;
24
    border-style: solid;
25
    border-width: 1px;
26
    border-color: #ddd;
27
    background-color : #f7f7f7;
28
    background-position : 50% 50%;
29
    background-repeat: no-repeat;
30
}
31
.jstElements button:hover {
32
    border-color: #bbb;
33
  background-color: #e5e5e5;
34
}
35
.jstElements button span {
36
    display : none;        
37
}
38
.jstElements span {
39
    display : inline;
40
}
41

    
42
.jstSpacer {
43
    width : 0px;
44
    font-size: 1px;
45
    margin-right: 6px;
46
}
47

    
48
.jstElements .help { float: right; margin-right: 0.5em; padding-top: 8px; font-size: 0.9em; }
49
.jstElements .help a {padding: 2px 0 2px 20px; background: url(../images/help.png) no-repeat 0 50%;}
50

    
51
/* Buttons
52
-------------------------------------------------------- */
53
.jstb_strong {
54
    background-image: url(../images/jstoolbar/bt_strong.png);
55
}
56
.jstb_em {
57
    background-image: url(../images/jstoolbar/bt_em.png);
58
}
59
.jstb_ins {
60
    background-image: url(../images/jstoolbar/bt_ins.png);
61
}
62
.jstb_del {
63
    background-image: url(../images/jstoolbar/bt_del.png);
64
}
65
.jstb_code {
66
    background-image: url(../images/jstoolbar/bt_code.png);
67
}
68
.jstb_h1 {
69
    background-image: url(../images/jstoolbar/bt_h1.png);
70
}
71
.jstb_h2 {
72
    background-image: url(../images/jstoolbar/bt_h2.png);
73
}
74
.jstb_h3 {
75
    background-image: url(../images/jstoolbar/bt_h3.png);
76
}
77
.jstb_ul {
78
    background-image: url(../images/jstoolbar/bt_ul.png);
79
}
80
.jstb_ol {
81
    background-image: url(../images/jstoolbar/bt_ol.png);
82
}
83
.jstb_bq {
84
    background-image: url(../images/jstoolbar/bt_bq.png);
85
}
86
.jstb_unbq {
87
    background-image: url(../images/jstoolbar/bt_bq_remove.png);
88
}
89
.jstb_pre {
90
    background-image: url(../images/jstoolbar/bt_pre.png);
91
}
92
.jstb_link {
93
    background-image: url(../images/jstoolbar/bt_link.png);
94
}
95
.jstb_img {
96
    background-image: url(../images/jstoolbar/bt_img.png);
97
}