Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Desktop Client
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SpinShare
Desktop Client
Commits
a205475b
Commit
a205475b
authored
Sep 02, 2020
by
Andreas Heimann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed songrow headers, updated navigation
parent
efe9e1e9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
47 deletions
+13
-47
src/components/Song/SongRow.vue
src/components/Song/SongRow.vue
+13
-47
No files found.
src/components/Song/SongRow.vue
View file @
a205475b
<
template
>
<div
class=
"song-row song-row-new"
>
<div
class=
"song-header"
v-if=
"title"
>
<div
:class=
"'row-title ' + (noactions ? 'row-title-noactions' : '')"
>
{{
title
}}
</div>
<div
class=
"row-controls"
v-if=
"!noactions"
>
<slot
name=
"controls"
></slot>
</div>
</div>
<div
class=
"song-row"
>
<div
class=
"song-list"
>
<slot
name=
"song-list"
></slot>
</div>
<div
class=
"noresults"
>
</div>
<div
class=
"pagination"
v-if=
"!noactions"
>
<slot
name=
"controls"
></slot>
</div>
</div>
</
template
>
...
...
@@ -30,45 +27,6 @@
grid-template-rows: auto 1fr;
grid-gap: 5px;
& .song-header {
display: grid;
grid-template-columns: 1fr auto;
& .row-title {
letter-spacing: 0.25em;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
&.row-title-noactions {
margin: 10px 0px;
}
}
& .row-controls {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 15px;
& .item {
width: 28px;
height: 28px;
font-size: 22px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
&.disabled {
opacity: 0.4;
}
&:not(.disabled):hover {
background: rgba(255,255,255,0.2);
cursor: pointer;
}
}
}
}
& .song-list {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
...
...
@@ -86,6 +44,14 @@
display: block;
}
}
& .pagination {
text-align: right;
margin-top: 25px;
& .button {
margin-left: 10px;
display: inline;
}
}
}
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment