Skip to content

Commit

Permalink
Added margin, border, and border-color styles to various widgets in H…
Browse files Browse the repository at this point in the history
…exConverterEncoder.py
  • Loading branch information
RTHKKona committed Sep 12, 2024
1 parent b37f01c commit 18dc930
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/HexConverterEncoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def init_ui(self):
color: #ffebcd;
font-family: Consolas;
font-size: 11pt;
margin: 2px;
}
QLabel {
color: #ffebcd;
Expand Down Expand Up @@ -176,6 +177,9 @@ def toggle_dark_mode(self):
color: #ffebcd;
font-family: Consolas;
font-size: 11pt;
margin: 2px;
border: 2px solid;
border-color: #ffebcd;
}
QLabel {
color: #ffebcd;
Expand Down Expand Up @@ -220,6 +224,9 @@ def toggle_dark_mode(self):
color: #000000;
font-family: Consolas;
font-size: 11pt;
margin: 2px;
border-color: #000000;
border: 2px solid;
}
QLabel {
color: #000000;
Expand All @@ -234,7 +241,6 @@ def toggle_dark_mode(self):
padding-bottom: 3px;
padding-left: 10px;
padding-right: 10px;
}
QComboBox {
background-color: #d9d9d9;
Expand Down

0 comments on commit 18dc930

Please sign in to comment.