added placeholder to comment input and better padding

This commit is contained in:
iLLiCiTiT 2021-09-10 14:25:33 +02:00
parent aba71d5c7d
commit a250b5fbee
2 changed files with 7 additions and 0 deletions

View file

@ -774,6 +774,9 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
#PublishDetailViews::item {
margin: 1px 0px 1px 0px;
}
#PublishCommentInput {
padding: 0.2em;
}
#ArrowBtn, #ArrowBtn:disabled, #ArrowBtn:hover {
background: transparent;

View file

@ -131,6 +131,10 @@ class PublisherWindow(QtWidgets.QDialog):
# Footer
comment_input = QtWidgets.QLineEdit(subset_frame)
comment_input.setObjectName("PublishCommentInput")
comment_input.setPlaceholderText(
"Attach a comment to your publish"
)
reset_btn = ResetBtn(subset_frame)
stop_btn = StopBtn(subset_frame)