Skip to content

Commit

Permalink
remove table striped add hover
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Jul 9, 2015
1 parent 62f7794 commit b74d112
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modules/gpio/html/gpio_status.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<?php if ( $numRows > '0' ) { ?>
<div class="panel panel-default">
<div class="panel-heading">GPIO</div>
<table class="table table-striped">
<table class="table table-hover">
<?php
foreach ( $result as $a) {
$gpio=$a['gpio'];
Expand Down
2 changes: 1 addition & 1 deletion modules/hosts/html/hosts_status.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<?php if ( $numRows > '0' ) { ?>
<div class="panel panel-default">
<div class="panel-heading">Monitoring</div>
<table class="table table-striped">
<table class="table table-hover">
<?php
foreach ( $result as $a) {
?>
Expand Down
2 changes: 1 addition & 1 deletion modules/relays/html/relays_status.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<?php if ( $numRows > '0' ) { ?>
<div class="panel panel-default">
<div class="panel-heading">WiFi Relays</div>
<table class="table table-striped">
<table class="table table-hover">
<?php
foreach ( $result as $a) {
$ip=$a['ip'];
Expand Down
2 changes: 1 addition & 1 deletion modules/sensors/html/sensor_status.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
$sth = $db->prepare("select * from sensors");
$sth->execute();
$result = $sth->fetchAll(); ?>
<table class="table table-striped">
<table class="table table-hover">
<tbody>
<?php
foreach ($result as $a) {
Expand Down
2 changes: 1 addition & 1 deletion modules/sensors/read
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ chmod 775 $dir/tmp/log.txt
chown root.www-data $dir/tmp/log.txt
fi

echo "$date temp_dev_read - read sensors" >> $dir/tmp/log.txt
#echo "$date temp_dev_read - read sensors" >> $dir/tmp/log.txt

db=`ls $dir/db/`
if [[ -z "$db" ]]; then
Expand Down

0 comments on commit b74d112

Please sign in to comment.