Files
react/packages/react-devtools-scheduling-profiler/src/context/ContextMenuItem.css
T
E-Liang Tan 2bea3fb0b8 Import React Concurrent Mode Profiler (#19634)
Co-authored-by: Brian Vaughn <bvaughn@fb.com>
Co-authored-by: Kartik Choudhary <kartikc.918@gmail.com>
2020-08-20 14:06:28 -04:00

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;
}