mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
41 lines
502 B
Plaintext
41 lines
502 B
Plaintext
.dropdown-menu {
|
|
.absolute;
|
|
.pin-r;
|
|
.mt(px);
|
|
.bg-light;
|
|
.rounded;
|
|
.z50;
|
|
.mask;
|
|
.box-shadow;
|
|
|
|
left: auto;
|
|
}
|
|
|
|
.dropdown-item {
|
|
.px(4);
|
|
.py(2);
|
|
.pull-t(px);
|
|
.border;
|
|
.border-dark;
|
|
.no-select;
|
|
&:first-child {
|
|
margin-top: 0;
|
|
.rounded-t;
|
|
}
|
|
&:last-child {
|
|
.rounded-b;
|
|
}
|
|
&:not(.is-disabled):hover {
|
|
.clickable;
|
|
.relative;
|
|
.bg-highlight;
|
|
.border-invisible;
|
|
* {
|
|
.text-light;
|
|
}
|
|
}
|
|
&.is-disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|