Moved tabs.css reference

-Change the path for the new location of tabs.css
-Local "style" migrated to "class"
This commit is contained in:
Alezia Kurdis 2020-03-18 18:38:41 -04:00 committed by GitHub
parent 022ea6c5fb
commit e52e1bafc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,14 @@
<!-- <!--
//VERSION 2.0
// Modified by Alezia Kurdis on on 02/27/2020
// for "Project Athena"
// //
// Addition of a tab mechanism instead of collapsible sections to reduce the scrolling.
//
//VERSION 1.0
// entityProperties.html // entityProperties.html
// //
// Created by Ryan Huffman on 13 Nov 2014 // Created by Ryan Huffman on 13 Nov 2014
// Copyright 2014 High Fidelity, Inc. // Copyright 2014 High Fidelity, Inc.
// Copyright 2020 Project Athena contributors.
// //
// Distributed under the Apache License, Version 2.0. // Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
--> -->
<html> <html>
<head> <head>
@ -21,7 +17,7 @@
<link rel="stylesheet" type="text/css" href="../../../html/css/edit-style.css"> <link rel="stylesheet" type="text/css" href="../../../html/css/edit-style.css">
<link rel="stylesheet" type="text/css" href="../../../html/css/colpick.css"> <link rel="stylesheet" type="text/css" href="../../../html/css/colpick.css">
<link rel="stylesheet" type="text/css" href="../../../html/css/jsoneditor.css"> <link rel="stylesheet" type="text/css" href="../../../html/css/jsoneditor.css">
<link rel="stylesheet" type="text/css" href="tabs/tabs.css"> <link rel="stylesheet" type="text/css" href="../../../html/css/tabs.css">
<script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script> <script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script>
<script src="../../../html/js/jquery-2.1.4.min.js"></script> <script src="../../../html/js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="../../../html/js/colpick.js"></script> <script type="text/javascript" src="../../../html/js/colpick.js"></script>
@ -50,13 +46,13 @@
</div> </div>
</div> </div>
</div> </div>
<table style="width:100%; min-height: 352px; display: block;"> <table class="tabsTableFrame">
<tr style="width:100%;"> <tr class="tabsTrFrame">
<td style="width:32px; vertical-align:top; background-color:#575757; padding:0px; border:0px;"> <td class = "tabsFrame">
<div id="tabs" class="tabsContainer"></div> <div id="tabs" class="tabsContainer"></div>
</td> </td>
<td style="width:100%; vertical-align: top; border:0px;"> <td class="tabsPropertiesFrame">
<div id="properties-pages" style="min-height: 352px; display: block;"> <div class="tabsPropertiesPage" id="properties-pages">
<!-- each property is added at runtime in entityProperties --> <!-- each property is added at runtime in entityProperties -->
</div> </div>
</td> </td>