Skip to content

Commit

Permalink
Merge pull request #22 from marmarachain/development
Browse files Browse the repository at this point in the history
[fix] added alpha values to rgba scale
  • Loading branch information
rumeysayilmaz committed Dec 7, 2021
2 parents 34bff22 + 228f18b commit 9c76101
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/base/styles/midnight.qss
Expand Up @@ -58,7 +58,7 @@ QMenuBar::item

QMenuBar::item:selected
{
background-color: rgba(52, 103, 146, 60%);
background-color: rgba(52, 103, 146, 0.6);
border: 1px solid #346792;
color: #ffffff;
}
Expand Down Expand Up @@ -98,7 +98,7 @@ QMenu::item:disabled

QMenu::item:selected
{
background-color: rgba(52, 103, 146);
background-color: rgba(52, 103, 146, 0.6);
border: 1px solid #5692c2;
color: #E0E1E3;
}
Expand Down Expand Up @@ -130,7 +130,7 @@ QPushButton:disabled

QPushButton:hover
{
background-color: rgba(52, 103, 146, 60%);
background-color: rgba(52, 103, 146, 0.6);
border: 1px solid #828c97;
}

Expand Down Expand Up @@ -255,7 +255,7 @@ QComboBox QAbstractItemView

QComboBox:on
{
background-color: rgba(52, 103, 146, 60%);
background-color: rgba(52, 103, 146, 0.6);
color: #000000;
}

Expand Down Expand Up @@ -306,7 +306,7 @@ QCalendarWidget QAbstractItemView:enabled
{
color: white;
background-color: #121a21;
selection-background-color: rgba(52, 103, 146, 20%);
selection-background-color: rgba(52, 103, 146, 0.2);
selection-color: rgb(0, 255, 0);
}

Expand Down

0 comments on commit 9c76101

Please sign in to comment.