This commit is contained in:
AJ
2024-06-24 10:50:21 +02:00
parent 215d798ab2
commit 0d1459f395
3 changed files with 35 additions and 28 deletions

View File

@@ -99,6 +99,9 @@ EinsatzplanFrame::EinsatzplanFrame(QWidget* parent, QString id, bool admin)
background-color: #DCFF78;
border-radius: 10px;
}
#createMember:pressed{
background-color: #CCEF68;
}
)");
createMemberButton_m->show();

View File

@@ -5,9 +5,9 @@ PlanGrid::PlanGrid(QWidget* parent)
{
setObjectName("PlanGrid");
setStyleSheet(R"(
#PlanGrid{
QWidget{
background-color: #313131;
border: solid #414141 2px;
border: 2px solid #414141;
}
)");
@@ -38,10 +38,14 @@ PlanGrid::PlanGrid(QWidget* parent)
planMap->insert(qMakePair(weekdays[i], times[j]), nullptr);
}
}
QLabel* temp = new QLabel();
temp->setFixedSize(124,100);
gridLayout->addWidget(temp, 0, 0);
for (int i = 0; i < 5; i++) {
QLabel* temp = new QLabel(weekdays[i]);
temp->setFixedSize(250,70);
temp->setFixedSize(250,80);
temp->setObjectName("temp");
temp->setStyleSheet(R"(
#temp{