blob: f33ea53c35885950288b211c2973c9747145ee81 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
.ytoolbar{
background-color: #ebeadb;
border: 1px solid #cbc7b8;
display: block;
padding:2px;
}
.mso .ytoolbar, .ygrid-mso .ytoolbar{
border: 0px none;
background: url(./images/default/grid/mso-hd.gif);
}
.ytoolbar td,.ytoolbar span,.ytoolbar input,.ytoolbar div{
white-space: nowrap;
font:normal 8pt arial,helvetica;
}
.ytoolbar .ytb-button-disabled .ytb-button-inner{
color:gray;
cursor:default;
}
/*
Default button class is icon only. Add a class with a background-image property
to your toolbar button
*/
.ytoolbar .ytb-button-inner{
background-position: center;
background-repeat: no-repeat;
display: block;
height: 16px;
width: 16px;
cursor:pointer;
white-space: nowrap;
}
/*
Button class for icon and text. Add this class and a class with a background-image
to your toolbar button for both text and icon
*/
.ytoolbar .ytb-text-icon{
background-position: 0px 0px;
background-repeat: no-repeat;
padding-left:18px;
padding-top:1px;
width:auto;
display:block;
}
/*
Button class for a button with only text. Add this class
to your toolbar button for a just text button
*/
.ytoolbar .ytb-text-only{
background:none;
padding-left:0px;
padding-top:1px;
width:auto;
display:block;
}
.ytoolbar .ytb-text{
padding:2px;
}
.ytoolbar .ytb-button{
padding:2px 3px;
display:block;
}
.ytoolbar .ytb-button-over{
background:#c3d3ed url(./images/default/toolbar/btn-over-bg.gif) repeat-x;
border:1px solid #6593cf;
padding:1px 2px;
}
.ytoolbar .ytb-sep {
background-image: url(./images/default/grid/grid-split.gif);
background-position: center;
background-repeat: no-repeat;
display: block;
font-size: 1px;
height: 16px;
width:4px;
overflow: hidden;
cursor:default;
margin: 0px 2px 0px;
border:0px;
}
.mso .ytoolbar .ytb-sep, .ygrid-mso .ytoolbar .ytb-sep{
background-image: url(./images/default/grid/grid-blue-split.gif);
}
|