FreeDATA/gui/src/styles.css

67 lines
988 B
CSS
Raw Normal View History

/* disable scrolling in main window */
body {
padding-right: 0px !important;
overflow-y: hidden !important;
2022-04-03 13:26:24 +00:00
overflow-x: hidden !important;
}
/*Progress bars with centered text*/
.progress {
position: relative;
}
.progress span {
position: absolute;
display: block;
width: 100%;
color: black;
}
2022-04-03 13:26:24 +00:00
/* smooth scrolling */
html {
scroll-behavior: smooth;
}
2022-04-03 13:26:24 +00:00
/* hide scrollbar in callsign list */
#callsignlist::-webkit-scrollbar {
display: none;
}
2022-11-08 18:53:14 +00:00
#chatModuleMessage {
resize: none;
border-radius:15px;
}
2022-11-08 18:53:14 +00:00
#expand_textarea_label{
border: 0;
padding: 1px;
}
2022-11-10 10:27:52 +00:00
2022-11-18 09:47:09 +00:00
/* 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;
2022-11-10 10:27:52 +00:00
}
2022-11-18 09:47:09 +00:00
th {
background:#eee;
}
2022-11-10 12:02:17 +00:00
/* ------ emoji picker customization --------- */
.picker {
border-radius: 10px:
}