hijri-datepicker-component
Version:
Forked and enhanced version of datepicker-hijri with additional features. The 'Hijri Datepicker' is a user interface component designed to facilitate the selection and display of Hijri (Islamic) dates in applications. It offers a visual calendar interface
44 lines (37 loc) • 675 B
CSS
.month-days {
text-align: right;
display: flex;
flex-flow: wrap;
}
.month-day {
margin: 2px;
width: 30px;
padding: 1px;
border: 1px solid #fff;
text-align: center;
-webkit-box-sizing: unset ;
box-sizing: unset;
border-radius: 4px;
}
.month-day:hover {
border: 1px solid black
}
.no-hover:hover {
border: 1px solid white ;
}
.month-day-button {
cursor: pointer;
border: 0px;
width: 30px;
padding: 5px;
font-size: 14px;
border-radius: 4px;
background-color: #f0f0f0;
}
.month-day-button.selected {
background-color: black ;
color: white ;
}
.month-day-button:focus {
outline: unset;
}