15 lines
336 B
QML
15 lines
336 B
QML
import QtQuick
|
|
import "." as M
|
|
|
|
Rectangle {
|
|
property color accentColor: M.Theme.base05
|
|
|
|
color: M.Theme.base01
|
|
opacity: Math.max(M.Theme.barOpacity, 0.85)
|
|
topLeftRadius: 0
|
|
topRightRadius: 0
|
|
bottomLeftRadius: M.Theme.radius
|
|
bottomRightRadius: M.Theme.radius
|
|
border.color: accentColor
|
|
border.width: 1
|
|
}
|