25 lines
512 B
Plaintext
Raw Permalink Normal View History

2025-03-03 09:24:14 -08:00
// Mini Editor
// -------------------
// Mini Editors are the "text inputs" used in find+replace or in the settings.
atom-text-editor[mini] {
padding-left: @component-padding/2;
color: @text-color;
border-radius: @component-border-radius;
background-color: @input-background-color;
&.is-focused {
background-color: darken(@input-background-color, 5%);
}
.placeholder-text {
color: @text-color-subtle;
}
.selection .region {
background-color: @background-color-selected;
}
}