Re: [css-d] Firefox issue

2014-08-16 Thread Norman Fournier
On 2014-08-15, at 7:09 PM, Karl DeSaulniers wrote:

 My situation is I have a font cooper-black and when I copy css out of 
 Firefox, I get cooper-#000.

That is hilarious, and more annoying than autofill.
__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Firefox issue

2014-08-15 Thread Philippe Wittenbergh

Le 16 août 2014 à 10:09, Karl DeSaulniers k...@designdrumm.com a écrit :

 Don't know if anyone here can direct me in the right direction, but I am 
 looking for where to submit bug reports to Firefox.
 I found an issue with their inspect element plugin where it is not copying 
 css correctly from this inspect element area to another page.
 
 My situation is I have a font cooper-black and when I copy css out of 
 Firefox, I get cooper-#000.

lollollol

bug…

 Anyone have a search term or url I could use to submit this to Firefox?

https://bugzilla.mozilla.org/

Philippe
--
Philippe Wittenbergh
http://l-c-n.com/





__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Firefox issue

2014-08-15 Thread Karl DeSaulniers
Done. 
Thanks Phillippe.

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com



On Aug 15, 2014, at 8:12 PM, Philippe Wittenbergh e...@l-c-n.com wrote:

 
 Le 16 août 2014 à 10:09, Karl DeSaulniers k...@designdrumm.com a écrit :
 
 Don't know if anyone here can direct me in the right direction, but I am 
 looking for where to submit bug reports to Firefox.
 I found an issue with their inspect element plugin where it is not copying 
 css correctly from this inspect element area to another page.
 
 My situation is I have a font cooper-black and when I copy css out of 
 Firefox, I get cooper-#000.
 
 lollollol
 
 bug…
 
 Anyone have a search term or url I could use to submit this to Firefox?
 
 https://bugzilla.mozilla.org/
 
 Philippe
 --
 Philippe Wittenbergh
 http://l-c-n.com/
 
 
 
 
 
 __
 css-discuss [css-d@lists.css-discuss.org]
 http://www.css-discuss.org/mailman/listinfo/css-d
 List wiki/FAQ -- http://css-discuss.incutio.com/
 List policies -- http://css-discuss.org/policies.html
 Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Firefox issue

2006-06-05 Thread Dave Goodchild
On 05/06/06, [EMAIL PROTECTED] 
[EMAIL PROTECTED] wrote:

 Hi,

 I am pretty new to CSS. This file is fine with IE but when view through
 Firefox it does not display correctly. Any help would be greatly
 appreciated!

 http://www.ccclib.org/programs/srl_dsl.html
 http://www.ccclib.org/Style/programs.css


 Thanks
 Stacie
 __



I may be wrong, but as far as I can remember IE will stretch to accommodate
the images (incorrect behaviour) but the content will flow out of the box if
it is too wide in FF - ie, you have not left enough space to accommodate
your images.


-- 
http://www.web-buddha.co.uk

dynamic web programming from Reigate, Surrey UK (php, mysql, xhtml, css)

look out for project karma, our new venture, coming soon!
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Firefox issue

2006-06-05 Thread Guillaume Bokiau


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Firefox issue

2006-06-05 Thread Robert O'Rourke
[EMAIL PROTECTED] wrote:
 Hi, 

 I am pretty new to CSS. This file is fine with IE but when view through 
 Firefox it does not display correctly. Any help would be greatly 
 appreciated!

 http://www.ccclib.org/programs/srl_dsl.html
 http://www.ccclib.org/Style/programs.css


 Thanks
 Stacie
Hi Stacie,

Firefox is implementing the css correctly here while IE is getting 
things wrong as Mr Goodchild pointed out. It can make life easier to get 
a page looking good in firefox first and then tweak it for IE if necessary.
  
I've had a look at the css in the Firefox EditCss plugin and this 
should fix the problem:

.imageleft {
 float: left;
 width: 150px;
 padding: 20px;
}
.imageright {
 float: right;
 width: 150px;
 padding: 20px; /* padding plus width (150 + 20 + 20)  equals 190px */
}
.bodyright {
 margin-left: 190px; /* margin-left to keep the text from wrapping 
around the floated image */
 text-align: left;
 padding: 8px;
} 
.bodyleft {
 margin-right: 190px; /* same as above but moves the text to the right 
of the image */
 text-align: right;
 padding: 8px;
}


You should use an #id only once in an html document. If styles need 
to be applied more than once use a class name e.g. in this case i have 
changed #bodyleft to .bodyleft and so on (the html will need to be 
altered accordingly).

The best way to get to grips with floats and how to use them is to 
experiment or look for tutorials like this one:

http://css.maxdesign.com.au/floatutorial/

Good luck,
   Rob
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Firefox issue - Link outline on click

2005-08-09 Thread Uwe Kaiser

Hi, Philippe

Many thanks for the suggestion.
About one year ago I was searching for a solution
to visually eliminate the outline-box, too. But I
couldn't find a satisfying one :(

But now, it seems to became a nice day, today :-)


Uwe Kaiser




Philippe Wittenbergh schrieb:


On 9 Aug 2005, at 7:04 am, Haoshiro wrote:

Does anyone know if there is a way (using CSS) to stop Firefox from 
outlining a clicked link with a dotted border?


I have some tabs on my site and this behavior degrades the appearance 
of the tabs once they are clicked.  (Clicking somewhere else on the 
page removes focus from the link and the box is removed.)



It is governed by the outline property. If you want to remove it, think 
about it **twice** (at least), and provide another visual clue that the 
link has focus. Keyboard users will be happy.
 And don't forget, the user is under control. There is no way you'll 
manage to override my settings.


a:focus {
-moz-outline: 1px solid lime; /* Firefox 1.0x */
outline: 1px solid lime; /* Firefox nightly builds, DeerPark dev. 
releases */
outline-offset 3px;  /* Firefox nightly builds, DeerPark dev. 
releases */

}

Just a suggestion; adapt values to taste.

Philippe
---
Philippe Wittenbergh
http://emps.l-c-n.com/



__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Firefox issue - Link outline on click

2005-08-08 Thread Richard Grevers
On 8/9/05, Haoshiro [EMAIL PROTECTED] wrote:
 Does anyone know if there is a way (using CSS) to stop Firefox from
 outlining a clicked link with a dotted border?
 
 I have some tabs on my site and this behavior degrades the appearance of
 the tabs once they are clicked.  (Clicking somewhere else on the page
 removes focus from the link and the box is removed.)
 
No there isn't - its a usability aid and totally under the control of
the user. If you have problems with it (and never use keybaord
navigation) disable it in your browser and try to forget it exists.

-- 
Richard Grevers
New Plymouth, New Zealand
Orphan Gmail invites free to good homes.
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Firefox issue - Link outline on click

2005-08-08 Thread Haoshiro
Actually when I attempted that it caused the firefox window to lose 
focus (switching to another open firefox window.)


I do realize it is something of an accessibility feature but, 
personally, hardly see it's great usefullness.


Creating anchors, which I had previously overlooked adding while 
testing, has cured the problem.


Thanks for all responses!


IMO, there is no way by using CSS, and a JavaScript like
a href=# onfocus=this.blur()LINK/a
you won't use, I guess.


Regards,
Uwe Kaiser 



__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Firefox issue - Link outline on click

2005-08-08 Thread Philippe Wittenbergh


On 9 Aug 2005, at 7:04 am, Haoshiro wrote:

Does anyone know if there is a way (using CSS) to stop Firefox from 
outlining a clicked link with a dotted border?


I have some tabs on my site and this behavior degrades the appearance 
of the tabs once they are clicked.  (Clicking somewhere else on the 
page removes focus from the link and the box is removed.)


It is governed by the outline property. If you want to remove it, think 
about it **twice** (at least), and provide another visual clue that the 
link has focus. Keyboard users will be happy.
 And don't forget, the user is under control. There is no way you'll 
manage to override my settings.


a:focus {
-moz-outline: 1px solid lime; /* Firefox 1.0x */
	outline: 1px solid lime; /* Firefox nightly builds, DeerPark dev. 
releases */
	outline-offset 3px;  /* Firefox nightly builds, DeerPark dev. releases 
*/

}

Just a suggestion; adapt values to taste.

Philippe
---
Philippe Wittenbergh
http://emps.l-c-n.com/

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/