2019-05-20 22:26:46 +02:00
|
|
|
#tableWrapper {
|
2018-03-25 13:22:28 +02:00
|
|
|
width: 100%;
|
2019-05-20 22:26:46 +02:00
|
|
|
overflow: auto;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tablePlanning {
|
|
|
|
margin: auto;
|
|
|
|
display: flex;
|
2018-03-25 13:22:28 +02:00
|
|
|
}
|
|
|
|
|
2019-05-20 22:26:46 +02:00
|
|
|
.planning-header {
|
2018-03-25 13:22:28 +02:00
|
|
|
border: none;
|
2018-05-20 23:35:17 +02:00
|
|
|
border-radius: 5px;
|
2018-03-25 13:22:28 +02:00
|
|
|
background: #414141;
|
|
|
|
font-weight: bold;
|
2018-05-23 16:51:30 +02:00
|
|
|
font-size: 17px;
|
2019-05-20 22:26:46 +02:00
|
|
|
padding: 5px;
|
|
|
|
margin: 5px 0;
|
|
|
|
height: 50px;
|
2018-03-25 13:22:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.horaires {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
2018-04-17 09:04:31 +02:00
|
|
|
border-top: 1px solid #ccc;
|
2018-03-25 13:22:28 +02:00
|
|
|
text-align: right;
|
|
|
|
vertical-align: top;
|
2019-05-20 22:26:46 +02:00
|
|
|
margin-top: -1px; /* negate the border to prevent offsest with events */
|
2018-03-25 13:22:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.event {
|
2019-05-20 22:26:46 +02:00
|
|
|
background: none;
|
2018-03-25 13:22:28 +02:00
|
|
|
border: none;
|
|
|
|
color: white;
|
|
|
|
transition: 0.3s;
|
|
|
|
cursor: pointer;
|
2019-05-20 22:26:46 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2018-03-25 13:22:28 +02:00
|
|
|
}
|
|
|
|
|
2019-05-20 22:26:46 +02:00
|
|
|
.event-color {
|
|
|
|
background-color: #bf021c;
|
|
|
|
border-radius: 10px;
|
|
|
|
border: none;
|
|
|
|
margin: 5px 0;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
2018-03-25 13:22:28 +02:00
|
|
|
}
|
|
|
|
|
2019-05-20 22:26:46 +02:00
|
|
|
.event-text {
|
|
|
|
margin: auto;
|
2018-03-25 13:22:28 +02:00
|
|
|
}
|
2018-05-23 16:51:30 +02:00
|
|
|
|
2019-05-20 22:26:46 +02:00
|
|
|
.day-column {
|
|
|
|
position: relative;
|
|
|
|
min-width: 200px;
|
|
|
|
margin: 0 5px;
|
2018-05-23 16:51:30 +02:00
|
|
|
}
|