forked from ScoDoc/ScoDoc
pascal.bouron
fba623a58f
Correction de l'affichage fugace d'une "erreur de date" sur page edt (erreur en none par défaut au lieu de inline)
150 lines
2.9 KiB
CSS
150 lines
2.9 KiB
CSS
#calendar_control_form {
|
|
display: inline-block;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
span.ens-non-reconnu {
|
|
color: red;
|
|
}
|
|
/* Style for the dropdown button */
|
|
.dropdown {
|
|
position: relative;
|
|
display: inline-block;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.dropbtn {
|
|
background-color: rgb(233,233,233);
|
|
color: black;
|
|
padding: 2px 32px 2px 4px;
|
|
margin-left: 16px;
|
|
font-size: 16px;
|
|
border: 1px solid black;
|
|
border-radius: 5px; /* Rounded corners */
|
|
cursor: pointer;
|
|
/* Add arrow to the button */
|
|
background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%201L6%206L11%201%22%20stroke%3D%22black%22%20stroke-width%3D%222%22/%3E%3C/svg%3E');
|
|
background-repeat: no-repeat;
|
|
background-position: right 10px center;
|
|
}
|
|
|
|
/* Dropdown content (hidden by default) */
|
|
.dropdown-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #f9f9f9;
|
|
min-width: 210px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
z-index: 1;
|
|
border-radius: 5px; /* Rounded corners */
|
|
overflow: hidden; /* Ensures rounded corners for dropdown items */
|
|
}
|
|
|
|
/* Style for the dropdown items */
|
|
.dropdown-content ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.dropdown-content ul li {
|
|
color: black;
|
|
padding: 12px 16px;
|
|
text-decoration: none;
|
|
display: block;
|
|
}
|
|
|
|
.dropdown-content ul li a {
|
|
color: black;
|
|
text-decoration: none;
|
|
display: block;
|
|
}
|
|
|
|
.dropdown-content ul li label {
|
|
cursor: pointer;
|
|
display: block;
|
|
}
|
|
|
|
|
|
#cal_warning {
|
|
display: none;
|
|
color: red;
|
|
background-color: yellow;
|
|
font-size: 120%;
|
|
border: 1px solid red;
|
|
border-radius: 8px;
|
|
padding: 8px;
|
|
margin-left: 8px;
|
|
margin-bottom: 4px;
|
|
}
|
|
.toastui-calendar-template-time {
|
|
padding: 4px;
|
|
word-break: break-all;
|
|
white-space: normal !important;
|
|
align-items: normal !important;
|
|
font-size: 12pt;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
.module-edt {
|
|
display: inline;
|
|
}
|
|
.mod-code {
|
|
font-weight: bold;
|
|
color: rgb(21, 21, 116);
|
|
font-size: 110%;
|
|
}
|
|
.group-name {
|
|
color: rgb(25, 113, 25);
|
|
display: inline;
|
|
}
|
|
.group-edt {
|
|
color: red;
|
|
background-color: yellow;
|
|
}
|
|
|
|
#renderRange {
|
|
margin-left: 16px;
|
|
}
|
|
.toastui-calendar-timegrid {
|
|
height: 100% !important;
|
|
min-height: auto !important;
|
|
}
|
|
.toastui-calendar-time {
|
|
height: calc(100% - 44px) !important;
|
|
}
|
|
.toastui-calendar-week-view-day-names,
|
|
.toastui-calendar-time {
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
.btn {
|
|
border-radius: 25px;
|
|
border-color: #ddd;
|
|
}
|
|
|
|
.btn:hover {
|
|
border: solid 1px #bbb;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.btn:active {
|
|
background-color: #f9f9f9;
|
|
border: solid 1px #bbb;
|
|
outline: none;
|
|
}
|
|
|
|
.btn:disabled {
|
|
background-color: #f9f9f9;
|
|
border: solid 1px #ddd;
|
|
color: #bbb;
|
|
}
|
|
|
|
.btn:focus:active,
|
|
.btn:focus,
|
|
.btn:active {
|
|
outline: none;
|
|
}
|
|
|
|
.raw-event {
|
|
display: none;
|
|
} |