Border radius uniformisation
We had a lot of radius 20, 22 and 24 which led to design inconsistencies. Set them all to 20.
This commit is contained in:
parent
01be1f0bda
commit
5e2ad9dec6
6 changed files with 8 additions and 8 deletions
|
|
@ -214,7 +214,7 @@ PanelWithOverlay {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: searchBar
|
id: searchBar
|
||||||
color: Theme.surfaceVariant
|
color: Theme.surfaceVariant
|
||||||
radius: 22
|
radius: 20
|
||||||
height: 48
|
height: 48
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
border.color: searchField.activeFocus ? Theme.accentPrimary : Theme.outline
|
border.color: searchField.activeFocus ? Theme.accentPrimary : Theme.outline
|
||||||
|
|
|
||||||
|
|
@ -240,7 +240,7 @@ WlSessionLock {
|
||||||
width: parent.width * 0.8
|
width: parent.width * 0.8
|
||||||
height: 44
|
height: 44
|
||||||
color: Theme.overlay
|
color: Theme.overlay
|
||||||
radius: 22
|
radius: 20
|
||||||
visible: lock.errorMessage !== ""
|
visible: lock.errorMessage !== ""
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
|
@ -258,7 +258,7 @@ WlSessionLock {
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
width: 120
|
width: 120
|
||||||
height: 44
|
height: 44
|
||||||
radius: 22
|
radius: 20
|
||||||
opacity: unlockButtonArea.containsMouse ? 0.8 : 0.5
|
opacity: unlockButtonArea.containsMouse ? 0.8 : 0.5
|
||||||
color: unlockButtonArea.containsMouse ? Theme.accentPrimary : Theme.surface
|
color: unlockButtonArea.containsMouse ? Theme.accentPrimary : Theme.surface
|
||||||
border.color: Theme.accentPrimary
|
border.color: Theme.accentPrimary
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ PanelWindow {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
color: Theme.backgroundPrimary
|
color: Theme.backgroundPrimary
|
||||||
radius: 24
|
radius: 20
|
||||||
z: 0
|
z: 0
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ Item {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
color: Theme.backgroundPrimary
|
color: Theme.backgroundPrimary
|
||||||
radius: 24
|
radius: 20
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ PanelWindow {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
color: Theme.backgroundPrimary
|
color: Theme.backgroundPrimary
|
||||||
radius: 24
|
radius: 20
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 32
|
anchors.margins: 32
|
||||||
|
|
|
||||||
|
|
@ -482,7 +482,7 @@ Item {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
color: Theme.backgroundPrimary
|
color: Theme.backgroundPrimary
|
||||||
radius: 24
|
radius: 20
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 32
|
anchors.margins: 32
|
||||||
|
|
@ -590,7 +590,7 @@ Item {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
spacing: 4
|
spacing: 4
|
||||||
boundsBehavior: Flickable.StopAtBounds
|
boundsBehavior: Flickable.StopAtBounds
|
||||||
model: Object.values(wifiLogic.networks)
|
model: wifiLogic.networks ? Object.values(wifiLogic.networks) : null
|
||||||
delegate: Item {
|
delegate: Item {
|
||||||
id: networkEntry
|
id: networkEntry
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue