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