Load web resources over HTTPS

This commit is contained in:
Will Hedgecock 2022-01-06 10:12:04 -06:00
parent a564dba8cd
commit 332b8bb612
2 changed files with 12 additions and 12 deletions

View File

@ -6,9 +6,9 @@
<meta http-equiv="X-UA-Compatible" content="chrome=1"> <meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="jSerialComm : Platform-independent serial port access for Java"> <meta name="description" content="jSerialComm : Platform-independent serial port access for Java">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script> <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script> <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>$(function() { $( ".tabs" ).tabs(); });</script> <script>$(function() { $( ".tabs" ).tabs(); });</script>
<link rel="shortcut icon" href="favicon.ico"> <link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css"> <link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">

View File

@ -439,7 +439,7 @@ Small Device Styles
} }
#tabs-nohdr .ui-tabs-nav { #tabs-nohdr .ui-tabs-nav {
padding-left: 0px; padding-left: 0px;
font-size: small; font-size: small;
background: transparent; background: transparent;
border-width: 0px 0px 1px 0px; border-width: 0px 0px 1px 0px;
-moz-border-radius: 0px; -moz-border-radius: 0px;
@ -455,13 +455,13 @@ Small Device Styles
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
box-shadow: none; box-shadow: none;
-webkit-box-shadow: none; -webkit-box-shadow: none;
-moz-box-shadow: none; -moz-box-shadow: none;
-o-box-shadow: none; -o-box-shadow: none;
-ms-box-shadow: none; -ms-box-shadow: none;
} }
#tabs-nohdr code { #tabs-nohdr code {
background: transparent; background: transparent;
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
} }