Change margins in multimedia parameters.

Change border color in new chat group.
This commit is contained in:
Julien Wadel 2022-07-15 09:38:49 +02:00
parent 61dd1dac87
commit 729984d5a9
3 changed files with 4 additions and 4 deletions

View file

@ -93,7 +93,7 @@ Rectangle {
Layout.fillHeight: (expandHeight ? true : !dialog.contentIsEmpty)
Layout.fillWidth: true
Layout.topMargin: (showMargins ? DialogStyle.content.topMargin : 0)
Layout.topMargin: (showMargins ? titleBar.showBar ? 1 : 2 : 0) * DialogStyle.content.topMargin
Layout.bottomMargin: (showMargins ? DialogStyle.content.bottomMargin : 0)
Layout.leftMargin: (showMargins ? DialogStyle.content.leftMargin : 0)
Layout.rightMargin: (showMargins ? DialogStyle.content.rightMargin : 0)

View file

@ -16,7 +16,7 @@ QtObject {
}
property QtObject buttons: QtObject {
property int bottomMargin: 30
property int bottomMargin: 25
property int leftMargin: 50
property int rightMargin: 50
property int spacing: 20
@ -31,7 +31,7 @@ QtObject {
property QtObject content: QtObject {
property int leftMargin: 25
property int rightMargin: 25
property int topMargin: 25
property int topMargin: 10
property int bottomMargin: 25
}

View file

@ -13,7 +13,7 @@ QtObject {
property color subjectTitleColor: ColorsList.add(sectionName+'_subject_title', 'g').color
property color recentContactTitleColor: ColorsList.add(sectionName+'_recent_contact_title', 'g').color
property color recentContactUsernameColor: ColorsList.add(sectionName+'_recent_contact_username', 'g').color
property color addressesBorderColor: ColorsList.add(sectionName+'_addresses_border', 'l').color
property color addressesBorderColor: ColorsList.add(sectionName+'_addresses_border', 'border_light').color
property color addressesAdminColor: ColorsList.add(sectionName+'_addresses_admin', 'g').color
property color requiredColor: ColorsList.add(sectionName+'_required_text', 'g').color