Dashboard - 3rd Column - $100
-
Some sort of CSS script/stylesheat to control how it looks and how much it fills your screen.
Many are running widescreens nowadays and PF has not adopted to that. Many things would look much nicer in 90% of the screen instead of only using 50%….
-
If someone wanted to make a whole "widescreen" theme that would be good, as long as it was an option. Most of the GUI is coded to fit inside of the current layout and can get a little fun where things spill over that width. It's mainly CSS and some hardcoded div/table sizes here and there that would be the hard parts here.
It would look nicer on some monitors but would come at the expense of supporting smaller screens. We already have some code to switch to a basic theme on Android, iPhone, and iPad, but beyond that it gets fuzzy.
It is true that most desktops have large widescreens these days but if you're on-site or in a datacenter trying to manage a firewall at a critical time, odds are you are using a laptop or netbook that has a much more limited screen size.
-
I figured that someone would know the particulars of what was hard-coded PHP/Javascript and what was defined by style sheets. I also realize that page headers and footers, menus, and the notification area need to be considered as well. I prefer "aestheticly pleasing" to "just tacked on," plus it's a big boost when trying to convince Corporate America to take FOSS seriously. A high degree of polish on a UI is about the only thing the management types really notice (and measure credibility by) in my world.
And I seriously wouldn't be surprised if it turns out to be a much bigger hassle than I already suspect it is. But I do already have 23" flat panels invading the data center and it looks silly when I have to run two Firefox windows side-by-side. A 3-column and/or a 4-column pfsense_ng theme would be awesome. Or sidebar/desktop widgets, or…. If anyone else has any other ideas?...
I know $100 doesn't cover it, but it's a place to start.
Thanks for listening.
-
Heyy jimp !
Can you point me in the direction of CSS in pfsense and the hardcoded tables???
It would be very nice if you could save the theme that you have done.
-
CSS is all in the themes. /usr/local/www/themes/
As for the hardcoded stuff, it's all over every file. 2.0 is a lot more themable than 1.2.x was but I think there's still some work to be done for future versions.
-
Found the Css :)
-
It's a lot of very delicate work. I took a look, you'd even have to redo some images.
Thus said I'll do it for $300. -
Many thanks for at least looking at it, Supermule. If you're still interested in trying please say so.
Otherwise…,
Evgeny, I can bump the bounty to $200 total but that's my limit right now.
Does ANYONE else think this feature has value beside me? Anyone?... Bueller?...
Seriously, $200 payable this Friday No escrow needed. I trust you guys. If no one else is willing to pony up the rest of the bounty within a week I'll just let it go quietly unto the night.
Thanks.
-
I think it is worth to mention that it is not only about css, at least index.php will have to be modified.
-
Oh, I know. It looks like a pain. But I didn't write it. I've been wondering if it had ever been built with scaling up or out in mind. And I'm not sure I've covered all of the places and files where mods would be necessary.
And keep in mind, I'm just talking about the dashboard here, even though it could impact the whole theme.
Would widget sizing or scaling be easier, maybe to get back some of that feeling of vertical space? What about tacking a widget in a pop-up that could be places independently of the browser window?
Thanks to all who have given it some thought. At least you're thinking about it, perhaps for the future.
Like I said, I'll give it a week or so and then let it go if there's no other interest.
Thanks again.
-
The CSS is a pain…..and if Index.php needs attention, then my knowledge of PHP is not enough.
The images are not scaling, besides the bottom red area. I can scale that to 100% no issues....The top doesnt want to play along.
-
And keep in mind, I'm just talking about the dashboard here, even though it could impact the whole theme.
Would widget sizing or scaling be easier, maybe to get back some of that feeling of vertical space? What about tacking a widget in a pop-up that could be places independently of the browser window?
Yes this will impact the whole theme.
About sizing/scaling - there is no problem (it can be done fairly easy) to add third column but will you enjoy smaller widgets fitting this 800px wide white area in the middle of the screen? I guess no. I tend to think that the whole theme should be redone to provide flexibility showing nice on both 'narrow' and wide monitors, dynamically adjusting number of columns for widgets. -
Absolutely agree on this!
And keep in mind, I'm just talking about the dashboard here, even though it could impact the whole theme.
Would widget sizing or scaling be easier, maybe to get back some of that feeling of vertical space? What about tacking a widget in a pop-up that could be places independently of the browser window?
Yes this will impact the whole theme.
About sizing/scaling - there is no problem (it can be done fairly easy) to add third column but will you enjoy smaller widgets fitting this 800px wide white area in the middle of the screen? I guess no. I tend to think that the whole theme should be redone to provide flexibility showing nice on both 'narrow' and wide monitors, dynamically adjusting number of columns for widgets. -
Hi,
I can do both PHP and CSS. I can take this if Supermule and Evgeny are busy. :)
[ simon.cpu ]
-
Hi,
I can do both PHP and CSS. I can take this if Supermule and Evgeny are busy. :)
[ simon.cpu ]
Hi,
I am 75% done. But if you want to do it for $100 please go ahead, I think 2low4zero will be happy (as nobody else is willing to pay) ;-) -
Really!?!
Do I owe you a little cash Evgeny? 200 bucks for chips and beverages? I know that amount certainly doesn't pay you for your time and effort. And I don't suppose my gratitude will buy you much on Amazon or NewEgg, but you have it none-the-less. Thank you.
I kind of thought others would find this feature to have some value….
Feel free to pm me with the particulars for payment if you wish. I'll be happy to pay promptly.
Many thanks.
-
Do I owe you a little cash Evgeny?
Let's test it first -) I'll PM you when it is ready and on how to test it.
-
Ok, I redid lots of css, added/removed/modified some pictures, now the whole theme adjusts to browser's window size pretty nice.
Now I am trying to make it perfect by letting web-server to decide how many columns to give you for widgets (based on width of your browser window) but I hit a roadblock that I can't seem to find solution for.
How can php code (server side) be aware of browser window current width (client side)? I tried cookie but it works only if you refresh after resizing the window…
Any hints will be appreciated. I really would not like to hard code number of columns...
Thanks. -
It probably can't, because that has to be determined by javascript.
Why does the PHP code have to know? Couldn't you shuffle the widgets around or rewrite the widget container using only javascript?
-
Ok, I redid lots of css, added/removed/modified some pictures, now the whole theme adjusts to browser's window size pretty nice.
Now I am trying to make it perfect by letting web-server to decide how many columns to give you for widgets (based on width of your browser window) but I hit a roadblock that I can't seem to find solution for.
How can php code (server side) be aware of browser window current width (client side)? I tried cookie but it works only if you refresh after resizing the window…
Any hints will be appreciated. I really would not like to hard code number of columns...
Thanks.Just do something like:
$_GET['var'] will then contain the value "123". Of course, it will all depend on what you're trying to do. A better solution is to modify the HTML using JavaScript instead. :)