diff options
| author | cristiano <[email protected]> | 2019-12-22 20:28:46 +0000 |
|---|---|---|
| committer | cristiano <[email protected]> | 2019-12-22 20:28:46 +0000 |
| commit | f8e7d5e2d300feac7ae183b10898320f5619cc2d (patch) | |
| tree | a894312cc8e79c92c88b312f39e634ffe86f7b13 /templates/@theme-base | |
| parent | a1823b0219f69c5e47c6b836078ab33c802b5509 (diff) | |
| download | protonmail-themes-f8e7d5e2d300feac7ae183b10898320f5619cc2d.tar.xz protonmail-themes-f8e7d5e2d300feac7ae183b10898320f5619cc2d.zip | |
Compose window input fields.
Diffstat (limited to 'templates/@theme-base')
| -rw-r--r-- | templates/@theme-base/_full.scss | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/templates/@theme-base/_full.scss b/templates/@theme-base/_full.scss index f064d8e..a9f9af1 100644 --- a/templates/@theme-base/_full.scss +++ b/templates/@theme-base/_full.scss @@ -17,6 +17,12 @@ body { } } +// Compose window +#pm_composer .composer, +.composerInputMeta-overlay { + background: $base; +} + // Message items .conversation { border-color: lighten($base, 10%); @@ -123,7 +129,7 @@ details:first-child { background-color: $base; } -.bordered, .bordered-container, .breadcrumb-container { +.bordered, .bordered-container:not(.composerInputMeta-autocomplete), .breadcrumb-container { border-color: lighten($base, 10%); } @@ -304,7 +310,18 @@ a:active, a:focus, a:hover, .pm-field, .pm-field-icon-container, .focus.pm-field-icon-container, .pm-field-icon-container:focus, .pm-field-icon-container:focus-within, .pm-field.focus, -.pm-field:focus, .pm-field:focus-within { +.pm-field:focus, .pm-field:focus-within, +.composerInputMeta-overlay-fakefield, +.composerInputMeta-autocomplete { + color: $text_color; + background-color: lighten($base, 5%); + + &::placeholder { + color: darken($text_color, 5%); + } +} + +.composerInputMeta-autocomplete input { color: $text_color; background-color: lighten($base, 5%); |
