Signed by hanna SSH key fingerprint: SHA256:4g9cWhkAAw8gwqhJUcVbSnGEvdGwklW+1Aa/fMUu59k
assets/base.css +18 −0 challenge.txt +2 −0 challenge.txt.asc +7 −0 crates/web/src/repo.rs +14 −4 assets/base.css +18 −0 390 background : var ( --label-color , #888 ) ; 390 background : var ( --label-color , #888 ) ; 391 border : 1px solid rgba ( 0 , 0 , 0 , 0.25 ) ; 391 border : 1px solid rgba ( 0 , 0 , 0 , 0.25 ) ; 392 } 392 } 393 394 395 . label-chip-scoped { 396 padding : 0 ; 397 overflow : hidden ; 398 } 399 . label-chip-scoped . label-scope , 400 . label-chip-scoped . label-value { 401 padding : 0.1rem 0.55rem ; 402 } 403 . label-chip-scoped . label-scope { 404 background : var ( --fb-bg-inset ) ; 405 color : var ( --fb-fg ) ; 406 } 407 . label-chip-scoped . label-value { 408 background : var ( --label-color , #888 ) ; 409 color : #fff ; 410 } 393 . label-list { 411 . label-list { 394 margin-bottom : 1.5rem ; 412 margin-bottom : 1.5rem ; 395 } 413 }
challenge.txt +2 −0 1 fabrica GPG key ownership verification 2 fingerprint: cc43cfe5431cac1023ac650ce68958b151034ffb
challenge.txt.asc +7 −0 1 -----BEGIN PGP SIGNATURE----- 2 3 iHUEABYKAB0WIQTMQ8/lQxysECOsZQzmiVixUQNP+wUCamYJRgAKCRDmiVixUQNP 4 +8puAP9+JYm+KC1Pri9qymTAyZYADdB1MMWNIThtvsJRcjjkCAD9EK3FvIXHDR6A 5 yMtqpqagw+IMa6WWzJgY8pwbWG5AzQ4= 6 =cdfD 7 -----END PGP SIGNATURE-----
crates/web/src/repo.rs +14 −4 1586 } 1586 } 1587 } 1587 } 1588 1588 1589 1589 1590 1591 1590 pub ( crate ) fn label_chip ( label : & model:: Label ) -> Markup { 1592 pub ( crate ) fn label_chip ( label : & model:: Label ) -> Markup { 1591 html ! { 1593 let color = format ! ( "--label-color: {}" , css_color ( & label. color) ) ; 1592 span class="label-chip" style=( format ! ( "--label-color: {}" , css_color ( & label. color) ) ) { 1594 if let Some ( ( scope, value) ) = label. name. split_once ( ": " ) { 1593 ( label. name) 1595 html ! { 1596 span class="label-chip label-chip-scoped" style=( color) { 1597 span class="label-scope" { ( scope. trim ( ) ) } 1598 span class="label-value" { ( value. trim ( ) ) } 1599 } 1600 } 1601 } else { 1602 html ! { 1603 span class="label-chip" style=( color) { ( label. name) } 1594 } 1604 } 1595 } 1605 } 1596 } 1606 }