Skip to content

Commit

Permalink
Added Tooltips to Devices, modified styles
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstocker committed Feb 11, 2019
1 parent 889816c commit 7d89c8e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 12 deletions.
25 changes: 23 additions & 2 deletions CHANGELOG.md
@@ -1,5 +1,4 @@
# SensorLogger

### 0.1.0 UNRELEASED
* Added deleteDeviceType, deleteDeviceGroup, deleteDeviceType thanks to @issb-gh #6
* Fix bug in registerDevice, added some more checks on api registerDevice params
Expand All @@ -13,7 +12,25 @@
* Modified registerDevice set deviceParentGroup optional
* Modified Device Sidebar content by adding some Labels
* Modified Device Sidebar Select boxes by making the ability to create on the fly more visible

* Added Share/Edit Icons to Devices. Removed Delete Icon because of already existing wipeOut action in Sidebar. #19 #74
* Updated Controllers, Templates und JS
* Fix index error on registerDevice, api registerDevice params validation
* Updated README
* Added missing initial Migration replaces database.xml
* Updated CHANGELOG by adding some issue mentions #71 #69
* Added data valiation on createLog #69. Added Database Migration to add unique index on user_id and uuid
* Modified registerDevice and Device Sidebar
* Added some more data validation #69 @vitoller
* Removed obsolete and undefined properties in LogExtended
* Adding some more requirements
* Fixed min-version tag due semver minor update compatibility
* Update README.md
* Syncronisation Release to close gap between SensorLogger vor Owncloud and Nextcloud
* SensorLogger Release Version 0.0.7 for owncloud
* Prepare Release 0.0.7
* Updated CHANGELOG
* WipeOut Device #49

### 0.0.10 UNRELEASED


Expand Down Expand Up @@ -81,3 +98,7 @@

* dashboard widget (list and last)
* chart view

-- Alexander Stocker
-- alexstocker
-- Ozzie Isaacs
6 changes: 3 additions & 3 deletions css/style.css
Expand Up @@ -5,7 +5,7 @@
font-weight: bold;
line-height: 24px;
min-height: 24px;
padding: 16px 55px 13px;
padding: 16px 15px 13px;
text-shadow: 0 1px 0 white;
word-wrap: break-word;
}
Expand All @@ -19,7 +19,7 @@
left: 0;
overflow: auto;
right: 0;
top: 55px;
top: 15px;
}

div.right,
Expand Down Expand Up @@ -51,7 +51,7 @@ span.center {
#app-sidebar div.content-wrapper .body .bodyDetails {
border-bottom: 1px dotted;
/* height: 46px; */
padding: 9px 20px 9px 55px;
padding: 9px 20px 9px 15px;
position: relative;
text-shadow: 0 1px 0 white;
border-top: none;
Expand Down
8 changes: 1 addition & 7 deletions js/script.js
Expand Up @@ -392,13 +392,7 @@
'.deviceactions > a.action-share, ' +
'.deviceactions > a.action-menu', function(e) {
var target = $(e.target);
/*
if(e.target.nodeName != 'TD') {
return;
}
*/

console.log(target);
$(".confirm-container").remove();

$(target).parent().tooltip('hide');

Expand Down

0 comments on commit 7d89c8e

Please sign in to comment.