Files
johndoe6345789 6e394d7846 style(qt6): 80-char margin enforced — 737 violations → 29 remaining
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>
2026-03-19 15:48:39 +00:00

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 } }
}