Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove jquery dep, clean up some console warns, add in removed css dep from cockpit #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added cockpit.css.gz
Binary file not shown.
4 changes: 4 additions & 0 deletions sensors.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
padding: 0.5em;
}

#sensors-table {
margin-top: 1.5em;
}

.max {
color: orange;
font-weight: bold;
Expand Down
6 changes: 4 additions & 2 deletions sensors.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<!DOCTYPE html>
</html>
<head>
<title>Sensors</title>
<meta charset="utf-8">
<link href="../base1/cockpit.css" type="text/css" rel="stylesheet">
<link href="cockpit.css" type="text/css" rel="stylesheet">
<link href="sensors.css" type="text/css" rel="stylesheet">
<script src="../base1/jquery.js"></script>
<script src="../base1/cockpit.js"></script>
<script type="text/javascript" src="sensors.js"></script>
</head>
Expand All @@ -13,3 +14,4 @@
</table>
</div>
</body>
</html>