diff options
-rw-r--r-- | data/coins | 6 | ||||
-rw-r--r-- | data/notes | 12 | ||||
-rw-r--r-- | scripts/getcls.awk | 8 | ||||
-rw-r--r-- | src/style.css | 28 | ||||
-rw-r--r-- | src/table-key.gsp | 14 |
5 files changed, 46 insertions, 22 deletions
@@ -341,7 +341,7 @@ GR - - - - - - - - 2024 GR - - - - - - - - 2025 HR X X X X X X X X 2023 -HR - - - - - - X - 2024 +HR - - - - - - X X 2024 HR - - * - - * * * 2025 IE X X X X X X X X 2002 @@ -544,7 +544,7 @@ PT X * X * X * X * 2020 PT * * X X X X * * 2021 PT * * * * * * * * 2022 PT X * X * * * * X 2023 -PT * * - - - * - * 2024 +PT * * - - - * X * 2024 PT ? ? ? ? ? ? ? ? 2025 SI X X X X X X X X 2007 @@ -641,4 +641,4 @@ VA * * * * * X * * 2021 VA * * * * * X * * 2022 VA * * * * * - * * 2023 VA ? ? ? ? ? - ? ? 2024 -VA ? ? ? ? ? ? ? ? 2025 +VA ? ? ? ? ? ? ? ? 2025
\ No newline at end of file @@ -11,7 +11,7 @@ 5 2002 NL X X 5 2002 PT X X 5 2002 SK / - -5 2002 SI / - +5 2002 SI / X 5 2002 ES - X 5 Europa AT X X 5 Europa BE X / @@ -49,7 +49,7 @@ 10 Europa PT / X 10 Europa ES X X -20 2002 AT - - / +20 2002 AT - X / 20 2002 BE - / / 20 2002 CY / - - 20 2002 EE / / X @@ -60,11 +60,11 @@ 20 2002 IE X - / 20 2002 IT - X X 20 2002 MT / - - -20 2002 NL X - X +20 2002 NL X X X 20 2002 PT - X X 20 2002 SK / - X 20 2002 SI / - - -20 2002 ES - - / +20 2002 ES X X / 20 Europa AT X X 20 Europa BE X / 20 Europa BG / X @@ -126,7 +126,7 @@ 100 Europa ES X / 200 2002 AT X / / -200 2002 BE - / - +200 2002 BE - / X 200 2002 FI - / / 200 2002 FR - / / 200 2002 DE X X X @@ -157,4 +157,4 @@ TN 20 VH********** / **** / Mario Draghi X TN 20 XZ********** / **** / Mario Draghi X TN 50 VH********** / **** / Mario Draghi X TN 100 NZ********** / **** / Mario Draghi X -TN 200 NZ********** / **** / Mario Draghi X +TN 200 NZ********** / **** / Mario Draghi X
\ No newline at end of file diff --git a/scripts/getcls.awk b/scripts/getcls.awk index f53dc14..90288f8 100644 --- a/scripts/getcls.awk +++ b/scripts/getcls.awk @@ -11,6 +11,12 @@ function getcls(c) return "have-nifc" case "@": return "have-proof" + case "g": + return "getting" + case "G": + return "getting-nifc" + case "+": + return "getting-proof" case "?": return "unknown" case "/": @@ -18,4 +24,4 @@ function getcls(c) default: return "error" } -} +}
\ No newline at end of file diff --git a/src/style.css b/src/style.css index 6d00b54..eab5295 100644 --- a/src/style.css +++ b/src/style.css @@ -455,22 +455,28 @@ main section { text-align: right; } -.nifc { background-color: pink; } -.have { background-color: green; } -.have-nifc { background-color: #5DBB63; } -.not-minted { background-color: black; } -.unknown { background-color: grey; } -.error { background-color: red; } +.nifc { background-color: pink; } +.have { background-color: green; } +.have-nifc { background-color: #5DBB63; } +.not-minted { background-color: black; } +.unknown { background-color: grey; } +.error { background-color: red; } +.getting { background-color: yellow; } +.getting-nifc { background-color: khaki; } .have-proof { background-color: #5DBB63; position: relative; } +.getting-proof { + background-color: khaki; + position: relative; +} -.have-proof:before { animation: slide 2s linear 1s infinite; } -.have-proof:after { animation: slide 2s linear 0s infinite; } +:is(.have-proof, .getting-proof):before { animation: slide 2s linear 1s infinite; } +:is(.have-proof, .getting-proof):after { animation: slide 2s linear 0s infinite; } -.have-proof:before, -.have-proof:after { +:is(.have-proof, .getting-proof):before, +:is(.have-proof, .getting-proof):after { content: ''; top: 0; left: 0; @@ -875,4 +881,4 @@ div .country-table:not(:first-child) { .blurb { flex-direction: column; align-items: center; -} +}
\ No newline at end of file diff --git a/src/table-key.gsp b/src/table-key.gsp index ba551a8..db726b1 100644 --- a/src/table-key.gsp +++ b/src/table-key.gsp @@ -16,6 +16,18 @@ table #table-key cellspacing="0" { td {-In my collection (proof)} } tr { + td {div .getting {}} + td {-Getting for my collection} + } + tr { + td {div .getting-nifc {}} + td {-Getting for my collection (NIFC)} + } + tr { + td {div .getting-proof {}} + td {-Getting for my collection (proof)} + } + tr { td {div .unknown {}} td {-Circulation status unknown} } @@ -23,4 +35,4 @@ table #table-key cellspacing="0" { m4_dnl td {div .not-minted {}} m4_dnl td {-m4_ifdef([__coins], [Not minted], [Not printed])} m4_dnl } -} +}
\ No newline at end of file |