Aurora theme

Moderator: leecollings

devros
Posts: 183
Joined: Saturday 29 October 2016 20:55
Target OS: -
Domoticz version:
Contact:

Re: Aurora theme

Post by devros »

Hello,
Im playing with theme css, and have idea about custom image (PNG with transparency) on bottom page backgrounds for each Room (different energy monitoring ,tv, irrigation, security...).
For whole theme it works pretty well (i can post screenshots and css). But looks like, i cant change it individualy because rooms are not using any css identifiers.... Any idea how to solve this?
rhendriks
Posts: 44
Joined: Monday 23 December 2013 23:36
Target OS: Raspberry Pi / ODroid
Domoticz version: Newest
Location: Netherlands Helmond
Contact:

Re: Aurora theme

Post by rhendriks »

Theme button is gone.
I have update several times but there is no button.
How can I fix this?
Xztraz
Posts: 107
Joined: Tuesday 31 January 2017 21:54
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Aurora theme

Post by Xztraz »

rhendriks wrote: Monday 11 June 2018 19:29 Theme button is gone.
I have update several times but there is no button.
How can I fix this?
Running beta?
Test other browser with clean cache and files
SweetPants

Re: Aurora theme

Post by SweetPants »

rhendriks wrote: Monday 11 June 2018 19:29 Theme button is gone.
I have update several times but there is no button.
How can I fix this?
No problem on V3.9629
Theme_Button.png
rhendriks
Posts: 44
Joined: Monday 23 December 2013 23:36
Target OS: Raspberry Pi / ODroid
Domoticz version: Newest
Location: Netherlands Helmond
Contact:

Re: Aurora theme

Post by rhendriks »

SweetPants wrote: Tuesday 12 June 2018 12:35
rhendriks wrote: Monday 11 June 2018 19:29 Theme button is gone.
I have update several times but there is no button.
How can I fix this?
No problem on V3.9629
Theme_Button.png
Image
I mean this , normally stay under " Backup/Herstel" the theme button.
SweetPants

Re: Aurora theme

Post by SweetPants »

You mean like this?
Theme_aurora.png
rhendriks
Posts: 44
Joined: Monday 23 December 2013 23:36
Target OS: Raspberry Pi / ODroid
Domoticz version: Newest
Location: Netherlands Helmond
Contact:

Re: Aurora theme

Post by rhendriks »

SweetPants wrote: Tuesday 12 June 2018 19:17 You mean like this?
Yes
SweetPants

Re: Aurora theme

Post by SweetPants »

rhendriks wrote: Tuesday 12 June 2018 22:14
SweetPants wrote: Tuesday 12 June 2018 19:17 You mean like this?
Yes
Well, as you can see it's still there in V3.9629 :mrgreen: :mrgreen: :mrgreen:
Xztraz
Posts: 107
Joined: Tuesday 31 January 2017 21:54
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Aurora theme

Post by Xztraz »

I'm on latest beta and i see the theme button.

looking at the code for that

Code: Select all

// actually adding the settings tab.
    if (typeof(Storage) !== "undefined") { // Do we even have theme settings?
        if (!$('#tabtheme').length){
            
            // modifying settings menu
            $('#tabs .pull-right').before('<li id="themeTabButton"><a data-target="#tabtheme" data-toggle="tab" data-i18n="Theme">Theme</a></li>');
            // If were on a mobile phone, make the settingsmenu a dropdown.   
            $('#tabs li:not(.pull-right)').click(function() {
                if ($(window).width() < 480) {
                    $(this).parent().toggleClass('menuopen');
                    if( !$(this).parent().hasClass('menuopen') ){
                        $(this).siblings('li:not(.pull-right)').slideUp("fast");
                    }else{
                        $(this).siblings('li:not(.pull-right)').slideDown("fast");
                    }
                }else{
                    $(this).siblings().show(); //safety, if user scaled/rotated the screen.
                    $(this).parent().removeClass('menuopen');
                }
            });
            
            // inserting the themesettings.html
            $('#my-tab-content').append('<div class="tab-pane" id="tabtheme"><section id="theme">Loading..</section></div>');
            $('#my-tab-content #theme').load("acttheme/themesettings.html",loadedSettingsHTML);
            
            // loadedSettingsHTML() was here
            
        }
    } else {
        // No Web Storage support.. hmm.
    }
one fault condition could be no web storage. so have you blocked web pages to store local files or something in your browser? did you try with another browser?
Maes
Posts: 34
Joined: Tuesday 05 April 2016 20:45
Target OS: -
Domoticz version:
Contact:

Re: Aurora theme

Post by Maes »

When I change any settings and press save, all settings are reverted to default.

I'm using a baseURL in my domoticz, perhaps this needs special configuration with aurora?
I've tried using the parameter baseURL in custom.js but it doesn't do anything..
devros
Posts: 183
Joined: Saturday 29 October 2016 20:55
Target OS: -
Domoticz version:
Contact:

Re: Aurora theme

Post by devros »

Maes wrote: Thursday 14 June 2018 13:01 When I change any settings and press save, all settings are reverted to default.

I'm using a baseURL in my domoticz, perhaps this needs special configuration with aurora?
I've tried using the parameter baseURL in custom.js but it doesn't do anything..
Setting in aurora is saved afaik localy, so it looks like problem with you browser (cookies disabled or private browsing enabled :) )
Maes
Posts: 34
Joined: Tuesday 05 April 2016 20:45
Target OS: -
Domoticz version:
Contact:

Re: Aurora theme

Post by Maes »

Thanks for the help.
I checked and my chrome browser was still in pornhub mode.

I turned it off and the settings are "saved". However, the menu bar keeps going back to the top (but the setting clearly states that it should be a side bar)
prettydrawing.PNG
prettydrawing.PNG (65.99 KiB) Viewed 4752 times
devros
Posts: 183
Joined: Saturday 29 October 2016 20:55
Target OS: -
Domoticz version:
Contact:

Re: Aurora theme

Post by devros »

Maes wrote: Thursday 14 June 2018 14:23 Thanks for the help.
I checked and my chrome browser was still in pornhub mode.

I turned it off and the settings are "saved". However, the menu bar keeps going back to the top (but the setting clearly states that it should be a side bar)

prettydrawing.PNG
try reset theme to default setting and reset app-cache
Maes
Posts: 34
Joined: Tuesday 05 April 2016 20:45
Target OS: -
Domoticz version:
Contact:

Re: Aurora theme

Post by Maes »

devros wrote: Thursday 14 June 2018 14:28
Maes wrote: Thursday 14 June 2018 14:23 Thanks for the help.
I checked and my chrome browser was still in pornhub mode.

I turned it off and the settings are "saved". However, the menu bar keeps going back to the top (but the setting clearly states that it should be a side bar)

prettydrawing.PNG
try reset theme to default setting and reset app-cache
I tried this just now but it doesn't work.
If I uncheck the setting "Main menu as a sidebar" and check it again then the menu goes to the side. However, once I press "APPLY SETTINGS" the menu bar goes back to the top. The setting is still saved as checked, though.
jannnfe
Posts: 30
Joined: Tuesday 30 January 2018 0:27
Target OS: Linux
Domoticz version: Beta
Location: Germany
Contact:

Re: Aurora theme

Post by jannnfe »

Hello,
i love the Aurora Theme but i'm not able to get the Camera Live Stream in Dashboard.
It looks like this:
The attachment Bildschirmfoto 2018-06-14 um 23.43.04.png is no longer available
and my Camera is linked to this devices:
Bildschirmfoto 2018-06-14 um 23.43.04.png
Bildschirmfoto 2018-06-14 um 23.43.04.png (118.1 KiB) Viewed 4718 times
In the Settings the Camera Option of Aurora is enabled.
What to do?

Thanks! :)
devros
Posts: 183
Joined: Saturday 29 October 2016 20:55
Target OS: -
Domoticz version:
Contact:

Re: Aurora theme

Post by devros »

jannnfe wrote: Thursday 14 June 2018 23:46 Hello,
i love the Aurora Theme but i'm not able to get the Camera Live Stream in Dashboard.
It looks like this:
Bildschirmfoto 2018-06-14 um 23.43.04.png
and my Camera is linked to this devices:
Bildschirmfoto 2018-06-14 um 23.43.19.png
In the Settings the Camera Option of Aurora is enabled.
What to do?

Thanks! :)
Switch Dashboard mode from compact to normal...
then it should work
jannnfe
Posts: 30
Joined: Tuesday 30 January 2018 0:27
Target OS: Linux
Domoticz version: Beta
Location: Germany
Contact:

Re: Aurora theme

Post by jannnfe »

devros wrote: Friday 15 June 2018 8:42
jannnfe wrote: Thursday 14 June 2018 23:46 Hello,
i love the Aurora Theme but i'm not able to get the Camera Live Stream in Dashboard.
It looks like this:
Bildschirmfoto 2018-06-14 um 23.43.04.png

and my Camera is linked to this devices:
Bildschirmfoto 2018-06-14 um 23.43.19.png

In the Settings the Camera Option of Aurora is enabled.
What to do?

Thanks! :)
Switch Dashboard mode from compact to normal...
then it should work
No sorry also in Normal mode there is no preview of the camera live feed.
Cleared cache and browser history.
User avatar
bueno79
Posts: 83
Joined: Wednesday 08 March 2017 10:26
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.9700
Location: France
Contact:

Re: Aurora theme

Post by bueno79 »

Hi, did you try the theme with 4.9700 ? Does it fully work ? Sad it is not implemented by default...
Jem101
Posts: 66
Joined: Saturday 02 May 2015 21:26
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: Bexleyheath, SE London, UK
Contact:

Re: Aurora theme

Post by Jem101 »

I'm running the latest beta which is slightly ahead of the release version and the Aurora theme works just fine. Which is not to say that it definitely works with 4.97 but I'd be astonished if it doesn't.
I firmly believe in having an open mind - although not so open that your brain falls out!

- sometimes attributed to Carl Sagan, but the original quote is much older than that
User avatar
bueno79
Posts: 83
Joined: Wednesday 08 March 2017 10:26
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.9700
Location: France
Contact:

Re: Aurora theme

Post by bueno79 »

hi,

I've test and yes it works on 4.9700. Still a bug on kodi telecommande popup windows. I love the theme, very interesting but we should be able to choose which device we want to display in 'big' and which one in small. camera or weather are interresting in Big and there is a good add ed value. for Switchs small is enought.
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest