mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 16:24:58 +00:00
191 files reformatted across views, components, widgets, hybrid, contexts. New components: CCreateSchemaDialog, CAddFieldDialog, CAdminContentPanel. JS helpers: connBadgeStatus/Text, adminStats, exampleLabels, onLevelClicked. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
510 B
QML
24 lines
510 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QmlComponents 1.0
|
|
|
|
/**
|
|
* CPaper.qml - Material Design 3 surface container
|
|
*
|
|
* A simple themed rectangle that provides a paper-like background.
|
|
* Serves as the base surface for dialogs, drawers, side-panels, etc.
|
|
*/
|
|
Rectangle {
|
|
id: paper
|
|
|
|
property int elevation: 0
|
|
|
|
color: Theme.paper
|
|
radius: 12
|
|
border.width: 0
|
|
border.color: "transparent"
|
|
|
|
Behavior on color {
|
|
ColorAnimation { duration: StyleVariables.transitionFast } }
|
|
}
|