mirror of
https://gh.wpcy.net/https://github.com/Brugman/wp-cli-gui.git
synced 2026-04-25 03:56:08 +08:00
27 lines
500 B
Text
27 lines
500 B
Text
/* List Items */
|
|
.vs__dropdown-option {
|
|
line-height: 1.42857143; /* Normalize line height */
|
|
display: block;
|
|
padding: 3px 20px;
|
|
clear: both;
|
|
color: #333; /* Overrides most CSS frameworks */
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.vs__dropdown-option--highlight {
|
|
background: @vs-state-active-bg;
|
|
color: @vs-state-active-color;
|
|
}
|
|
|
|
.vs__dropdown-option--disabled {
|
|
background: inherit;
|
|
color: @vs-state-disabled-color;
|
|
|
|
&:hover {
|
|
cursor: inherit;
|
|
}
|
|
}
|