FreeDATA/gui/src/styles.css

39 lines
607 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;
}