mirror of
https://github.com/Radarr/Radarr
synced 2024-12-23 08:22:39 +00:00
Fixed: Tweak style of movie path template on "add movies" screen (#3108)
This commit is contained in:
parent
97f111bec8
commit
2da1d9f105
2 changed files with 11 additions and 1 deletions
|
@ -1,2 +1,4 @@
|
|||
{{path}}<br>
|
||||
<span title="{{#if movieFile.relativePath}} {{movieFile.relativePath}}{{/if}}" class="hint" style="font-size: 12px;">{{#if movieFile.relativePath}} {{movieFile.relativePath}}{{else}} Movie File Not Found{{/if}}</span>
|
||||
<span title="{{#if movieFile.relativePath}} {{movieFile.relativePath}}{{/if}}" class="hint path">
|
||||
{{#if movieFile.relativePath}}┕ {{movieFile.relativePath}}{{else}}┕ Movie File Not Found{{/if}}
|
||||
</span>
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue