@discoveryjs/discovery
Version:
Frontend framework for rapid data (JSON) analysis, shareable serverless reports and dashboards
24 lines (23 loc) • 623 B
CSS
.view-input input {
position: relative;
width: 100%;
box-sizing: border-box;
margin: 0;
padding: 8px 12px;
font-family: inherit;
font-size: inherit;
line-height: 1.2;
border: 1px solid rgba(153, 153, 153, 0.5);
border-radius: 3px;
background-color: rgba(255, 255, 255, .05);
color: var(--discovery-color);
outline: 0;
}
.view-input input:hover {
border-color: rgba(153, 153, 153, 0.75);
}
.view-input input:focus {
border-color: rgba(0, 170, 255, .65);
box-shadow: 0 0 1px 3px rgba(0, 170, 255, .2), inset 0 1px 1px rgba(142, 142, 142, .2);
z-index: 1;
}