TeaWeb/shared/css/static/ts/tab.scss

85 lines
1.3 KiB
SCSS
Raw Normal View History

2018-02-27 17:20:49 +01:00
x-tab { display:none }
x-content {
width: 100%;
}
2018-02-27 17:20:49 +01:00
.tab {
padding: 2px;
height: 100%;
flex-direction: column;
display: flex;
flex-grow: 1;
2018-02-27 17:20:49 +01:00
}
.tab div * {
vertical-align: middle;
}
.tab .tab-content {
Implemented the Material Design and fixed some bugs (#33) * cleaned up some files * Fundamental style update * Redesigned some style * fixed hostbanner popup * Removed old identity stuff * fixed close listener * Fixed changelog date * fixed release chat icons * fixed url * Fixed hostbanner * Uploaded missing images * Improved update handling * Improved script files * Fixed loading error and icon error * fixed Yes/No modal * Fixed loader issues with MS Edge * fixed modal style bug * Fixed control bar overflow for small devices * Improved error handling on identity creation * Logging generate error to terminal * fixed possible php error * fixed some possible loading errors when other files have'nt been already loaded. * removed debug message * Changed emsrcypten flags * Improved codec error handling * removed webassembly as required dependency * Improved and fixed channel tree issues * Improved the sliders * Removed unneeded files * fixed loader versions cache * second slight performance improved (dont animate elements anymore if they are not shown) * Fixed query visibility setting * not showing useless client infos for query clients * Added an auto reconnect system * Added a canceled message and increased reconnect interval * removed implemented todo * fixed repetitive channel names * Reworked the channel tree selected lines * Fixed channel tree names * Fixed name alignment * fixed the native client * added min width to the server select groups to avoid a disappearing effect on shrink * fixed bugged downloaded icons
2019-02-17 16:08:10 +01:00
min-height: 200px;
2018-02-27 17:20:49 +01:00
border-color: #6f6f6f;
border-radius: 0px 2px 2px 2px;
border-style: solid;
overflow-y: auto;
2018-09-30 21:50:59 +02:00
height: 100%;
2018-02-27 17:20:49 +01:00
padding: 2px;
display: flex;
flex-grow: 1;
2018-02-27 17:20:49 +01:00
}
/*
#chat .tab-content {
flex-wrap: wrap;
display: flex;
align-items: flex-start;
height: auto;
}
*/
.tab .tab-header {
2018-08-11 15:02:11 +02:00
font-family: Arial;
font-size: 12px;
/*white-space: pre;*/
line-height: 1;
2018-02-27 17:20:49 +01:00
max-width: 100%;
overflow: auto;
/*height: 24px;*/
overflow-y: hidden;
white-space: nowrap;
margin-bottom: -1px;
display: flex;
user-select: none;
2018-04-16 20:38:35 +02:00
flex-direction: row;
justify-content: stretch;
width: 100%;
flex-grow: 0;
flex-shrink: 0;
2018-02-27 17:20:49 +01:00
}
.tab .tab-header .entry {
background: #5f5f5f5f;
display: inline-block;
border: #6f6f6f;
border-width: 1px;
border-style: solid;
border-radius: 2px 2px 0px 0px;
vertical-align: middle;
padding: 2px;
padding-left: 5px;
padding-right: 5px;
cursor: pointer;
2018-04-16 20:38:35 +02:00
flex-grow: 1;
2018-02-27 17:20:49 +01:00
}
2018-03-07 19:06:52 +01:00
.tab .tab-content-invisible {
display: none;
}
2018-09-30 21:50:59 +02:00
.tab .tab-header .entry.selected {
background: #11111111;
2018-02-27 17:20:49 +01:00
}