webapp/src/components/Editor/EditorBubbleMenu.module.scss

52 lines
777 B
SCSS
Raw Normal View History

2023-03-08 17:44:09 +00:00
.bubbleMenu {
background: #fff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
2023-03-20 09:19:14 +00:00
.bubbleMenuButton {
opacity: 0.5;
padding: 1rem;
}
2023-03-08 17:44:09 +00:00
2023-03-20 09:19:14 +00:00
.bubbleMenuButtonActive {
opacity: 1;
}
.delimiter {
background: #999;
display: inline-block;
height: 1.4em;
margin: 0 0.2em;
vertical-align: text-bottom;
width: 1px;
}
.linkForm {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
padding: 6px 11px;
input {
margin: 0 12px 0 0;
padding: 0;
flex: 1;
border: none;
min-width: 200px;
&:focus {
outline: none;
}
&::placeholder {
color: rgba(#000, 0.3);
}
}
}
2023-03-08 17:44:09 +00:00
2023-03-20 09:19:14 +00:00
.linkError {
padding: 6px 11px;
color: red;
font-size: 0.7em;
}
2023-03-08 17:44:09 +00:00
}