TeaWeb/shared/css/static/frame/SelectInfo.scss

119 lines
1.6 KiB
SCSS
Raw Normal View History

2019-03-17 12:39:21 +01:00
.select_info_table {
tr {
td {
&:nth-child(1) {
font-weight: bold;
padding-right: 5px;
//min-width: max(35%, 20px);
}
2018-09-25 17:39:38 +02:00
2019-03-17 12:39:21 +01:00
&:nth-child(2) {
//min-width: max(75%, 40px);
word-break: break-word;
}
}
2019-03-07 15:30:53 +01:00
}
2019-04-15 15:33:51 +02:00
.reserved-slots {
display: inline;
color: red;
}
2018-09-25 17:39:38 +02:00
}
.select_server {
2018-09-25 19:47:08 +02:00
height: 100%;
2018-09-25 17:39:38 +02:00
display: inline-flex;
2018-09-25 19:47:08 +02:00
flex-direction: column;
2018-09-25 17:39:38 +02:00
justify-content: space-between;
2018-11-04 00:39:29 +01:00
flex-grow: 1;
2018-09-25 17:39:38 +02:00
.button-update {
width: 100%;
2018-09-25 19:47:08 +02:00
&:disabled {
pointer-events: none;
}
2018-09-25 17:39:38 +02:00
}
.container {
max-height: 100%;
display: flex;
flex-direction: column;
2019-03-07 15:30:53 +01:00
padding-right: 0;
padding-left: 0;
}
}
.select_info {
display: flex;
flex-direction: column;
justify-content: stretch;
width: 100%;
2019-03-07 15:30:53 +01:00
> .close {
z-index: 500;
display: none;
position: absolute;
right: 5px;
top: 5px;
}
> div {
width: 100%;
}
.container-banner {
2019-03-17 12:15:39 +01:00
position: relative;
flex-grow: 1;
flex-shrink: 2;
2019-04-04 21:47:52 +02:00
max-height: 300px;
2019-04-04 21:47:52 +02:00
min-height: 0;
display: flex;
justify-content: stretch;
overflow: hidden;
&.disabled {
display: none;
margin-bottom: 5px;
}
}
.container-select-info {
2019-01-20 18:43:14 +01:00
padding: 2px;
flex-grow: 1;
flex-shrink: 1;
display: flex;
flex-direction: column;
justify-content: stretch;
2018-11-04 00:39:29 +01:00
.select_server {
> div {
flex-grow: 1;
}
}
}
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
.client-avatar {
> div {
flex-grow: 1;
flex-shrink: 1;
> img {
max-width: 100%;
max-height: 100%;
}
}
}
2019-03-17 12:15:39 +01:00
.button-browser-info {
vertical-align: bottom;
cursor: pointer;
&:hover {
background-color: gray;
}
}
2018-09-25 17:39:38 +02:00
}