92 lines
1.5 KiB
SCSS
92 lines
1.5 KiB
SCSS
x-tab { display:none }
|
|
|
|
.tab {
|
|
padding: 2px;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
|
|
min-height: 220px; /* min the header */
|
|
}
|
|
|
|
.tab div * {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.tab .tab-content {
|
|
min-height: 200px;
|
|
|
|
border-radius: 0 2px 2px 2px;
|
|
border: solid #6f6f6f;
|
|
overflow-y: hidden;
|
|
height: 100%;
|
|
padding: 2px;
|
|
|
|
display: flex;
|
|
flex-grow: 1;
|
|
|
|
x-content {
|
|
min-height: 0;
|
|
overflow-y: auto;
|
|
|
|
width: 100%;
|
|
}
|
|
|
|
@-moz-document url-prefix() {
|
|
x-content {
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
#chat .tab-content {
|
|
flex-wrap: wrap;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
height: auto;
|
|
}
|
|
*/
|
|
|
|
.tab .tab-header {
|
|
font-family: Arial, serif;
|
|
font-size: 12px;
|
|
/*white-space: pre;*/
|
|
line-height: 1;
|
|
|
|
max-width: 100%;
|
|
overflow: auto;
|
|
/*height: 24px;*/
|
|
overflow-y: hidden;
|
|
white-space: nowrap;
|
|
margin-bottom: -1px;
|
|
display: flex;
|
|
user-select: none;
|
|
|
|
flex-direction: row;
|
|
justify-content: stretch;
|
|
width: 100%;
|
|
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.tab .tab-header .entry {
|
|
background: #5f5f5f5f;
|
|
display: inline-block;
|
|
border: 1px solid #6f6f6f;
|
|
border-radius: 2px 2px 0px 0px;
|
|
vertical-align: middle;
|
|
padding: 2px 5px;
|
|
cursor: pointer;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.tab .tab-content-invisible {
|
|
display: none;
|
|
}
|
|
|
|
.tab .tab-header .entry.selected {
|
|
background: #11111111;
|
|
} |