forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCloseButton.css
More file actions
62 lines (52 loc) · 967 Bytes
/
CloseButton.css
File metadata and controls
62 lines (52 loc) · 967 Bytes
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
.close-btn path {
fill: var(--theme-body-color);
}
.close-btn .close {
cursor: pointer;
width: 12px;
height: 12px;
padding: 2px;
text-align: center;
margin-top: 2px;
line-height: 5px;
transition: all 0.25s easeinout;
}
.close-btn .close svg {
width: 6px;
}
.close-btn .close:hover {
background: var(--theme-selection-background);
border-radius: 2px;
}
.close-btn .close:hover path {
fill: white;
}
.close-btn-big {
padding: 13px;
width: 40px;
height: 40px;
}
.close-btn-big path {
fill: var(--theme-body-color);
}
.close-btn-big .close {
cursor: pointer;
display: inline-block;
padding: 2px;
text-align: center;
transition: all 0.25s easeinout;
line-height: 100%;
width: 16px;
height: 16px;
}
.close-btn-big .close svg {
width: 9px;
height: 9px;
}
.close-btn-big .close:hover {
background: var(--theme-selection-background);
border-radius: 2px;
}
.close-btn-big .close:hover path {
fill: white;
}