870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
|
form.fileedit fieldset {
margin: 0.5em 0 0 0;
border-radius: 0.5em;
border-color: inherit;
border-width: 1px;
}
form.fileedit fieldset > legend {
margin-left: 1em;
}
form.fileedit fieldset > div {
margin: 0 0.25em;
}
form.fileedit fieldset > div > .input-with-label {
padding: 0.5em;
margin: 0.25em 0.5em;
}
form.fileedit fieldset > div > button {
margin: 0.25em 0.5em;
}
form.fileedit input:invalid {
border-left: 0.2em dashed red;
|
|
>
|
<
|
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
|
form.fileedit fieldset {
margin: 0.5em 0 0 0;
border-radius: 0.5em;
border-color: inherit;
border-width: 1px;
}
form.fileedit fieldset > legend {
margin: 0 0 0 1em;
padding: 0 0.5em 0 0.5em;
}
form.fileedit fieldset > div {
margin: 0 0.25em 0.25em 0.25em;
}
form.fileedit fieldset > div > .input-with-label {
margin: 0.25em 0.5em;
}
form.fileedit fieldset > div > button {
margin: 0.25em 0.5em;
}
form.fileedit input:invalid {
border-left: 0.2em dashed red;
|
906
907
908
909
910
911
912
913
914
915
916
917
918
919
|
overflow: auto;
}
div.fileedit-preview {
margin: 0;
padding: 0;
}
.fileedit-preview > div:first-child {
border-bottom: 1px dashed;
}
.input-with-label {
border: 1px inset #808080;
border-radius: 0.5em;
padding: 0.25em 0.4em;
|
>
>
>
>
>
>
>
>
|
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
|
overflow: auto;
}
div.fileedit-preview {
margin: 0;
padding: 0;
}
.fileedit-preview > div:first-child {
margin: 1em 0 0 0;
border-bottom: 1px dashed;
}
div.fileedit-diff {
margin: 0;
padding: 0;
}
.fileedit-diff > div:first-child {
border-bottom: 1px dashed;
}
.input-with-label {
border: 1px inset #808080;
border-radius: 0.5em;
padding: 0.25em 0.4em;
|