linstrom/frontend-reactive/app/styles/util.css

22 lines
574 B
CSS
Raw Normal View History

2024-09-23 07:18:35 +00:00
.hide {
display: none;
}
/* Copied from: https://stackoverflow.com/a/4407335 */
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
2024-09-23 15:09:19 +00:00
user-select: none; /* Safari */
user-select: none; /* Konqueror HTML */
user-select: none; /* Old versions of Firefox */
user-select: none; /* Internet Explorer/Edge */
2024-09-23 07:18:35 +00:00
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
.separator-horizontal {
width: 100%;
border: 1px solid black;
margin-top: 0.2em;
margin-bottom: 0.2em;
}