2013-09-01 19:41:39 +00:00
|
|
|
.tabs {
|
2013-09-13 22:57:57 +00:00
|
|
|
background: @faded;
|
2013-09-01 19:41:39 +00:00
|
|
|
padding: 2px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 300px;
|
|
|
|
padding: 0px 4px;
|
|
|
|
margin-right: 3px;
|
2013-09-13 22:57:57 +00:00
|
|
|
background: @background;
|
|
|
|
color: fade(@foreground, 50%);
|
2013-09-14 06:59:43 +00:00
|
|
|
padding-bottom: 4px;
|
2013-09-01 19:41:39 +00:00
|
|
|
flex: 0 1 auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2013-09-14 06:59:43 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
transition: width .5s, border-width .5s;
|
2013-09-01 19:41:39 +00:00
|
|
|
|
|
|
|
&.active {
|
2013-09-14 06:59:43 +00:00
|
|
|
padding-bottom: 0px;
|
2013-09-06 07:04:20 +00:00
|
|
|
border-bottom: 4px solid @accent;
|
2013-09-13 22:57:57 +00:00
|
|
|
color: @foreground;
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
|
|
|
|
2013-09-14 06:59:43 +00:00
|
|
|
&.dragging {
|
|
|
|
width: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.hovering {
|
|
|
|
border-color: @faded;
|
|
|
|
border-left-width: 50px;
|
|
|
|
border-left-style: solid;
|
|
|
|
}
|
|
|
|
|
2013-09-01 19:41:39 +00:00
|
|
|
.close {
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: center;
|
2013-09-06 07:04:20 +00:00
|
|
|
color: @accent;
|
2013-09-01 19:41:39 +00:00
|
|
|
position: relative;
|
|
|
|
margin-left: 4px;
|
|
|
|
|
|
|
|
&:hover {
|
2013-09-13 22:57:57 +00:00
|
|
|
color: @foreground;
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|