openreplay/frontend/app/components/shared/DateRangeDropdown/dateRangeDropdown.module.css
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

69 lines
No EOL
1.1 KiB
CSS

.button {
padding: 0 4px;
border-radius: 3px;
color: $teal;
cursor: pointer;
display: flex !important;
align-items: center !important;
& span {
white-space: nowrap;
margin-right: 5px;
}
}
.dropdownTrigger {
padding: 4px;
&:hover {
background-color: $gray-light;
}
}
.dateRangeOptions {
position: relative;
display: flex !important;
border-radius: 3px;
color: $gray-darkest;
font-weight: 500;
& .dateRangePopup {
top: 38px;
bottom: 0;
z-index: 999;
position: absolute;
background-color: white;
border: solid thin $gray-light;
border-radius: 3px;
min-height: fit-content;
min-width: 773px;
box-shadow: 0px 2px 10px 0 $gray-light;
}
}
.dropdown {
display: flex !important;
padding: 4px 4px;
border-radius: 3px;
color: $gray-darkest;
font-weight: 500;
&:hover {
background-color: $gray-light;
}
}
.dropdownTrigger {
padding: 4px 4px;
border-radius: 3px;
&:hover {
background-color: $gray-light;
}
}
.dropdownIcon {
margin-top: 1px;
margin-left: 3px;
}
.customRangeRight {
right: 0 !important;
}