Re: Grippies

2016-04-09 Thread Daniel

On 9/04/2016 1:02 AM, Ed Mullen wrote:

On 4/8/2016 7:38 AM, Daniel's fingers rattled off:

On 8/04/2016 4:51 AM, EE wrote:

Daniel wrote:

On 7/04/2016 7:32 AM, Stanimir Stamenkov wrote:

Wed, 6 Apr 2016 13:32:33 -0700, /Frosted Flake/:

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options
the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?


Both.  I want to make both a bit larger (wider, easier to select
with the mouse).


I'm still unsure if by wider you mean just thicker (depending on
horizontal/vertical orientation), but try placing the following
rules in
your "userChrome.css" [1], and see if it is all you need:

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
   min-width: 10px;
   background-position: center;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
   min-width: 115px;
   min-height: 10px;
}

Adjust the '10px' to your liking.

[1] http://kb.mozillazine.org/UserChrome.css


 and, of course, reboot SeaMonkey so the UserChrome.css changes are
incorporated into prefs.js! :-)


That is not incorporated into prefs.js, but into the interface
(controlled presumably by xulstore.json).


Is that right?? All this time, I though UserChrome.css stuff went into
prefs.js  or am I thinking user.js stuff gets copied into prefs.js??



user.js goes into prefs.js


O.K., Ta! So the brain is still working  just a bit slower!! :-)

--
Daniel

User agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 
SeaMonkey/2.40 Build identifier: 20160120202951

or
User agent: Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 
SeaMonkey/2.38 Build identifier: 20150903203501

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-08 Thread Stanimir Stamenkov

Fri, 8 Apr 2016 23:50:06 +0300, /Stanimir Stamenkov/:

Thu, 7 Apr 2016 19:51:10 -0400, /WaltS48/:

Stanimir Stamenkov wrote:


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";);

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px !important;
  min-height: 200px !important;
  background-size: contain;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
  min-width: 200px !important;
  min-height: 10px !important;
}


Well, that increased the size, but now I have 2 grippies in each
splitter.


Well, here's what I get:

http://i.imgur.com/N3VZf8M.png

This is with almost vanilla profile.  To rule out conflicts with
possible other customization you might have in your profile, you
could try enhancing the first rule given like:

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px !important;
  min-height: 200px !important;
  background-repeat: none;
  background-position: center;
  background-size: contain;
}


Again, add '!important' declarations, if you're using 
"userChrome.css" (vs. Stylish extension):


#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px !important;
  min-height: 200px !important;
  background-repeat: none !important;
  background-position: center !important;
  background-size: contain !important;
}

--
Stanimir
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-08 Thread Stanimir Stamenkov

Thu, 7 Apr 2016 19:51:10 -0400, /WaltS48/:

Stanimir Stamenkov wrote:


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";);

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px !important;
  min-height: 200px !important;
  background-size: contain;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
  min-width: 200px !important;
  min-height: 10px !important;
}


Well, that increased the size, but now I have 2 grippies in each
splitter.


Well, here's what I get:

http://i.imgur.com/N3VZf8M.png

This is with almost vanilla profile.  To rule out conflicts with 
possible other customization you might have in your profile, you 
could try enhancing the first rule given like:


#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px !important;
  min-height: 200px !important;
  background-repeat: none;
  background-position: center;
  background-size: contain;
}

--
Stanimir
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-08 Thread Ed Mullen

On 4/8/2016 7:38 AM, Daniel's fingers rattled off:

On 8/04/2016 4:51 AM, EE wrote:

Daniel wrote:

On 7/04/2016 7:32 AM, Stanimir Stamenkov wrote:

Wed, 6 Apr 2016 13:32:33 -0700, /Frosted Flake/:

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?


Both.  I want to make both a bit larger (wider, easier to select
with the mouse).


I'm still unsure if by wider you mean just thicker (depending on
horizontal/vertical orientation), but try placing the following
rules in
your "userChrome.css" [1], and see if it is all you need:

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
   min-width: 10px;
   background-position: center;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
   min-width: 115px;
   min-height: 10px;
}

Adjust the '10px' to your liking.

[1] http://kb.mozillazine.org/UserChrome.css


 and, of course, reboot SeaMonkey so the UserChrome.css changes are
incorporated into prefs.js! :-)


That is not incorporated into prefs.js, but into the interface
(controlled presumably by xulstore.json).


Is that right?? All this time, I though UserChrome.css stuff went into
prefs.js  or am I thinking user.js stuff gets copied into prefs.js??



user.js goes into prefs.js


--
Ed Mullen
http://edmullen.net/
Everyone has a right to be stupid. Some just abuse the privilege.
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-08 Thread Daniel

On 8/04/2016 4:51 AM, EE wrote:

Daniel wrote:

On 7/04/2016 7:32 AM, Stanimir Stamenkov wrote:

Wed, 6 Apr 2016 13:32:33 -0700, /Frosted Flake/:

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?


Both.  I want to make both a bit larger (wider, easier to select
with the mouse).


I'm still unsure if by wider you mean just thicker (depending on
horizontal/vertical orientation), but try placing the following rules in
your "userChrome.css" [1], and see if it is all you need:

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
   min-width: 10px;
   background-position: center;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
   min-width: 115px;
   min-height: 10px;
}

Adjust the '10px' to your liking.

[1] http://kb.mozillazine.org/UserChrome.css


 and, of course, reboot SeaMonkey so the UserChrome.css changes are
incorporated into prefs.js! :-)


That is not incorporated into prefs.js, but into the interface
(controlled presumably by xulstore.json).

Is that right?? All this time, I though UserChrome.css stuff went into 
prefs.js  or am I thinking user.js stuff gets copied into prefs.js??


--
Daniel

User agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 
SeaMonkey/2.40 Build identifier: 20160120202951

or
User agent: Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 
SeaMonkey/2.38 Build identifier: 20150903203501

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-08 Thread Daniel

On 8/04/2016 1:15 AM, Ed Mullen wrote:

On 4/7/2016 1:44 AM, Daniel's fingers rattled off:

On 6/04/2016 10:11 PM, WaltS48 wrote:

On 04/06/2016 03:09 AM, Daniel wrote:

On 6/04/2016 10:58 AM, WaltS48 wrote:

Frosted Flake wrote:

Richard Owlett wrote:

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have
made
effort to keep the same look-n-feel.

My set-up is a pane of mail and newsgroup folders. The right side is
divided horizontally in 2 panes.

The top pane displays the subject lines and authors of the folder
selected in left pane.
The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?




The things in the center of the divider.  They have a filled arrow at
each end and a series of dots between them



And it appears you have to enable the Modern theme to see them. No?

I certainly did not when using the default theme.


Walt, I'm on SM Default Theme and certainly do have the grippies ...
not that I've used them in yonks!!

Daniel




In the borders between the Folder pane and the Thread/Message panes to
the right of it,


with the little arrowheads pointing to the accounts pane on the left ...


  and between the Thread pane and Message pane below it?


with the little arrowheads pointing up towards the threads pane.



The arrows point down toward the message pane. ;-)


Gee whiz!! I thought I was joking when I responded that I need a new 
pair of glasses in one of my other NG's!! :-[  (I just had to refer to 
your webpage, Ed, to get that emoticon make-up! ;-P  )


--
Daniel

User agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 
SeaMonkey/2.40 Build identifier: 20160120202951

or
User agent: Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 
SeaMonkey/2.38 Build identifier: 20150903203501

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-07 Thread WaltS48

Stanimir Stamenkov wrote:

Fri, 8 Apr 2016 01:52:09 +0300, /Stanimir Stamenkov/:

Thu, 7 Apr 2016 11:23:25 -0400, /WaltS48/:


The userChrome.css suggested did not work for me.


Yes, you appear right.  Sorry about the confusion.  The rules I've
given need '!important' declarations for when placed in
"userChrome.css":
[...]


Here's "full size scale" variant as a bonus:

@namespace
url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";);

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px !important;
  min-height: 200px !important;
  background-size: contain;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
  min-width: 200px !important;
  min-height: 10px !important;
}



Well, that increased the size, but now I have 2 grippies in each splitter.

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-07 Thread Stanimir Stamenkov

Fri, 8 Apr 2016 01:52:09 +0300, /Stanimir Stamenkov/:

Thu, 7 Apr 2016 11:23:25 -0400, /WaltS48/:


The userChrome.css suggested did not work for me.


Yes, you appear right.  Sorry about the confusion.  The rules I've
given need '!important' declarations for when placed in
"userChrome.css":
[...]


Here's "full size scale" variant as a bonus:

@namespace 
url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";);


#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px !important;
  min-height: 200px !important;
  background-size: contain;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
  min-width: 200px !important;
  min-height: 10px !important;
}


I've tried these with no '!important' declarations working, but
applied via Stylish [1], actually.  I'm mostly using Stylish for all
of traditional "userContent.css" and "userChrome.css" customizations
ever since Bug 676054 [2] was implemented and then incorporated into
Stylish [3].  This is much preferred by me as it almost always
eliminates the need of '!important' declarations which often do more
harm than what they solve.

[1] https://addons.mozilla.org/addon/stylish
[2] https://bugzilla.mozilla.org/show_bug.cgi?id=676054
[3] https://github.com/JasonBarnabe/stylish/issues/78


--
Stanimir
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-07 Thread Stanimir Stamenkov

Thu, 7 Apr 2016 11:23:25 -0400, /WaltS48/:


The userChrome.css suggested did not work for me.


Yes, you appear right.  Sorry about the confusion.  The rules I've 
given need '!important' declarations for when placed in 
"userChrome.css":


@namespace 
url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";);


#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px !important;
  background-position: center;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
  min-width: 115px !important;
  min-height: 10px !important;
}

I've tried these with no '!important' declarations working, but 
applied via Stylish [1], actually.  I'm mostly using Stylish for all 
of traditional "userContent.css" and "userChrome.css" customizations 
ever since Bug 676054 [2] was implemented and then incorporated into 
Stylish [3].  This is much preferred by me as it almost always 
eliminates the need of '!important' declarations which often do more 
harm than what they solve.


[1] https://addons.mozilla.org/addon/stylish
[2] https://bugzilla.mozilla.org/show_bug.cgi?id=676054
[3] https://github.com/JasonBarnabe/stylish/issues/78

--
Stanimir
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-07 Thread EE

Daniel wrote:

On 7/04/2016 7:32 AM, Stanimir Stamenkov wrote:

Wed, 6 Apr 2016 13:32:33 -0700, /Frosted Flake/:

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?


Both.  I want to make both a bit larger (wider, easier to select
with the mouse).


I'm still unsure if by wider you mean just thicker (depending on
horizontal/vertical orientation), but try placing the following rules in
your "userChrome.css" [1], and see if it is all you need:

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
   min-width: 10px;
   background-position: center;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
   min-width: 115px;
   min-height: 10px;
}

Adjust the '10px' to your liking.

[1] http://kb.mozillazine.org/UserChrome.css


 and, of course, reboot SeaMonkey so the UserChrome.css changes are
incorporated into prefs.js! :-)

That is not incorporated into prefs.js, but into the interface 
(controlled presumably by xulstore.json).


___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-07 Thread Jonathan N. Little

Ed Mullen wrote:

If you're just wanting to size the pane you don't have to grab the
grippie: just grab the bar that it's on.  If you click the grippie it
will collapse the pane. Click again to restore.


Or just grab the panel frame anywhere along its length, the grippie is 
more ornamental except for the onclick behavior that Ed describes.


--
Take care,

Jonathan
---
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-07 Thread WaltS48

On 04/07/2016 11:17 AM, Ed Mullen wrote:

On 4/6/2016 4:32 PM, Frosted Flake's fingers rattled off:

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?


Both.  I want to make both a bit larger (wider, easier to select with
the mouse).




If you're just wanting to size the pane you don't have to grab the 
grippie: just grab the bar that it's on.  If you click the grippie it 
will collapse the pane. Click again to restore.




I think they want to enlarge the size of the bars because they have 
trouble doing what you suggest with them at the default size.


The userChrome.css suggested did not work for me.

--
Linux Mint 17.3
Go Pens! Go Bucs!
Visit Pittsburgh 
Coexist · Understanding Across Divides 
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-07 Thread Ed Mullen

On 4/6/2016 4:32 PM, Frosted Flake's fingers rattled off:

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?


Both.  I want to make both a bit larger (wider, easier to select with
the mouse).




If you're just wanting to size the pane you don't have to grab the 
grippie: just grab the bar that it's on.  If you click the grippie it 
will collapse the pane. Click again to restore.


--
Ed Mullen
http://edmullen.net/
A preposition must never be used to end a sentence with.
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-07 Thread Ed Mullen

On 4/7/2016 1:44 AM, Daniel's fingers rattled off:

On 6/04/2016 10:11 PM, WaltS48 wrote:

On 04/06/2016 03:09 AM, Daniel wrote:

On 6/04/2016 10:58 AM, WaltS48 wrote:

Frosted Flake wrote:

Richard Owlett wrote:

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have made
effort to keep the same look-n-feel.

My set-up is a pane of mail and newsgroup folders. The right side is
divided horizontally in 2 panes.

The top pane displays the subject lines and authors of the folder
selected in left pane.
The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?




The things in the center of the divider.  They have a filled arrow at
each end and a series of dots between them



And it appears you have to enable the Modern theme to see them. No?

I certainly did not when using the default theme.


Walt, I'm on SM Default Theme and certainly do have the grippies ...
not that I've used them in yonks!!

Daniel




In the borders between the Folder pane and the Thread/Message panes to
the right of it,


with the little arrowheads pointing to the accounts pane on the left ...


  and between the Thread pane and Message pane below it?


with the little arrowheads pointing up towards the threads pane.



The arrows point down toward the message pane. ;-)


It could be my choice of GTK3 theme on Linux. I see them using the
Modern theme, but not the Default theme in SeaMonkey.


This is on my Win7 WOW64 install, but I'd expect it's the same on my
Mageia Linux x86_64 install!




--
Ed Mullen
http://edmullen.net/
A preposition must never be used to end a sentence with.
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-06 Thread Daniel

On 7/04/2016 7:32 AM, Stanimir Stamenkov wrote:

Wed, 6 Apr 2016 13:32:33 -0700, /Frosted Flake/:

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?


Both.  I want to make both a bit larger (wider, easier to select
with the mouse).


I'm still unsure if by wider you mean just thicker (depending on
horizontal/vertical orientation), but try placing the following rules in
your "userChrome.css" [1], and see if it is all you need:

#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
   min-width: 10px;
   background-position: center;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
   min-width: 115px;
   min-height: 10px;
}

Adjust the '10px' to your liking.

[1] http://kb.mozillazine.org/UserChrome.css

 and, of course, reboot SeaMonkey so the UserChrome.css changes are 
incorporated into prefs.js! :-)


--
Daniel

User agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 
SeaMonkey/2.40 Build identifier: 20160120202951

or
User agent: Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 
SeaMonkey/2.38 Build identifier: 20150903203501

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-06 Thread Daniel

On 6/04/2016 10:11 PM, WaltS48 wrote:

On 04/06/2016 03:09 AM, Daniel wrote:

On 6/04/2016 10:58 AM, WaltS48 wrote:

Frosted Flake wrote:

Richard Owlett wrote:

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have made
effort to keep the same look-n-feel.

My set-up is a pane of mail and newsgroup folders. The right side is
divided horizontally in 2 panes.

The top pane displays the subject lines and authors of the folder
selected in left pane.
The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?




The things in the center of the divider.  They have a filled arrow at
each end and a series of dots between them



And it appears you have to enable the Modern theme to see them. No?

I certainly did not when using the default theme.


Walt, I'm on SM Default Theme and certainly do have the grippies ...
not that I've used them in yonks!!

Daniel




In the borders between the Folder pane and the Thread/Message panes to
the right of it,


with the little arrowheads pointing to the accounts pane on the left ...


  and between the Thread pane and Message pane below it?


with the little arrowheads pointing up towards the threads pane.


It could be my choice of GTK3 theme on Linux. I see them using the
Modern theme, but not the Default theme in SeaMonkey.


This is on my Win7 WOW64 install, but I'd expect it's the same on my 
Mageia Linux x86_64 install!


--
Daniel

User agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 
SeaMonkey/2.40 Build identifier: 20160120202951

or
User agent: Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 
SeaMonkey/2.38 Build identifier: 20150903203501

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-06 Thread Stanimir Stamenkov

Wed, 6 Apr 2016 13:32:33 -0700, /Frosted Flake/:

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?


Both.  I want to make both a bit larger (wider, easier to select
with the mouse).


I'm still unsure if by wider you mean just thicker (depending on 
horizontal/vertical orientation), but try placing the following 
rules in your "userChrome.css" [1], and see if it is all you need:


#folderpane-splitter > grippy,
#threadpane-splitter > grippy {
  min-width: 10px;
  background-position: center;
}

#folderpane-splitter[orient="vertical"] > grippy,
#threadpane-splitter[orient="vertical"] > grippy {
  min-width: 115px;
  min-height: 10px;
}

Adjust the '10px' to your liking.

[1] http://kb.mozillazine.org/UserChrome.css

--
Stanimir
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-06 Thread Frosted Flake

Stanimir Stamenkov wrote:

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options the
first grippy you list is a vertical one.  Making it wider would mean
making the whole vertical splitter wider.  The later grippy is a
horizontal one except in the "Vertical" layout.  Making it wider may
mean different things.  Which one you're after?

Both.  I want to make both a bit larger (wider, easier to select with 
the mouse).



--
Frosted Flake
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-06 Thread Stanimir Stamenkov

Tue, 5 Apr 2016 07:44:05 -0700, /Frosted Flake/:


Somewhere along the line I had the 'grippies' in the seamonkey mail
window made larger.  There are two that I am interested in; one
between the list of messages and mail accounts and the other below
the list of messages.

How do I change the size of these grippies to make them wider?


What View -> Layout are you using?  With all of the three options 
the first grippy you list is a vertical one.  Making it wider would 
mean making the whole vertical splitter wider.  The later grippy is 
a horizontal one except in the "Vertical" layout.  Making it wider 
may mean different things.  Which one you're after?


--
Stanimir
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-06 Thread WaltS48

On 04/06/2016 03:09 AM, Daniel wrote:

On 6/04/2016 10:58 AM, WaltS48 wrote:

Frosted Flake wrote:

Richard Owlett wrote:

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have made
effort to keep the same look-n-feel.

My set-up is a pane of mail and newsgroup folders. The right side is
divided horizontally in 2 panes.

The top pane displays the subject lines and authors of the folder
selected in left pane.
The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?




The things in the center of the divider.  They have a filled arrow at
each end and a series of dots between them



And it appears you have to enable the Modern theme to see them. No?

I certainly did not when using the default theme.


Walt, I'm on SM Default Theme and certainly do have the grippies ... 
not that I've used them in yonks!!


Daniel




In the borders between the Folder pane and the Thread/Message panes to 
the right of it, and between the Thread pane and Message pane below it?


It could be my choice of GTK3 theme on Linux. I see them using the 
Modern theme, but not the Default theme in SeaMonkey.


--
Linux Mint 17.3
Go Pens! Go Bucs!
Visit Pittsburgh 
Coexist · Understanding Across Divides 
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-06 Thread Daniel

On 6/04/2016 10:58 AM, WaltS48 wrote:

Frosted Flake wrote:

Richard Owlett wrote:

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have made
effort to keep the same look-n-feel.

My set-up is a pane of mail and newsgroup folders. The right side is
divided horizontally in 2 panes.

The top pane displays the subject lines and authors of the folder
selected in left pane.
The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?




The things in the center of the divider.  They have a filled arrow at
each end and a series of dots between them



And it appears you have to enable the Modern theme to see them. No?

I certainly did not when using the default theme.


Walt, I'm on SM Default Theme and certainly do have the grippies ... not 
that I've used them in yonks!!


Daniel


--
Daniel

User agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 
SeaMonkey/2.40 Build identifier: 20160120202951

or
User agent: Mozilla/5.0 (X11; Linux x86_64; rv:41.0) Gecko/20100101 
SeaMonkey/2.38 Build identifier: 20150903203501

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-05 Thread WaltS48

Frosted Flake wrote:

Richard Owlett wrote:

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have made
effort to keep the same look-n-feel.

My set-up is a pane of mail and newsgroup folders. The right side is
divided horizontally in 2 panes.

The top pane displays the subject lines and authors of the folder
selected in left pane.
The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?




The things in the center of the divider.  They have a filled arrow at
each end and a series of dots between them



And it appears you have to enable the Modern theme to see them. No?

I certainly did not when using the default theme.
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-05 Thread Frosted Flake

Richard Owlett wrote:

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have made
effort to keep the same look-n-feel.

My set-up is a pane of mail and newsgroup folders. The right side is
divided horizontally in 2 panes.

The top pane displays the subject lines and authors of the folder
selected in left pane.
The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?




The things in the center of the divider.  They have a filled arrow at 
each end and a series of dots between them

--
Frosted Flake
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-05 Thread EE

Richard Owlett wrote:

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have made
effort to keep the same look-n-feel.

My set-up is a pane of mail and newsgroup folders. The right side is
divided horizontally in 2 panes.

The top pane displays the subject lines and authors of the folder
selected in left pane.
The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?


There is a divider between the list pane and the message pane (if one is 
using that), which can be moved to change the height of either one. 
There is also a divider between the folder pane and the list pane which 
one can move to give more width to the folder pane.  With some themes, 
there is a visible grippy (with a different texture) in the middle, and 
with some, there is not.  In any case, the dividers can be moved.


___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Grippies

2016-04-05 Thread Richard Owlett

On 4/5/2016 9:44 AM, Frosted Flake wrote:

Somewhere along the line I had the 'grippies' in the seamonkey
mail window made larger.  There are two that I am interested in;
one between the list of messages and mail accounts and the other
below the list of messages.

How do I change the size of these grippies to make them wider?



I don't understand what you are talking about.
*CAUTION* I started with Netscape 4.? and with each upgrade have 
made effort to keep the same look-n-feel.


My set-up is a pane of mail and newsgroup folders. The right side 
is divided horizontally in 2 panes.


The top pane displays the subject lines and authors of the folder 
selected in left pane.

The lower pane displays the body of message selected in pane above.

What are the "grippies" you mention?


___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey