42 lines
No EOL
623 B
SCSS
42 lines
No EOL
623 B
SCSS
#tab-bar-container {
|
|
min-height: 30px;
|
|
}
|
|
|
|
.tabs {
|
|
display: flex;
|
|
}
|
|
|
|
.tab {
|
|
-moz-appearance: toolbar;
|
|
width: 200px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
position: relative;
|
|
background: #f9f9f9;
|
|
border: 1px solid black;
|
|
margin-right: -1px;
|
|
border-bottom: 1px solid transparent;
|
|
color: #000;
|
|
|
|
.tab-name {
|
|
line-height: 30px;
|
|
}
|
|
|
|
.tab-close {
|
|
position: absolute;
|
|
left: 6px;
|
|
top: 7px;
|
|
width: 16px;
|
|
height: 16px;
|
|
text-align: center;
|
|
line-height: 16px;
|
|
display: none;
|
|
}
|
|
|
|
&:hover:not(:first-child) .tab-close {
|
|
display: block;
|
|
}
|
|
} |