* fix: Margin on floating toolbar fix: Flash of toolbar on wide screens * fix: Nesting of comment marks * fix: Post button not visible when there is a draft comment, makes it look like the comment is saved fix: Styling of link editor results now matches other menus fix: Allow small link editor in comments sidebar * fix: Cannot use arrow keys to navigate suggested links Added animation to link suggestions Added mixin for text ellipsis * fix: Link input appears non-rounded when no creation option * Accidental removal
21 lines
406 B
TypeScript
21 lines
406 B
TypeScript
import styled from "styled-components";
|
|
|
|
const Input = styled.input`
|
|
font-size: 15px;
|
|
background: ${(props) => props.theme.toolbarInput};
|
|
color: ${(props) => props.theme.toolbarItem};
|
|
border-radius: 2px;
|
|
padding: 3px 8px;
|
|
border: 0;
|
|
margin: 0;
|
|
outline: none;
|
|
flex-grow: 1;
|
|
min-width: 0;
|
|
|
|
@media (hover: none) and (pointer: coarse) {
|
|
font-size: 16px;
|
|
}
|
|
`;
|
|
|
|
export default Input;
|