Update
This commit is contained in:
@@ -96,6 +96,8 @@ EinsatzplanFrame::EinsatzplanFrame(QWidget* parent, QString id, bool admin)
|
|||||||
#createMember{
|
#createMember{
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
background-color: #DCFF78;
|
||||||
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
)");
|
)");
|
||||||
createMemberButton_m->show();
|
createMemberButton_m->show();
|
||||||
@@ -108,6 +110,8 @@ EinsatzplanFrame::EinsatzplanFrame(QWidget* parent, QString id, bool admin)
|
|||||||
#deleteMember{
|
#deleteMember{
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
background-color: #DCFF78;
|
||||||
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
)");
|
)");
|
||||||
deleteMemberButton_m->show();
|
deleteMemberButton_m->show();
|
||||||
@@ -120,6 +124,8 @@ EinsatzplanFrame::EinsatzplanFrame(QWidget* parent, QString id, bool admin)
|
|||||||
#createVeranstaltung{
|
#createVeranstaltung{
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
background-color: #DCFF78;
|
||||||
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
)");
|
)");
|
||||||
createVeranstaltungButton_m->show();
|
createVeranstaltungButton_m->show();
|
||||||
|
|||||||
@@ -1,7 +1,15 @@
|
|||||||
# include "PlanGrid.hpp"
|
# include "PlanGrid.hpp"
|
||||||
|
|
||||||
PlanGrid::PlanGrid(QWidget* parent) :
|
PlanGrid::PlanGrid(QWidget* parent)
|
||||||
QWidget(parent) {
|
:QWidget(parent)
|
||||||
|
{
|
||||||
|
setObjectName("PlanGrid");
|
||||||
|
setStyleSheet(R"(
|
||||||
|
#PlanGrid{
|
||||||
|
background-color: #313131;
|
||||||
|
border: solid #414141 2px;
|
||||||
|
}
|
||||||
|
)");
|
||||||
|
|
||||||
weekdays[0] = "Montag";
|
weekdays[0] = "Montag";
|
||||||
weekdays[1] = "Dienstag";
|
weekdays[1] = "Dienstag";
|
||||||
|
|||||||
Reference in New Issue
Block a user