Compare commits

..

No commits in common. "2b6b9aee28305ab4e56bb9c34a73818984997215" and "01c2ea90445d7c48c8e79fb871be55be216fff7e" have entirely different histories.

2 changed files with 3 additions and 6 deletions

View file

@ -3,14 +3,12 @@ import QtQuick
import QtQuick.Controls import QtQuick.Controls
Pane { Pane {
id: pane
padding: 24 padding: 24
background: Rectangle { background: Rectangle {
color: "transparent" color: "transparent"
border.width: Styling.theme.border border.width: Styling.theme.border
border.color: pane.hovered ? Styling.theme.accent : Styling.theme.basecontent border.color: Styling.theme.basecontent
opacity: 0.2 opacity: 0.33
Behavior on border.color { Behavior on border.color {
ColorAnimation { ColorAnimation {
duration: Styling.animations.speed.fast duration: Styling.animations.speed.fast

View file

@ -36,8 +36,7 @@ TabButton {
duration: Styling.animations.speed.normal duration: Styling.animations.speed.normal
} }
} }
border.width: 2 // radius: Styling.theme.radiusField
border.color: control.checked ? Styling.theme.accent : "transparent"
} }
HoverHandler { HoverHandler {