mapcomplete/css/openinghourstable.css
2020-10-08 19:03:00 +02:00

110 lines
1.7 KiB
CSS

.oh-table {
border-collapse: collapse;
width: 100%;
height: 100%;
}
.oh-table th {
font-weight: bold;
font-size: medium;
background-color: #ddd;
}
.oh-table td {
vertical-align: top;
}
.oh-timecell:hover {
background-color: #ffd1be !important;
}
.oh-timecell {
background-color: white;
border-left: 1px solid #eee;
border-right: 1px solid #ccc;
position: relative;
box-sizing: border-box;
}
.oh-timecell-selected {
background-color: orange;
}
.oh-timecell-half{
background-color: aliceblue;
}
.oh-timecell-half.oh-timecell-selected {
background-color: lightsalmon;
}
.oh-left-col {
border-bottom: 1px solid #aaa;
margin: 0;
width: 0.5em;
font-size: large;
padding: 0;
padding-right: 0.2em;
background: #ddd;
}
.oh-draggable-header {
background-color: blue;
height: 0.5em;
}
.oh-timerange {
border-radius: 0.5em;
margin: 2px;
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
background: orange;
z-index: 1;
box-sizing: border-box
}
.oh-timerange-inner {
display: flex;
flex-direction: column;
justify-content: space-between;
align-content: center;
height: 100%;
}
.oh-timerange-inner input {
width: 100%;
box-sizing: border-box;
}
.oh-timerange-inner-small {
display: flex;
flex-direction: row;
justify-content: space-between;
height: 100%;
width:100%;
}
.oh-timerange-inner-small input {
width: min-content;
box-sizing: border-box;
}
.oh-delete-range{
width: 1.5em;
height: 1.5em;
background:black;
border-radius:0.75em;
}
.oh-delete-range img {
height: 100%;
max-width: 2em;
}
.oh-timerange-label{
color: white;
}