Re: [css-d] Safari 'overlabel' absolute position problem

2010-07-08 Thread Eystein Alnaes
Hi, I'm using the jQuery version ( http://scott.sauyet.com/thoughts/archives/2007/03/31/overlabel-with-jquery/ ) of the overlabel.js script from A List Appart ( http://www.alistapart.com/articles/makingcompactformsmoreaccessible). Hold on - this is a CSS question! I've triggered

[css-d] Tool to tell me where a rule is used

2010-07-08 Thread Ellen Herzfeld
Hello, I am doing a make over of a large site. There is a lot of tweaking. I use firebug and the webkit dev tools (and even the IE dev tools sometimes) but I'm looking for something different. When I go over my stylesheets to clean them up and organize them in a way that's comprehensible to

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread Chris F.A. Johnson
On Thu, 8 Jul 2010, Ellen Herzfeld wrote: Hello, I am doing a make over of a large site. There is a lot of tweaking. I use firebug and the webkit dev tools (and even the IE dev tools sometimes) but I'm looking for something different. When I go over my stylesheets to clean them up and

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread Jay Tanna
The only way I can think of is to to do a search for class name or ID name. Notepad is pretty good doing this. Try Edit, Find. Then you can use Find Next to go to the next occurence. For ID you will have only one item on the page so that is not the problem. hth --- On Thu, 8/7/10, Ellen

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread David Laakso
Ellen Herzfeld wrote: I would like a tool that takes a rule and goes through my pages and gives me a report on where the rule is actually really used. So if it isn't used anywhere anymore (most likely because I changed something somewhere) I will be able to remove it safely. Does this

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread Ellen Herzfeld
On 8 Jul 2010, at 19:04, David Laakso wrote: Perseverance and a clock without hands work well... :-) In the meantime, this finds unused CSS selectors: https://addons.mozilla.org/en-US/firefox/addon/5392/ Best, ~d Thanks for the tip. I'll try it out and will report back. Strange

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread Ellen Herzfeld
On 8 Jul 2010, at 19:01, Chris F.A. Johnson wrote: There's a standard tool on *nix systems called grep. For example, searching for the class 'nav', this will print the line numbers as well as lines containinf it: grep -n 'class=.*nav.*' file.html I believe it can be installed on

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread Dejan Kozina
Nearly there! I believe this Firebug extension might be what you're looking for: http://robertnyman.com/firefinder/ Firefinder is an extension to Firebug (in Firefox) and offers the functionality to, in a quick way, find HTML elements matching chosen CSS selector(s) or XPath expression. It allows

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread Ellen Herzfeld
On 8 Jul 2010, at 19:00, Jay Tanna wrote: The only way I can think of is to to do a search for class name or ID name. Notepad is pretty good doing this. Try Edit, Find. Then you can use Find Next to go to the next occurence. For ID you will have only one item on the page so that is

Re: [css-d] Tool to tell me where a rule is used

2010-07-08 Thread Climis, Tim
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d- boun...@lists.css-discuss.org] On Behalf Of Ellen Herzfeld Sent: Thursday, July 08, 2010 2:17 PM To: css-d@lists.css-discuss.org Cc: jta...@rocketmail.com Subject: Re: [css-d] Tool to tell me where a rule