mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-03 11:11:27 +08:00
changed settings API and page to React + rest changed structure of scripts - different folders for editor and admin scripts
44 lines
774 B
SCSS
44 lines
774 B
SCSS
$padding: 10px;
|
|
|
|
.mind-popup-input {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 0;
|
|
border-bottom: 1px solid #e8e7e7;
|
|
|
|
> svg {
|
|
position: absolute;
|
|
left: $padding * 2;
|
|
pointer-events: none;
|
|
color: var(--mind-brand-color);
|
|
}
|
|
|
|
> .components-base-control {
|
|
flex: 1;
|
|
}
|
|
|
|
.components-base-control__field {
|
|
margin-bottom: 0;
|
|
}
|
|
.components-base-control__field input {
|
|
border: none !important;
|
|
box-shadow: none !important;
|
|
padding: $padding * 2;
|
|
padding-left: $padding * 5;
|
|
font-size: 1.15em;
|
|
color: #151515;
|
|
|
|
&::placeholder {
|
|
color: #a3a3a3;
|
|
}
|
|
}
|
|
|
|
.mind-popup-input-context {
|
|
font-weight: 400;
|
|
border-radius: 3px;
|
|
padding: 3px 10px;
|
|
margin-right: 10px;
|
|
color: rgb(0, 0, 0, 60%);
|
|
background-color: rgba(0, 0, 0, 8%);
|
|
}
|
|
}
|