зеркало из https://github.com/mozilla/gecko-dev.git
#73416 get icons in the threadpane for the classic skin. sr=bienvenu
This commit is contained in:
Родитель
5f0105df97
Коммит
d1b73bf9f8
|
@ -1,4 +1,4 @@
|
||||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
/*
|
||||||
* The contents of this file are subject to the Netscape Public
|
* The contents of this file are subject to the Netscape Public
|
||||||
* License Version 1.1 (the "License"); you may not use this file
|
* License Version 1.1 (the "License"); you may not use this file
|
||||||
* except in compliance with the License. You may obtain a copy of
|
* except in compliance with the License. You may obtain a copy of
|
||||||
|
@ -14,13 +14,22 @@
|
||||||
*
|
*
|
||||||
* The Initial Developer of the Original Code is Netscape
|
* The Initial Developer of the Original Code is Netscape
|
||||||
* Communications Corporation. Portions created by Netscape are
|
* Communications Corporation. Portions created by Netscape are
|
||||||
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
* Copyright (C) 1998-2001 Netscape Communications Corporation. All
|
||||||
* Rights Reserved.
|
* Rights Reserved.
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributor(s):
|
||||||
* mscott@netscape.com
|
* Scott MacGregor (mscott@netscape.com)
|
||||||
|
* Joe Hewitt (hewitt@netscape.com)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* ===== threadPane.css ==============================================
|
||||||
|
== Styles for the thread pane in the Messenger 3-pane window.
|
||||||
|
======================================================================= */
|
||||||
|
|
||||||
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||||
|
|
||||||
|
/* ::::: outliner rows ::::: */
|
||||||
|
|
||||||
outliner:focus > outliner-bodybox
|
outliner:focus > outliner-bodybox
|
||||||
{
|
{
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
|
@ -31,26 +40,6 @@ outliner > outliner-bodybox
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
outlinercol.threadColumnHeader {
|
|
||||||
list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinercol.threadColumnHeader[sortDirection="ascending"] {
|
|
||||||
list-style-image: url("chrome://messenger/skin/threadcol.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinercol.threadColumnHeader[sortDirection="descending"] {
|
|
||||||
list-style-image: url("chrome://messenger/skin/threadcol.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinercol.readColumnHeader {
|
|
||||||
list-style-image: url("chrome://messenger/skin/unreadmail.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinercol.flagColumnHeader {
|
|
||||||
list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinerbody:-moz-outliner-cell-text(unread)
|
outlinerbody:-moz-outliner-cell-text(unread)
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -61,6 +50,9 @@ outlinerbody:-moz-outliner-cell-text(offline)
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ::::: priority colors ::::: */
|
||||||
|
|
||||||
outlinerbody:-moz-outliner-cell-text(priority-highest)
|
outlinerbody:-moz-outliner-cell-text(priority-highest)
|
||||||
{
|
{
|
||||||
color:red;
|
color:red;
|
||||||
|
@ -81,5 +73,91 @@ outlinerbody:-moz-outliner-cell-text(priority-low)
|
||||||
color: rgb(85, 85, 85);
|
color: rgb(85, 85, 85);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ::::: message icons ::::: */
|
||||||
|
|
||||||
|
/* ::::: message column icons ::::: */
|
||||||
|
|
||||||
|
/* ..... thread column ..... */
|
||||||
|
|
||||||
|
outlinercol.threadColumnHeader {
|
||||||
|
list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinercol.threadColumnHeader[sortDirection="ascending"] {
|
||||||
|
list-style-image: url("chrome://messenger/skin/threadcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinercol.threadColumnHeader[sortDirection="descending"] {
|
||||||
|
list-style-image: url("chrome://messenger/skin/threadcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(threadCol, container) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/thread-closed.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(threadCol, container, open) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/thread-open.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(threadCol, container, unread) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/thread-new-closed.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(threadCol, container, unread, open) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/thread-new-open.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ..... read column ..... */
|
||||||
|
|
||||||
|
outlinercol.readColumnHeader {
|
||||||
|
list-style-image: url("chrome://messenger/skin/readcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(unreadButtonColHeader) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/readmail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(unreadButtonColHeader, unread) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/unreadmail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ..... flag column ..... */
|
||||||
|
|
||||||
|
outlinercol.flagColumnHeader {
|
||||||
|
list-style-image: url("chrome://messenger/skin/flagcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(flaggedCol) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/readmail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(flaggedCol, flagged) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ..... subject column ..... */
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-mail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, unread) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-mail-new.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, attach) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-mail-attach.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, imapdeleted) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-mail-imapdelete.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, news) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-news.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, news, unread) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-news-new.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
/*
|
||||||
* The contents of this file are subject to the Netscape Public
|
* The contents of this file are subject to the Netscape Public
|
||||||
* License Version 1.1 (the "License"); you may not use this file
|
* License Version 1.1 (the "License"); you may not use this file
|
||||||
* except in compliance with the License. You may obtain a copy of
|
* except in compliance with the License. You may obtain a copy of
|
||||||
|
@ -14,13 +14,22 @@
|
||||||
*
|
*
|
||||||
* The Initial Developer of the Original Code is Netscape
|
* The Initial Developer of the Original Code is Netscape
|
||||||
* Communications Corporation. Portions created by Netscape are
|
* Communications Corporation. Portions created by Netscape are
|
||||||
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
* Copyright (C) 1998-2001 Netscape Communications Corporation. All
|
||||||
* Rights Reserved.
|
* Rights Reserved.
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributor(s):
|
||||||
* mscott@netscape.com
|
* Scott MacGregor (mscott@netscape.com)
|
||||||
|
* Joe Hewitt (hewitt@netscape.com)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* ===== threadPane.css ==============================================
|
||||||
|
== Styles for the thread pane in the Messenger 3-pane window.
|
||||||
|
======================================================================= */
|
||||||
|
|
||||||
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||||
|
|
||||||
|
/* ::::: outliner rows ::::: */
|
||||||
|
|
||||||
outliner:focus > outliner-bodybox
|
outliner:focus > outliner-bodybox
|
||||||
{
|
{
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
|
@ -31,26 +40,6 @@ outliner > outliner-bodybox
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
outlinercol.threadColumnHeader {
|
|
||||||
list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinercol.threadColumnHeader[sortDirection="ascending"] {
|
|
||||||
list-style-image: url("chrome://messenger/skin/threadcol.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinercol.threadColumnHeader[sortDirection="descending"] {
|
|
||||||
list-style-image: url("chrome://messenger/skin/threadcol.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinercol.readColumnHeader {
|
|
||||||
list-style-image: url("chrome://messenger/skin/unreadmail.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinercol.flagColumnHeader {
|
|
||||||
list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
|
|
||||||
}
|
|
||||||
|
|
||||||
outlinerbody:-moz-outliner-cell-text(unread)
|
outlinerbody:-moz-outliner-cell-text(unread)
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -61,6 +50,9 @@ outlinerbody:-moz-outliner-cell-text(offline)
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ::::: priority colors ::::: */
|
||||||
|
|
||||||
outlinerbody:-moz-outliner-cell-text(priority-highest)
|
outlinerbody:-moz-outliner-cell-text(priority-highest)
|
||||||
{
|
{
|
||||||
color:red;
|
color:red;
|
||||||
|
@ -81,4 +73,91 @@ outlinerbody:-moz-outliner-cell-text(priority-low)
|
||||||
color: rgb(85, 85, 85);
|
color: rgb(85, 85, 85);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ::::: message icons ::::: */
|
||||||
|
|
||||||
|
/* ::::: message column icons ::::: */
|
||||||
|
|
||||||
|
/* ..... thread column ..... */
|
||||||
|
|
||||||
|
outlinercol.threadColumnHeader {
|
||||||
|
list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinercol.threadColumnHeader[sortDirection="ascending"] {
|
||||||
|
list-style-image: url("chrome://messenger/skin/threadcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinercol.threadColumnHeader[sortDirection="descending"] {
|
||||||
|
list-style-image: url("chrome://messenger/skin/threadcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(threadCol, container) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/thread-closed.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(threadCol, container, open) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/thread-open.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(threadCol, container, unread) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/thread-new-closed.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(threadCol, container, unread, open) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/thread-new-open.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ..... read column ..... */
|
||||||
|
|
||||||
|
outlinercol.readColumnHeader {
|
||||||
|
list-style-image: url("chrome://messenger/skin/readcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(unreadButtonColHeader) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/readmail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(unreadButtonColHeader, unread) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/unreadmail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ..... flag column ..... */
|
||||||
|
|
||||||
|
outlinercol.flagColumnHeader {
|
||||||
|
list-style-image: url("chrome://messenger/skin/flagcol.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(flaggedCol) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/readmail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(flaggedCol, flagged) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ..... subject column ..... */
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-mail.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, unread) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-mail-new.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, attach) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-mail-attach.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, imapdeleted) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-mail-imapdelete.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, news) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-news.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
outlinerbody:-moz-outliner-image(subjectCol, news, unread) {
|
||||||
|
list-style-image: url("chrome://messenger/skin/message-news-new.gif");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче