Merge branch 'upload-form-light-theme' into 'develop'
Fix upload form style on light theme See merge request soapbox-pub/soapbox-fe!572
This commit is contained in:
commit
971cf0a4fc
|
@ -233,7 +233,7 @@
|
||||||
|
|
||||||
.icon-button {
|
.icon-button {
|
||||||
flex: 0 1 auto;
|
flex: 0 1 auto;
|
||||||
color: var(--primary-text-color--faint);
|
color: #fff;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
@ -242,7 +242,7 @@
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:active {
|
&:active {
|
||||||
color: var(--highlight-text-color);
|
color: var(--accent-color);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.active { opacity: 1; }
|
&.active { opacity: 1; }
|
||||||
|
@ -263,8 +263,8 @@
|
||||||
textarea {
|
textarea {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
color: var(--primary-text-color--faint);
|
color: #fff;
|
||||||
border: 1px solid var(--primary-text-color--faint);
|
border: 1px solid #fff;
|
||||||
outline: none;
|
outline: none;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -276,7 +276,7 @@
|
||||||
&:focus { color: #fff; }
|
&:focus { color: #fff; }
|
||||||
|
|
||||||
&::placeholder {
|
&::placeholder {
|
||||||
color: var(--primary-text-color--faint);
|
color: rgba(255, 255, 255, 0.6);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.active { opacity: 1; }
|
&.active { opacity: 1; }
|
||||||
|
|
Loading…
Reference in New Issue