Clean up Web Apps

This commit is contained in:
Jonathan Wong 2016-01-13 00:16:50 -08:00
parent 16a09407e4
commit 325ad4094e
3 changed files with 12 additions and 18 deletions

View file

@ -21,25 +21,20 @@ from plexpy import version
<link rel="shortcut icon" href="interfaces/default/images/favicon.png"> <link rel="shortcut icon" href="interfaces/default/images/favicon.png">
<!-- Allow web app to be run in full-screen mode. --> <!-- Allow web app to be run in full-screen mode. -->
<meta name="apple-mobile-web-app-capable" <meta name="apple-mobile-web-app-capable" content="yes">
content="yes">
<!-- Configure the status bar. --> <!-- Configure the status bar. -->
<meta name="apple-mobile-web-app-status-bar-style" <meta name="apple-mobile-web-app-status-bar-style" content="black">
content="black">
<!-- Set the viewport. --> <!-- Set the viewport. -->
<meta name="viewport" <meta name="viewport" content="initial-scale=1">
content="initial-scale=1">
<!-- Disable automatic phone number detection. --> <!-- Disable automatic phone number detection. -->
<meta name="format-detection" <meta name="format-detection" content="telephone=no">
content="telephone=no">
<!-- ICONS --> <!-- ICONS -->
<!-- IE10 icon --> <!-- IE10 icon -->
<meta name="application-name" content="PlexPy" /> <meta name="application-name" content="PlexPy" />
<meta name="msapplication-config" content="interfaces/default/xml/IEconfig.xml"/> <meta name="msapplication-config" content="interfaces/default/xml/IEconfig.xml"/>
<!-- Android >M39 icon --> <!-- Android >M39 icon -->
<link rel="manifest" href="interfaces/default/json/Android-manifest.json"> <link rel="manifest" href="interfaces/default/json/Android-manifest.json">
<!-- iPad retina icon --> <!-- iPad retina icon -->
<link href="interfaces/default/images/res/ios/icon-76@2x.png" sizes="152x152" rel="apple-touch-icon-precomposed"> <link href="interfaces/default/images/res/ios/icon-76@2x.png" sizes="152x152" rel="apple-touch-icon-precomposed">
<!-- iPad retina icon (iOS < 7) --> <!-- iPad retina icon (iOS < 7) -->

View file

@ -2470,8 +2470,7 @@ a .home-platforms-instance-list-oval:hover,
left: 0; left: 0;
overflow-x: hidden; overflow-x: hidden;
overflow-y: scroll; overflow-y: scroll;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 15px; width: 15px;

View file

@ -2,10 +2,10 @@
<browserconfig> <browserconfig>
<msapplication> <msapplication>
<tile> <tile>
<square70x70logo src="interfaces/default/images/res/ie10/tiny.png"/> <square70x70logo src="../images/res/ie10/tiny.png"/>
<square150x150logo src="interfaces/default/images/res/ie10/square.png"/> <square150x150logo src="../images/res/ie10/square.png"/>
<wide310x150logo src="interfaces/default/images/res/ie10/wide.png"/> <wide310x150logo src="../images/res/ie10/wide.png"/>
<square310x310logo src="interfaces/default/images/res/ie10/large.png"/> <square310x310logo src="../images/res/ie10/large.png"/>
<TileColor>#1F1F1F</TileColor> <TileColor>#1F1F1F</TileColor>
</tile> </tile>
</msapplication> </msapplication>