Fix input/textarea themes
This commit is contained in:
parent
e0433a5f8f
commit
f33dc6ab2d
|
@ -14,6 +14,8 @@ $input-border-radius: 3px;
|
|||
textarea {
|
||||
@include peertube-textarea(100%, 150px);
|
||||
|
||||
background-color: var(--markdownTextareaBackgroundColor);
|
||||
|
||||
font-family: monospace;
|
||||
font-size: 13px;
|
||||
border-bottom: none;
|
||||
|
|
|
@ -41,6 +41,7 @@ body {
|
|||
|
||||
--textareaForegroundColor: #{$textarea-foreground-color};
|
||||
--textareaBackgroundColor: #{$textarea-background-color};
|
||||
--markdownTextareaBackgroundColor: #{$markdown-textarea-background-color};
|
||||
|
||||
--actionButtonColor: #{$grey-foreground-color};
|
||||
--supportButtonBackgroundColor: #{transparent};
|
||||
|
|
|
@ -91,7 +91,7 @@
|
|||
height: $button-height;
|
||||
width: $width;
|
||||
color: var(--inputForegroundColor);
|
||||
background: var(--inputBackgroundColor);
|
||||
background-color: var(--inputBackgroundColor);
|
||||
border: 1px solid #C6C6C6;
|
||||
border-radius: 3px;
|
||||
padding-left: 15px;
|
||||
|
|
|
@ -68,7 +68,8 @@ $input-background-color: $bg-color;
|
|||
$input-placeholder-color: #898989;
|
||||
|
||||
$textarea-foreground-color: $fg-color;
|
||||
$textarea-background-color: $grey-background-hover-color;
|
||||
$textarea-background-color: $bg-color;
|
||||
$markdown-textarea-background-color: $grey-background-hover-color;
|
||||
|
||||
$sub-menu-margin-bottom: 30px;
|
||||
$sub-menu-margin-bottom-small-view: 10px;
|
||||
|
@ -100,6 +101,7 @@ $variables: (
|
|||
|
||||
--textareaForegroundColor: var(--textareaForegroundColor),
|
||||
--textareaBackgroundColor: var(--textareaBackgroundColor),
|
||||
--markdownTextareaBackgroundColor: var(--markdownTextareaBackgroundColor),
|
||||
|
||||
--actionButtonColor: var(--actionButtonColor),
|
||||
--supportButtonColor: var(--supportButtonColor),
|
||||
|
|
Loading…
Reference in New Issue