refs #1351 Add theme color in new toot window
This commit is contained in:
parent
b9444e1069
commit
4564d10894
|
@ -460,7 +460,7 @@ export default {
|
|||
<style lang="scss" scoped>
|
||||
.new-toot-modal /deep/ {
|
||||
.el-dialog {
|
||||
background-color: #f2f6fc;
|
||||
background-color: var(--theme-selected-background-color);
|
||||
overflow: hidden;
|
||||
resize: both;
|
||||
padding-bottom: 20px;
|
||||
|
@ -479,6 +479,12 @@ export default {
|
|||
.el-dialog__body {
|
||||
padding: 0;
|
||||
|
||||
.el-input__inner {
|
||||
background-color: var(--theme-background-color);
|
||||
color: var(--theme-primary-color);
|
||||
border: 1px solid var(--theme-border-color);
|
||||
}
|
||||
|
||||
.spoiler {
|
||||
box-sizing: border-box;
|
||||
padding: 4px 0;
|
||||
|
@ -556,7 +562,7 @@ export default {
|
|||
}
|
||||
|
||||
.el-dialog__footer {
|
||||
background-color: #f2f6fc;
|
||||
background-color: var(--theme-selected-background-color);
|
||||
font-size: var(--base-font-size);
|
||||
padding-bottom: 0;
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
autofocus
|
||||
>
|
||||
</textarea>
|
||||
<el-popover placement="bottom-start" width="300" trigger="manual" :value="openSuggest">
|
||||
<el-popover placement="bottom-start" width="300" trigger="manual" :value="openSuggest" popper-class="suggest-popper">
|
||||
<ul class="suggest-list">
|
||||
<li
|
||||
v-for="(item, index) in filteredSuggestion"
|
||||
|
@ -282,6 +282,7 @@ export default {
|
|||
position: relative;
|
||||
z-index: 1;
|
||||
font-size: var(--base-font-size);
|
||||
background-color: var(--theme-background-color);
|
||||
|
||||
textarea {
|
||||
position: relative;
|
||||
|
@ -291,7 +292,7 @@ export default {
|
|||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
font-size: inherit;
|
||||
color: #606266;
|
||||
color: var(--theme-primary-color);
|
||||
background-image: none;
|
||||
border: 0;
|
||||
border-radius: 4px;
|
||||
|
@ -299,6 +300,7 @@ export default {
|
|||
height: 120px;
|
||||
transition: border-color 0.2s cubic-bezier(0.645, 0.045, 9.355, 1);
|
||||
word-break: normal;
|
||||
background-color: var(--theme-background-color);
|
||||
|
||||
&::placeholder {
|
||||
color: #c0c4cc;
|
||||
|
|
Loading…
Reference in New Issue