Feat(SW-1274) modify date my stay * feat(SW-1676): Modify guest details step 1 * feat(SW-1676) Integration to api to update guest details * feat(SW-1676) Reuse of old modal * feat(SW-1676) updated modify guest * feat(SW-1676) cleanup * feat(SW-1274) modify stay modal and datepicker * feat(SW-1274) DatePicker from modify dates * feat(SW-1274) Modify dates fixes and merge conflicts * feat(SW-1274) handle modify for multiroom * feat(SW-1274) update manage stay * feat(SW-1274) fixed some comments * feat(SW-1274) use Modal instead * feat(SW-1274) fixed formatChildBedPreferences * feat(SW-1274) removed any as prop * feat(SW-1274) fix rebase conflicts * feat(SW-1274) fix flicker on modify modal * feat(SW-1274) CalendarButton * feat(SW-1274) fixed gap variable * feat(SW-1274) simplified code * feat(SW-1274) Split up DatePicker on mode * feat(SW-1274) Updated file structure for datepicker Approved-by: Arvid Norlin
75 lines
1.1 KiB
CSS
75 lines
1.1 KiB
CSS
.mobile {
|
|
display: block;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.toggle {
|
|
font-size: 14px;
|
|
padding: 5px 0;
|
|
display: block;
|
|
border: none;
|
|
background-color: transparent;
|
|
margin: 0 auto;
|
|
color: #333;
|
|
}
|
|
|
|
.hiddenAccessible {
|
|
display: block;
|
|
position: absolute;
|
|
left: -100000em;
|
|
top: auto;
|
|
width: 1px;
|
|
height: 1px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.li {
|
|
list-style: none;
|
|
font-size: 14px;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.link {
|
|
color: #333;
|
|
text-decoration: none;
|
|
line-height: 22.4px;
|
|
}
|
|
|
|
.dropdown {
|
|
display: none;
|
|
}
|
|
|
|
.dropdown.isOpen {
|
|
display: block;
|
|
}
|
|
|
|
.arrow {
|
|
background-image: url("/_static/img/icons/arrows/arrow-down-grey.png");
|
|
background-position: 50%;
|
|
background-repeat: no-repeat;
|
|
display: inline-block;
|
|
margin-left: 5px;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.arrow.open {
|
|
background-image: url("/_static/img/icons/arrows/arrow-up-grey.png");
|
|
}
|
|
|
|
.link {
|
|
color: grey;
|
|
display: block;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.link:hover {
|
|
color: #7f7369;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media (min-width: 1367px) {
|
|
.mobile {
|
|
display: none;
|
|
}
|
|
}
|