1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Tweak style of movie path template on "add movies" screen (#3108)

This commit is contained in:
Ricardo Amaral 2018-10-30 21:06:32 +00:00 committed by Leonardo Galli
parent 97f111bec8
commit 2da1d9f105
2 changed files with 11 additions and 1 deletions

View File

@ -1,2 +1,4 @@
{{path}}<br>
<span title="{{#if movieFile.relativePath}}&nbsp;{{movieFile.relativePath}}{{/if}}" class="hint" style="font-size: 12px;">{{#if movieFile.relativePath}}&nbsp;{{movieFile.relativePath}}{{else}}&nbsp;Movie File Not Found{{/if}}</span>
<span title="{{#if movieFile.relativePath}}&nbsp;{{movieFile.relativePath}}{{/if}}" class="hint path">
{{#if movieFile.relativePath}}&#9493;&nbsp;{{movieFile.relativePath}}{{else}}&#9493;&nbsp;Movie File Not Found{{/if}}
</span>

View File

@ -1,3 +1,4 @@
@import "../Content/Bootstrap/mixins";
@import "../Shared/Styles/card.less";
@import "../Shared/Styles/clickable.less";
@ -130,6 +131,13 @@
.hint {
color : #999999;
font-style : italic;
&.path {
.text-overflow();
display: block;
font-size: 12px;
}
}
.monitor-tooltip-contents {