Skip to content
Snippets Groups Projects
Commit 358e7fc4 authored by Mikhail Svechnikov's avatar Mikhail Svechnikov
Browse files

add borders

parent 3fed2361
No related branches found
No related tags found
1 merge request!2135Add groupbox borders, reorder Base stylesheet (#810)
......@@ -68,6 +68,7 @@ SampleForm::SampleForm(SampleItem* sampleItem, SampleEditorController* ec)
auto* summary = new CollapsibleGroupBox("Summary and layer-independent parameters", this,
sampleItem->expandInfo);
m_layout->addWidget(summary, 0, Qt::AlignTop);
summary->setObjectName("SampleSummary");
auto* gLayout = new HeinzFormLayout(ec);
summary->body()->setLayout(gLayout);
......
......@@ -33,6 +33,10 @@ QWidget#GroupBoxTitleWidget:hover
{
background-color: rgba(100, 100, 100, 25%);
}
QWidget#SampleSummary
{
border: 0px;
}
/* DEBUG */
QWidget#ParameterTuner
{
......@@ -509,6 +513,10 @@ StaticGroupBox,
CollapsibleGroupBox
{
background-color: transparent;
border: 1px solid;
border-radius: 2px;
border-color: rgba(100, 100, 100, 25%);
}
/* ------------------------------------------------------------------------------- */
......@@ -517,6 +525,7 @@ CollapsibleGroupBox
LayerForm
{
margin-top:0px;
border: 0px;
}
/* ------------------------------------------------------------------------------- */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment