FreeDATA/gui/src/styles.css
2022-11-18 10:47:09 +01:00

67 lines
988 B
CSS

/* disable scrolling in main window */
body {
padding-right: 0px !important;
overflow-y: hidden !important;
overflow-x: hidden !important;
}
/*Progress bars with centered text*/
.progress {
position: relative;
}
.progress span {
position: absolute;
display: block;
width: 100%;
color: black;
}
/* smooth scrolling */
html {
scroll-behavior: smooth;
}
/* hide scrollbar in callsign list */
#callsignlist::-webkit-scrollbar {
display: none;
}
#chatModuleMessage {
resize: none;
border-radius:15px;
}
#expand_textarea_label{
border: 0;
padding: 1px;
}
/* fixed border table header */
.tableFixHead {
overflow: auto;
height: 90vh;
}
.tableFixHead thead th {
position: sticky;
top: 0;
z-index: 1;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px 16px;
}
th {
background:#eee;
}
/* ------ emoji picker customization --------- */
.picker {
border-radius: 10px:
}