Our own favicons and touch icons.

Fix info modal not working on user history screen.
Minor styling fixes.
This commit is contained in:
Tim 2015-08-02 18:21:50 +02:00
commit 1200eae38e
11 changed files with 7 additions and 8 deletions

View file

@ -32,7 +32,7 @@ from plexpy import version
<link rel="icon" type="image/x-icon" href="interfaces/default/images/favicon.ico"/> <link rel="icon" type="image/x-icon" href="interfaces/default/images/favicon.ico"/>
<!-- touch icons --> <!-- touch icons -->
<link rel="shortcut icon" href="interfaces/default/images/favicon.ico"> <link rel="shortcut icon" href="interfaces/default/images/favicon.png">
<link rel="apple-touch-icon" href="interfaces/default/images/icon_iphone.png"> <link rel="apple-touch-icon" href="interfaces/default/images/icon_iphone.png">
<link rel="apple-touch-icon" sizes="72x72" href="interfaces/default/images/icon_ipad.png"> <link rel="apple-touch-icon" sizes="72x72" href="interfaces/default/images/icon_ipad.png">
<link rel="apple-touch-icon" sizes="114x114" href="interfaces/default/images/icon_iphone@2x.png"> <link rel="apple-touch-icon" sizes="114x114" href="interfaces/default/images/icon_iphone@2x.png">

View file

@ -85,7 +85,7 @@ img {
background-color: #111; background-color: #111;
float: left; float: left;
width: 100%; width: 100%;
margin: 0 10px 5px 1px; margin: 0 10px 5px 0;
} }
.activity-progress .bar { .activity-progress .bar {
background-color: #faa732; background-color: #faa732;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 7 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

Before After
Before After

View file

@ -19,7 +19,7 @@
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
<div class="padded-header"> <div class="padded-header">
<h3>Statistics (Past 30 days)</h3> <h3>Statistics <small>Last 30 days</small></h3>
</div> </div>
<div id="home-stats" class="user-platforms"> <div id="home-stats" class="user-platforms">
<div class='text-muted'><i class="fa fa-refresh fa-spin"></i> Loading stats...</div> <div class='text-muted'><i class="fa fa-refresh fa-spin"></i> Loading stats...</div>

View file

@ -121,7 +121,7 @@ DOCUMENTATION :: END
<div class="col-md-3"> <div class="col-md-3">
<div class="summary-content-people-wrapper hidden-xs hidden-sm"> <div class="summary-content-people-wrapper hidden-xs hidden-sm">
<div class="summary-content-actors"> <div class="summary-content-actors">
<h6><strong>Genres</strong></h6> <strong>Genres</strong>
<ul> <ul>
% for genre in data['genres']: % for genre in data['genres']:
% if loop.index < 5: % if loop.index < 5:
@ -134,7 +134,7 @@ DOCUMENTATION :: END
</div> </div>
<div class="summary-content-people-wrapper hidden-xs hidden-sm"> <div class="summary-content-people-wrapper hidden-xs hidden-sm">
<div class="summary-content-actors"> <div class="summary-content-actors">
<h6><strong>Starring</strong></h6> <strong>Starring</strong>
<ul> <ul>
% for actor in data['actors']: % for actor in data['actors']:
% if loop.index < 5: % if loop.index < 5:
@ -189,8 +189,7 @@ DOCUMENTATION :: END
</tbody> </tbody>
</table> </table>
</div> </div>
<div id="info-modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="info-modal" <div id="info-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="info-modal">
aria-hidden="true">
</div> </div>
</div> </div>
</div> </div>

View file

@ -46,7 +46,7 @@ DOCUMENTATION :: END
% elif item['type'] == 'movie': % elif item['type'] == 'movie':
<h3>${item['title']} (${item['year']})</h3> <h3>${item['title']} (${item['year']})</h3>
% endif % endif
<div class="muted" id="time-${item['time']}">${item['time']}</div> <div class="text-muted" id="time-${item['time']}">${item['time']}</div>
</div> </div>
</li> </li>
</div> </div>