Composer: Improve design, fixes #158
This commit is contained in:
parent
807815c9d8
commit
d78760e188
4 changed files with 17 additions and 7 deletions
Binary file not shown.
|
@ -132,7 +132,6 @@
|
|||
.compose-form {
|
||||
padding: 15px;
|
||||
}
|
||||
.compose-form .compose-form__publish .compose-form__publish-button-wrapper {padding-top: 15px;}
|
||||
|
||||
.status {
|
||||
padding: 15px 15px 15px (48px + 15px * 2);
|
||||
|
|
|
@ -291,13 +291,19 @@
|
|||
.compose-form__buttons-wrapper {
|
||||
padding: 10px;
|
||||
background: var(--background-color);
|
||||
border-radius: 0 0 4px 4px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex: 0 0 auto;
|
||||
|
||||
.compose-form__buttons {
|
||||
display: flex;
|
||||
|
||||
> div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.compose-form__upload-button-icon {line-height: 27px;}
|
||||
|
||||
.compose-form__sensitive-button {
|
||||
|
@ -314,7 +320,7 @@
|
|||
|
||||
.character-counter__wrapper {
|
||||
align-self: center;
|
||||
margin-right: 4px;
|
||||
margin: 0 10px 0 auto;
|
||||
|
||||
.character-counter {
|
||||
cursor: default;
|
||||
|
@ -335,7 +341,6 @@
|
|||
|
||||
.compose-form__publish-button-wrapper {
|
||||
overflow: hidden;
|
||||
padding-top: 10px;
|
||||
}
|
||||
}
|
||||
} // end .compose-form
|
||||
|
|
|
@ -621,7 +621,6 @@
|
|||
}
|
||||
|
||||
.compose-modal {
|
||||
padding: 8px 0 0;
|
||||
overflow: hidden;
|
||||
background-color: var(--background-color);
|
||||
border-radius: 6px;
|
||||
|
@ -632,7 +631,11 @@
|
|||
&__header {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding: 5px 0;
|
||||
padding: 10px 0;
|
||||
border-bottom: 1px solid hsla(var(--primary-text-color_hsl), 0.2);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
&__title {
|
||||
display: block;
|
||||
|
@ -649,7 +652,6 @@
|
|||
&__close {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 5px;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
|
@ -687,6 +689,10 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.compose-form .compose-form__buttons-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 895px) {
|
||||
|
|
Loading…
Reference in a new issue