Signed by hanna SSH key fingerprint: SHA256:4g9cWhkAAw8gwqhJUcVbSnGEvdGwklW+1Aa/fMUu59k
assets/base.css +34 −4 crates/web/src/repo.rs +4 −4 assets/base.css +34 −4 Expand 131 hidden lines 132 132 flex : 0 1 28rem ; 133 133 margin-left : auto ; 134 134 } 135 + 136 + 137 + 138 + . topbar-create ~ . topbar-search { 139 + margin-left : 0 ; 140 + } 135 141 . topbar-search input [ type = "search" ] { 136 142 width : 100% ; 137 143 padding : 0.3rem 0.6rem ; Expand 679 hidden lines 817 823 margin-top : 0 ; 818 824 } 819 825 . email-list { 820 - margin-bottom : 1rem ; 826 + margin-bottom : 0 ; 821 827 } 822 828 . email-visibility { 823 - margin : 0.5rem 0 1rem ; 829 + margin : 0 ; 830 + padding : 0.85rem 0 ; 831 + border-top : 1px solid var ( --fb-border ) ; 832 + border-bottom : 1px solid var ( --fb-border ) ; 833 + } 834 + . email-visibility label . checkbox { 835 + margin : 0 ; 836 + } 837 + . email-add { 838 + margin-top : 1rem ; 824 839 } 825 840 . email-add label { 826 841 margin-top : 0 ; Expand 42 hidden lines 869 884 border : 1px solid var ( --fb-border ) ; 870 885 border-radius : var ( --fb-radius ) ; 871 886 } 887 + input : disabled , 888 + textarea : disabled , 889 + select : disabled { 890 + opacity : 0.6 ; 891 + cursor : not-allowed ; 892 + } 872 893 input : focus , 873 894 textarea : focus , 874 895 select : focus { Expand 74 hidden lines 949 970 font-size : 0.9em ; 950 971 font-weight : 600 ; 951 972 } 973 + input [ type = "checkbox" ] , 974 + input [ type = "radio" ] { 975 + accent-color : var ( --fb-accent ) ; 976 + width : 1.05rem ; 977 + height : 1.05rem ; 978 + cursor : pointer ; 979 + } 952 980 label . checkbox { 953 981 display : inline-flex ; 954 982 align-items : center ; 955 - gap : 0.3rem ; 983 + gap : 0.45rem ; 956 984 margin : 0 1rem 0 0 ; 957 985 font-weight : 400 ; 986 + cursor : pointer ; 958 987 } 959 988 label . checkbox input { 960 - width : auto ; 989 + width : 1.05rem ; 990 + flex : none ; 961 991 } 962 992 963 993 . link-fields {
crates/web/src/repo.rs +4 −4 Expand 986 hidden lines 987 987 ( vis_option ( Visibility :: Internal , "Internal — any signed-in user" ) ) 988 988 ( vis_option ( Visibility :: Private , "Private — only you and collaborators" ) ) 989 989 } 990 + label for ="object_format" { "Object format" } 991 + select id="object_format" disabled title="Fixed at creation" { 992 + option { ( ctx. repo. object_format. to_uppercase ( ) ) } 993 + } 990 994 label { "Features" } 991 995 label class="checkbox" { 992 996 input type ="checkbox" name="issues_enabled" value="1" Expand 3 hidden lines 996 1000 input type ="checkbox" name="pulls_enabled" value="1" 997 1001 checked[ ctx. repo. pulls_enabled] ; " Pull requests" 998 1002 } 999 - p class="muted field-hint" { 1000 - "Object format: " ( ctx. repo. object_format. to_uppercase ( ) ) 1001 - " · fixed at creation." 1002 - } 1003 1003 } 1004 1004 div class="settings-actions" { 1005 1005 button class="btn btn-primary" type ="submit" form="repo-general" { "Save changes" }