Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(a380x/mfd): Use slashed zero as default font for FMS pages #9732

Merged
merged 7 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
1. [A32NX/AMU] Enable VHF3 audio, and allow switching off VHF1 - @tracernz (Mike)
1. [A380X/PFD] Fix font colours on metric altitude display - @MrJigs7 (MrJigs.)
1. [A380X/MFD] Fixed the altitude prediction not rounding to the nearest 10 on the FPLN page - @bulenteroglu (senolitam)
1. [A380X/MFD] Use slashed zero as default font for FMS pages - @bulenteroglu (senolitam)
1. [A380X/ND] Remove leading zeros from terrain elevation display - @BravoMike99 (bruno_pt99)

## 0.12.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

.mfd-fms-fpln-line {
color: $display-white;
font-family: "Ecam", monospace;
font-family: "FBW-Display-EIS-A380-SlashedZero", monospace;
height: 72px;
display: flex;
flex-direction: row;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
width: 768px;
height: 1024px; /* 1:1.33 W:H */
background: $display-background;
font-family: "Ecam", monospace !important;
font-family: "FBW-Display-EIS-A380-SlashedZero", monospace;
display: flex;
flex-direction: column;
}

.mfd-label {
font-size: 20px;
color: $display-white;
font-family: "Ecam", monospace;
font-family: "FBW-Display-EIS-A380-SlashedZero", monospace;
}

.mfd-label.green {
Expand Down Expand Up @@ -99,7 +99,7 @@
font-size: 22px;
background-color: $display-mfd-darker-grey;
color: $display-white;
font-family: "Ecam", monospace;
font-family: "FBW-Display-EIS-A380-SlashedZero", monospace;
text-align: center;
align-items: center;
justify-content: center;
Expand Down Expand Up @@ -451,7 +451,7 @@
}

.mfd-context-menu {
font-family: "Ecam", monospace;
font-family: "FBW-Display-EIS-A380-SlashedZero", monospace;
background-color: $display-mfd-darker-grey;
border: 2px outset $display-light-grey;
position: absolute;
Expand Down Expand Up @@ -721,7 +721,7 @@
margin-left: 15px;
font-size: 26px;
color: $display-background;
font-family: "Ecam", monospace;
font-family: "FBW-Display-EIS-A380-SlashedZero", monospace;
}

.fr {
Expand Down Expand Up @@ -771,7 +771,7 @@
.mfd-surv-label {
font-size: 20px;
color: $display-white;
font-family: "Ecam", monospace;
font-family: "FBW-Display-EIS-A380-SlashedZero", monospace;
text-align: center;
margin-bottom: 2px;
}
Expand All @@ -797,7 +797,7 @@
font-size: 22px;
padding-top: 3px;
color: $display-white;
font-family: "Ecam", monospace;
font-family: "FBW-Display-EIS-A380-SlashedZero", monospace;
}

.mfd-surv-status-indicator {
Expand Down
Loading