Merge pull request #159 from gms10ur/upcoming
fixed "Confirm?" icons and switched PNG's to SVG's
This commit is contained in:
commit
622749ee21
5 changed files with 9 additions and 7 deletions
1
src/renderer/assets/feather/x-circle-white.svg
Normal file
1
src/renderer/assets/feather/x-circle-white.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x-circle"><circle cx="12" cy="12" r="10"></circle><line x1="15" y1="9" x2="9" y2="15"></line><line x1="9" y1="9" x2="15" y2="15"></line></svg>
|
After Width: | Height: | Size: 339 B |
Binary file not shown.
Before Width: | Height: | Size: 3.9 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3 KiB |
|
@ -2095,7 +2095,7 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
|||
}
|
||||
|
||||
.md-ico-play {
|
||||
content:url("./assets/playPng.png");
|
||||
content:url("./assets/play.svg");
|
||||
width: 10px;
|
||||
height: 12px;
|
||||
margin-right: 1px;
|
||||
|
@ -2103,15 +2103,16 @@ input[type="range"].web-slider.display--small::-webkit-slider-thumb {
|
|||
}
|
||||
|
||||
.md-ico-shuffle {
|
||||
content:url("./assets/shufflePng.png");
|
||||
width: 15px;
|
||||
height: 13px;
|
||||
content:url("./assets/shuffle.svg");
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
margin-right: 1px;
|
||||
margin-bottom: -2px;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.md-ico-remove {
|
||||
content:url("./assets/feather/x-circlePng.png");
|
||||
content:url("./assets/feather/x-circle-white.svg");
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-right: 1px;
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
{{ (!inLibrary) ? "Add to Library" : "Remove from Library" }}
|
||||
</button>
|
||||
<button class="md-btn" style="min-width: 180px;" v-if="confirm==true"
|
||||
@click="(!inLibrary) ? addToLibrary(data.attributes.playParams.id.toString()) : removeFromLibrary(data.attributes.playParams.id.toString()) "> <img class="md-ico-remove">
|
||||
@click="(!inLibrary) ? addToLibrary(data.attributes.playParams.id.toString()) : removeFromLibrary(data.attributes.playParams.id.toString()) "> <img :class="(!inLibrary) ? 'md-ico-add' : 'md-ico-remove'">
|
||||
Confirm?
|
||||
</button>
|
||||
<button class="more-btn-round" style="float:right;" @click="menu">
|
||||
|
@ -111,7 +111,7 @@
|
|||
{{ (!inLibrary) ? "Add to Library" : "Remove from Library" }}
|
||||
</button>
|
||||
<button class="md-btn" style="min-width: 180px;" v-if="confirm==true"
|
||||
@click="(!inLibrary) ? addToLibrary(data.attributes.playParams.id.toString()) : removeFromLibrary(data.attributes.playParams.id.toString()) "> <img class="md-ico-remove">
|
||||
@click="(!inLibrary) ? addToLibrary(data.attributes.playParams.id.toString()) : removeFromLibrary(data.attributes.playParams.id.toString()) "> <img :class="(!inLibrary) ? 'md-ico-add' : 'md-ico-remove'">
|
||||
Confirm?
|
||||
</button>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue