blob: d7d1bcd080803788a589f966d24eca2a7555385c (
plain) (
blame)
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
|
.tab-bar {
background-color: @tab-bar-background-color;
border-bottom: 1px solid @base-border-color;
.tab {
color: @text-color;
height: @tab-height;
line-height: @tab-height;
font-size: @font-size;
border-right: 1px solid @tab-border-color;
background-color: @tab-background-color;
&.active {
color: @text-color-selected;
background-color: @tab-background-color-active;
}
&.modified:not(:hover) .close-icon {
top: 50%;
right: @component-padding + 4px; // 4px -> half of icon size
margin-top: -3px;
border-color: @text-color-info;
}
&.modified:hover .close-icon {
color: currentColor;
}
.close-icon:hover {
color: @text-color-error;
}
&.active .close-icon:hover {
color: @text-color-error;
}
&.is-dragging {
background: darken(@tab-background-color, 10%);
border-color: transparent;
opacity: .5;
& .close-icon {
visibility: hidden;
}
}
}
}
|