-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (58 loc) · 1.06 KB
/
style.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
body {
font-family: Helvetica, Arial, Sans-Serif;
background-color: #F8F1F6;
margin: 0em;
padding: 0em;
}
.myWindowList {
}
.windowClass {
padding: 0em 0em 0.2em 0em;
}
.myWindowTitle {
background-color: powderblue;
padding: 0.5em;
}
.tabClass {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.tabClass.discarded {
opacity:0.7;
}
.tabClass.active {
font-weight: bold;
}
.tabClass button {
border: none;
padding: 0;
text-align: center;
text-decoration: none;
background-position: center;
background-repeat: no-repeat;
transform: scale(.5);
width: 40px;
height: 40px;
}
.tabClass.active button {
background-image: url('/icon48.png');
pointer-events: none;
}
.tabClass.inactive button {
background-image: url('/icon48.png');
opacity:0.5;
}
.tabClass.discarded button {
background-image: url('icon48empty2.png');
pointer-events: none;
}
.tabClickToOpenLink {
text-decoration: none;
color: inherit;
cursor: pointer;
padding: 0em 0em 0em 0em;
margin: 0em 0em 0em 0em;
position: relative;
bottom: -6px;
}