Mostly cosmetic changes
This commit is contained in:
parent
37a9e6cbf4
commit
0021ff17df
@ -49,8 +49,10 @@ func EditForm(obj interface{}, title string) string {
|
|||||||
endpoint := `/api/` + lowerCaseTypeName + `/` + id.String()
|
endpoint := `/api/` + lowerCaseTypeName + `/` + id.String()
|
||||||
|
|
||||||
var b bytes.Buffer
|
var b bytes.Buffer
|
||||||
|
|
||||||
b.WriteString(`<div class="widget-form">`)
|
b.WriteString(`<div class="widget-form">`)
|
||||||
b.WriteString(`<div class="widget" data-api="` + endpoint + `">`)
|
b.WriteString(`<div class="widget" data-api="` + endpoint + `">`)
|
||||||
|
|
||||||
b.WriteString(`<h1>`)
|
b.WriteString(`<h1>`)
|
||||||
b.WriteString(title)
|
b.WriteString(title)
|
||||||
b.WriteString(`</h1>`)
|
b.WriteString(`</h1>`)
|
||||||
|
@ -1,15 +1,20 @@
|
|||||||
component Track(track *arn.SoundTrack)
|
component Track(track *arn.SoundTrack)
|
||||||
SoundTrackTabs(track)
|
SoundTrackTabs(track)
|
||||||
|
|
||||||
|
.sound-track-full-page
|
||||||
if track.Title == ""
|
if track.Title == ""
|
||||||
h1 untitled
|
h1.mountable untitled
|
||||||
else
|
else
|
||||||
h1= track.Title
|
h1.mountable= track.Title
|
||||||
|
|
||||||
.sound-tracks
|
.widget-form.sound-track-media-list
|
||||||
SoundTrackAllMedia(track)
|
each media in track.Media
|
||||||
|
.widget.mountable
|
||||||
|
h3.widget-title= media.Service
|
||||||
|
.sound-track-media
|
||||||
|
ExternalMedia(media)
|
||||||
|
|
||||||
.footer.text-center
|
.footer.text-center.mountable
|
||||||
if track.EditedBy != ""
|
if track.EditedBy != ""
|
||||||
span Edited
|
span Edited
|
||||||
span.utc-date(data-date=track.Edited)
|
span.utc-date(data-date=track.Edited)
|
||||||
|
6
pages/soundtrack/soundtrack.scarlet
Normal file
6
pages/soundtrack/soundtrack.scarlet
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
.sound-track-media-list
|
||||||
|
vertical
|
||||||
|
|
||||||
|
.sound-track-media
|
||||||
|
iframe
|
||||||
|
width 100%
|
@ -8,7 +8,6 @@
|
|||||||
flex-basis 500px
|
flex-basis 500px
|
||||||
padding 1rem
|
padding 1rem
|
||||||
|
|
||||||
|
|
||||||
.sound-track-content
|
.sound-track-content
|
||||||
horizontal
|
horizontal
|
||||||
|
|
||||||
|
@ -20,6 +20,17 @@
|
|||||||
margin-bottom 1rem
|
margin-bottom 1rem
|
||||||
overflow hidden
|
overflow hidden
|
||||||
|
|
||||||
|
.widget-section
|
||||||
|
vertical
|
||||||
|
width 100%
|
||||||
|
|
||||||
|
.widget-title
|
||||||
|
text-align left
|
||||||
|
padding-bottom 0.5rem
|
||||||
|
border-bottom 1px solid rgba(0, 0, 0, 0.1)
|
||||||
|
// We need !important here to overwrite the h3:first-child rule
|
||||||
|
margin 1rem 0 !important
|
||||||
|
|
||||||
.widget-ui-element
|
.widget-ui-element
|
||||||
vertical-wrap
|
vertical-wrap
|
||||||
ui-element
|
ui-element
|
||||||
@ -36,17 +47,6 @@
|
|||||||
align-items center
|
align-items center
|
||||||
width 100%
|
width 100%
|
||||||
|
|
||||||
.widget-section
|
|
||||||
vertical
|
|
||||||
width 100%
|
|
||||||
|
|
||||||
.widget-title
|
|
||||||
text-align left
|
|
||||||
padding-bottom 0.5rem
|
|
||||||
border-bottom 1px solid rgba(0, 0, 0, 0.1)
|
|
||||||
// We need !important here to overwrite the h3:first-child rule
|
|
||||||
margin 1rem 0 !important
|
|
||||||
|
|
||||||
.widget-form
|
.widget-form
|
||||||
width 100%
|
width 100%
|
||||||
max-width 650px
|
max-width 650px
|
||||||
|
Loading…
Reference in New Issue
Block a user