-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsow.css
94 lines (93 loc) · 1.57 KB
/
jsow.css
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
88
89
90
91
92
93
94
.widget
{
float:left;
position:absolute;
background:#dedede bottom right no-repeat;
padding:0;
border-radius:9px 9px 6px 6px;
border:1px solid black;
box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.5);
min-height:20px;
}
.widget .widgetHeader
{
color:black;
width:100%;
position:absolute;
background: url("./images/header.png") repeat-x;
max-height:20px;
height:20px;
border-radius:10px 10px 0 0;
border-color:#fff;
/*text-align:center;*/
font-size:12px;
font-weight:bold;
text-shadow:0px -1px 1px white;
cursor:inherit;
overflow:hidden;
}
.widget .headerButtons
{
margin-top:2px;
}
.widget .headerRight
{
float:right;
width:30px;
height:20px;
background:url("./images/headerRight.png");
position:absolute;
top :0;
right:0;
}
.widget .widgetContent
{
overflow:hidden;
margin:10px;
margin-top:26px;
}
.widget .widgetMinimize
{
width:15px;
height:15px;
line-height:12px;
float:left;
background:url("./images/minimize.png") no-repeat;
margin-left:3px;
}
.widget .widgetMinimize:hover
{
background:url("./images/minimizeHover.png") no-repeat;
}
.widget .widgetClose
{
width:15px;
height:15px;
line-height:12px;
float:left;
background:url("./images/close.png") no-repeat;
margin-left:3px;
}
.widget .widgetClose:hover
{
background:url("./images/closeHover.png") no-repeat;
}
.widget .widgetTitle
{
white-space: nowrap;
/*text-align:center;*/
overflow:hidden;
text-overflow:ellipsis;
max-height: inherit;
padding-left:5px;
margin-right:10px;
}
.widget .widgetContent .sizeHelper
{
display:inline-block;
margin:0;
}
.widgetBackground
{
background:#ddd ;
}