blob: a304fa2a57e4c6c64b9d8d852f513f832eaa12c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
.v-richtextarea {
border: 1px solid #aaa;
overflow: hidden;
}
.v-richtextarea .gwt-RichTextArea {
background: #fff;
border: none;
}
.v-richtextarea .gwt-RichTextToolbar {
white-space: nowrap;
background: #959595 url(img/richtext-toolbar-bg.png) repeat-x 0 -42px;
border-bottom: 1px solid #7d7d7d;
padding: 2px;
overflow: hidden;
}
.v-richtextarea .gwt-RichTextToolbar-top {
padding-bottom: 1px;
overflow: hidden;
white-space: normal;
}
.v-richtextarea .gwt-RichTextToolbar-bottom {
clear: left;
overflow: hidden;
white-space: nowrap;
}
.v-richtextarea .gwt-RichTextToolbar .gwt-ToggleButton,
.v-richtextarea .gwt-RichTextToolbar .gwt-PushButton {
float: left;
display: inline;
width: 22px;
height: 21px;
overflow: hidden;
background: transparent url(img/richtext-toolbar-bg.png) repeat-x;
cursor: pointer;
margin-right: 2px;
text-align: center;
}
.v-richtextarea .gwt-RichTextToolbar .gwt-ToggleButton-down,
.v-richtextarea .gwt-RichTextToolbar .gwt-PushButton-down,
.v-richtextarea .gwt-RichTextToolbar .gwt-ToggleButton-down-hovering,
.v-richtextarea .gwt-RichTextToolbar .gwt-PushButton-down-hovering {
background-position: 0 -21px;
}
.v-richtextarea .gwt-RichTextToolbar .gwt-ToggleButton img,
.v-richtextarea .gwt-RichTextToolbar .gwt-PushButton img {
}
.v-richtextarea .gwt-RichTextToolbar .gwt-ListBox {
width: 24.5%;
margin-right: 2px;
}
.v-richtextarea-readonly {
border: none;
}
|