Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Admin Panel Fluid Layout.
#1
This is a quick fix and I've probably missed a bit. But I needed to expand the layout of the admin panel as I was finding the small area a bit restrictive.

Anyways to enable fluid mode just install Chris's "Custom Admin CSS" plugin from Extend.

http://get-simple.info/extend/plugin/cus...in-css/15/

Then insert the following code under "Theme->Custom Admin CSS"

Code:
.wrapper{
width:99%;
}
.wrapper .nav{
width:99%;
}
.wrapper table {
width:99%;
}
form.manyinputs textarea {
width:99%;
}

#maincontent{
width:75%;
}
#sidebar{
width:24%;
}

and save, then refresh your page. Viola !!

Hope its of use to someone.

Mike....
My Github Repos: Github
Website: DigiMute
Reply
#2
Very useful, great tip! Thanks Mike.
Reply
#3
Carlos Wrote:Very useful, great tip! Thanks Mike.
This item is a dead-end these days. Has it been pulled or moved?
Reply
#4
i fixed the download - it's working now: http://get-simple.info/extend/plugin/cus...in-css/15/
- Chris
Thanks for using GetSimple! - Download

Please do not email me directly for help regarding GetSimple. Please post all your questions/problems in the forum!
Reply
#5
Cheers, Chris...
My Github Repos: Github
Website: DigiMute
Reply
#6
Really nice idea, I added some little personal changes...

Code:
.wrapper{
width:99%;
}

.wrapper .nav{
width:99%;
}

.wrapper .nav li:first-child {
margin-left: 35px;
}

.wrapper table {
width:99%;
}

form.manyinputs textarea, textarea, form input.title {
width:99% !important;
}

#maincontent{
width:75%;
}

#sidebar{
width:24%;
}

.header h1 {
left: 35px;
}
Author of GetSimple 3's Finnish Language file — http://get-simple.info/extend/language/f...guage/106/
Reply
#7
Thanks Mike and krisu, looking good on my end! Could come in handy for the netbook.
Reply
#8
Could this be done, but only for the editor height? (so that the Save changes button is always visible for a minimum browser height)
Reply
#9
Carlos Wrote:Could this be done, but only for the editor height? (so that the Save changes button is always visible for a minimum browser height)

There is an option for changing the height of the editor in gsconfig.php. I haven't tried it but it should work.
Reply
#10
usmandgreat Wrote:There is an option for changing the height of the editor in gsconfig.php. I haven't tried it but it should work.

Yes, it works. Thanks, but already I knew that. :-)

I meant fluid height: it would (dynamically) change if the browser window is resized.
Reply
#11
Heres mine

Code:
.wrapper{
/* main wrapper */
width:99%;
}

.wrapper .nav{
/* top header nav wrapper */
width:99%;
}

.wrapper .nav li:first-child {
/* breathing space for tabs */
margin-left: 35px;
}

.wrapper table {
/* tables in wrapper, eg page management lists */
width:99%;
}

#maincontent{
/* wrapper for admin inputs */
width:80%;
}

textarea, form input.title{
/* resize backend textareas */
/* outline backend administrative input fields for emphasis */
width:99% !important;
border:2px solid #FFCCCC !important;
}


form.manyinputs textarea{
/* resize backend textareas for components */
width:100% !important;
border:2px solid #FFCCCC !important;
}

I've done some work with auto expanding codemirror, but I have has issues with overflow overlapping the footer. Still trying to figure it out.
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply
#12
Oh god ! This tip helped a lot .. i'm new to GS, but i definitely lOoooove it ^^
Many thx
Reply
#13
Something like this is already added to 3.2.1

PHP Code:
# gsconfig
# Enable alternate admin styles, current style constants are
# note: stylesheets are cached
# GSSTYLEWIDE = wide fluid
# define('GSSTYLE',GSSTYLEWIDE); 
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply
#14
Oh god, good to know Smile Saw th option, but didn't tested !

Thx for the insight Wink
Reply




Users browsing this thread: 1 Guest(s)