mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
39 lines
495 B
CSS
39 lines
495 B
CSS
|
#right form .dropdowntime, .dropdowntime {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
#right form .dropdowntime input, .dropdowntime input {
|
||
|
width: 8em;
|
||
|
}
|
||
|
|
||
|
.morning {
|
||
|
background: #ffc;
|
||
|
}
|
||
|
.noon {
|
||
|
background: #fcc;
|
||
|
}
|
||
|
.afternoon {
|
||
|
background: #cff;
|
||
|
}
|
||
|
.evening {
|
||
|
background: #ccf;
|
||
|
}
|
||
|
.midnight {
|
||
|
background: #ccc;
|
||
|
}
|
||
|
|
||
|
.dropdowntime img {
|
||
|
position: relative;
|
||
|
top: 3px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.dropdownpopup {
|
||
|
position: absolute;
|
||
|
left: 10.2em;
|
||
|
top: 0;
|
||
|
display: none;
|
||
|
}
|
||
|
.dropdownpopup.focused {
|
||
|
display: block;
|
||
|
}
|