mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
2bea3fb0b8
Co-authored-by: Brian Vaughn <bvaughn@fb.com> Co-authored-by: Kartik Choudhary <kartikc.918@gmail.com>
21 lines
388 B
CSS
21 lines
388 B
CSS
.ContextMenuItem {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #333;
|
|
padding: 0.5rem 0.75rem;
|
|
cursor: default;
|
|
border-top: 1px solid #ccc;
|
|
}
|
|
.ContextMenuItem:first-of-type {
|
|
border-top: none;
|
|
}
|
|
.ContextMenuItem:hover,
|
|
.ContextMenuItem:focus {
|
|
outline: 0;
|
|
background-color: rgba(0, 136, 250, 0.1);
|
|
}
|
|
.ContextMenuItem:active {
|
|
background-color: #0088fa;
|
|
color: #fff;
|
|
}
|