forked from openhab/openhab-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Float the "send message" container to the right (openhab#105)
Otherwise, the container will be displayed directly under the aside navigation container, if it hasn't enough items to "move" the "send message" container to the right. This is inconsistent behaviour dependant on the number of devices the user has registered. With the float to right, the "send message" container is always visible on the right side of the page.
- Loading branch information
1 parent
5484be9
commit d8703be
Showing
3 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
var uncss = require('uncss'); | ||
|
||
var files = ['http://localhost:3000'], | ||
options = { | ||
ignoreSheets : [/bootstrap/], | ||
}; | ||
|
||
uncss(files, options, function (error, output) { | ||
console.log(output); | ||
}); | ||
|
||
/* Look Ma, no options! */ | ||
uncss(files, function (error, output) { | ||
console.log(output); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters