From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: The `link' face. Date: Fri, 08 Jul 2011 12:06:37 -0400 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1310142802 896 80.91.229.12 (8 Jul 2011 16:33:22 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 8 Jul 2011 16:33:22 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 08 18:33:17 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QfDzQ-0006Nm-OT for ged-emacs-devel@m.gmane.org; Fri, 08 Jul 2011 18:33:16 +0200 Original-Received: from localhost ([::1]:42154 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QfDzP-0002Zr-AN for ged-emacs-devel@m.gmane.org; Fri, 08 Jul 2011 12:33:15 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:51816) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QfDZk-0004D3-2r for emacs-devel@gnu.org; Fri, 08 Jul 2011 12:06:45 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QfDZi-0003TR-R0 for emacs-devel@gnu.org; Fri, 08 Jul 2011 12:06:43 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:47176 helo=ironport2-out.pppoe.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QfDZf-0003RF-0H; Fri, 08 Jul 2011 12:06:39 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EACgqF05MCqt8/2dsb2JhbABSp0d4yx6GOASefYQv X-IronPort-AV: E=Sophos;i="4.65,500,1304308800"; d="scan'208";a="123814255" Original-Received: from 76-10-171-124.dsl.teksavvy.com (HELO pastel.home) ([76.10.171.124]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 08 Jul 2011 12:06:37 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 6800D59160; Fri, 8 Jul 2011 12:06:37 -0400 (EDT) In-Reply-To: (Dan Nicolaescu's message of "Fri, 08 Jul 2011 10:49:11 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:141805 Archived-At: >> - it begs the question "what's the intended difference between the button >> and the link faces". I'd like to hear what people think about this issue. >> - while the "blue underlined" might be considered "the standard link >> appearance", when I look at web pages in my browser (with default >> config), I see that old-style plain pages indeed use "blue underlined" >> (and even bold for debbugs), whereas more modern designs >> (e.g. wikipedia and many more) use something more subdued such as just >> "blue with an underline for mouse highlighting", or even "nothing + >> mouse highlighting" when the context makes it clear that it's a link >> (e.g. for tab-like thingies, or menus, ...). >> So I'm tempted to change the `link' face by removing "blue" from it >> (most of the links use button.el so they used to appear as just > This doesn't quite follow from your wikipedia argument above. It does in the sense if you ignore the examples and focus on the "more subdued". >> "underline" without any blue, so it would leave the appearance mostly >> unchanged compared to Emacs-23). > You have said here in the past that your personal preference is to not > use colors for faces, but other attributes (bold/underline,etc). Most > users use colors, so it seems that your personal preference doesn't > quite match what most people do, and this proposed change suits more > your personal taste than anything else... That's true, although in this case my motivation is also to just revert to the old appearance. AFAICT nobody complained about the appearance of those buttons, just about the fact that the button face should inherit from the link face, so there are two ways to address the issue: - just inherit from link and hence change the appearance (what we have now). - inherit from link but also change link to what button used to be so as not to change the appearance. IIUC in web-design, different faces are used for different links mostly based on things like: - if context makes it clear that you can click on it, use something very subdued or even nothing at all (usually this is for menus and tabs which already have a different appearance). - if it's for links within some text and there might be many such links on words which aren't syntactically meant to be links (e.g. wikis), then use something subdued that tries not to render the text difficult to read. Also, I have the impression that as the notion of "hypertext" has become mainstream, links have become more discrete since you don't need them to be loud for people to find them, now that people know to expect them pretty much everywhere. Stefan