зеркало из https://github.com/mozilla/pjs.git
bug 11623 - change CSS file comments from // to /* */
r=dbaron, sr=hewitt
This commit is contained in:
Родитель
615491f384
Коммит
202a5aaa2e
|
@ -18,7 +18,7 @@
|
|||
*
|
||||
* Contributor(s):
|
||||
*/
|
||||
// Combinatorics for !important
|
||||
/* Combinatorics for !important */
|
||||
Important {
|
||||
color: purple !important;
|
||||
padding: 2px;
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
*
|
||||
* Contributor(s):
|
||||
*/
|
||||
// Test of illegal CSS1 input.
|
||||
// Illegal @ rules
|
||||
/* Test of illegal CSS1 input.
|
||||
Illegal @ rules */
|
||||
@ignored;
|
||||
P { color: purple }
|
||||
@ignored [ skip me ];
|
||||
|
@ -29,16 +29,16 @@ P { color: purple }
|
|||
@ignored ( skip me too );
|
||||
P { color: purple }
|
||||
|
||||
// Handle dangling semi-colons. Outside the scope of the CSS1 document
|
||||
// but a reasonable parser should be able to eat them.
|
||||
/* Handle dangling semi-colons. Outside the scope of the CSS1 document
|
||||
but a reasonable parser should be able to eat them. */
|
||||
@extra-semicolon;;
|
||||
P { color: purple }
|
||||
|
||||
// These are all properties that have an extra keyword (fish) at the
|
||||
// end. CSS1 says that such properties are to be ignored. Because the
|
||||
// properties are all set in the BODY tag we can see if anything
|
||||
// happens to invalid.html when this sheet is loaded (there should be
|
||||
// no effect because the entire declaration block should be skipped).
|
||||
/* These are all properties that have an extra keyword (fish) at the
|
||||
end. CSS1 says that such properties are to be ignored. Because the
|
||||
properties are all set in the BODY tag we can see if anything
|
||||
happens to invalid.html when this sheet is loaded (there should be
|
||||
no effect because the entire declaration block should be skipped). */
|
||||
BODY {
|
||||
word-spacing: normal fish;
|
||||
wOrd-spacing: 12.0em fish;
|
||||
|
@ -346,7 +346,7 @@ BODY {
|
|||
}
|
||||
P { color: purple }
|
||||
|
||||
// Illegal color values
|
||||
/* Illegal color values */
|
||||
InvalidColor {
|
||||
color: RGB(110;
|
||||
color: RGB(110,;
|
||||
|
@ -365,7 +365,7 @@ InvalidColor {
|
|||
}
|
||||
P { color: purple }
|
||||
|
||||
// Illegal numeric values
|
||||
/* Illegal numeric values */
|
||||
InvalidNumber {
|
||||
list-indent: 2..3;
|
||||
list-indent: 17a;
|
||||
|
@ -374,7 +374,7 @@ InvalidNumber {
|
|||
}
|
||||
P { color: purple }
|
||||
|
||||
// Illegal url values
|
||||
/* Illegal url values */
|
||||
InvalidURL {
|
||||
background-image: url;
|
||||
background-image: url(goaway;
|
||||
|
@ -382,7 +382,7 @@ InvalidURL {
|
|||
}
|
||||
P { color: purple }
|
||||
|
||||
// Illegal rules
|
||||
/* Illegal rules */
|
||||
P[align], UL {
|
||||
color: red;
|
||||
font-size: large
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*
|
||||
* Contributor(s):
|
||||
*/
|
||||
// Combinatorics for selectors
|
||||
/* Combinatorics for selectors */
|
||||
Tag { color: purple }
|
||||
Tag#Id { color: purple }
|
||||
Tag#Id.Class { color: purple }
|
||||
|
|
|
@ -3,7 +3,7 @@ tree {
|
|||
background-color: white;
|
||||
border: none;
|
||||
border-spacing: 0px;
|
||||
//border-collapse: collapse;
|
||||
/*border-collapse: collapse;*/
|
||||
width: 100%;
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
|
|
@ -1,362 +0,0 @@
|
|||
/*
|
||||
The contents of this file are subject to the Netscape Public
|
||||
License Version 1.1 (the "License"); you may not use this file
|
||||
except in compliance with the License. You may obtain a copy of
|
||||
the License at http://www.mozilla.org/NPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS
|
||||
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
implied. See the License for the specific language governing
|
||||
rights and limitations under the License.
|
||||
|
||||
The Original Code is Mozilla Communicator client code, released
|
||||
March 31, 1998.
|
||||
|
||||
The Initial Developer of the Original Code is Netscape
|
||||
Communications Corporation. Portions created by Netscape are
|
||||
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
Rights Reserved.
|
||||
*/
|
||||
|
||||
@import url(chrome://communicator/skin/);
|
||||
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to HTML */
|
||||
@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for XUL elements */
|
||||
|
||||
/* CardView styles - used in the Card View Pane*/
|
||||
|
||||
#CardViewBox {
|
||||
overflow: auto;
|
||||
background-color: #FFFFFF;
|
||||
min-width: 150px;
|
||||
-moz-user-focus: ignore;
|
||||
}
|
||||
|
||||
#CardViewInnerBox {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
#CardTitle {
|
||||
font-size: 150%;
|
||||
font-weight: bold;
|
||||
border-bottom: 2px solid black;
|
||||
min-width: 120px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.cardViewGroup {
|
||||
margin-top: 8px;
|
||||
padding-bottom: 5px;
|
||||
min-width: 50px;
|
||||
}
|
||||
|
||||
[class="CardViewHeading"] {
|
||||
padding: 1px;
|
||||
padding-left: 5px;
|
||||
margin: 0px 0px 1px 0px;
|
||||
background-color: #CCCCFF;
|
||||
color: black;
|
||||
font-weight: bold;
|
||||
min-width: 30px;
|
||||
}
|
||||
|
||||
[class="CardViewText"] {
|
||||
padding-left: 20px;
|
||||
padding-right: 2px;
|
||||
min-width: 30px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
html|a {
|
||||
padding-left: 0px;
|
||||
padding-right: 2px;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
html|p {
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
|
||||
/* CardEdit styles - used in the Card Edit Dialog */
|
||||
|
||||
[class="CardEditWidth"] {
|
||||
width: 25em;
|
||||
}
|
||||
|
||||
[class="CardEditLabel"] {
|
||||
padding: 0px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
[class="alignBoxWithFieldset"] {
|
||||
margin-left: 6px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.stateZipSpacer { width: 3em; }
|
||||
|
||||
|
||||
/* Custom Trees */
|
||||
|
||||
tree {
|
||||
border-left: 1px solid transparent;
|
||||
}
|
||||
|
||||
treeitem[selected="true"] > treerow {
|
||||
color: black;
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
tree[class="abDirectory"] treeitem > treerow > treecell > .tree-icon {
|
||||
list-style-image: url("chrome://messenger/skin/addressbook/myaddrbk.gif");
|
||||
}
|
||||
|
||||
tree[class="abResults"] treeitem > treerow > treecell.cardicon {
|
||||
list-style-image: url("chrome://messenger/skin/addressbook/person.gif");
|
||||
height: 14px;
|
||||
min-height: 14px;
|
||||
}
|
||||
|
||||
|
||||
/* Address Book specific style */
|
||||
|
||||
#results_box {
|
||||
border-left: 8px solid #CCCCCC;
|
||||
}
|
||||
|
||||
[hide] {
|
||||
visibility: collapse;
|
||||
}
|
||||
|
||||
#button-newcard {
|
||||
list-style-image:url("chrome://messenger/skin/addressbook/newcard.gif");
|
||||
}
|
||||
|
||||
#button-newcard[disabled="true"],
|
||||
#button-newcard[disabled="true"]:hover,
|
||||
#button-newcard[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newcard-disabled.gif");
|
||||
}
|
||||
|
||||
#button-newcard:hover
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newcard-hover.gif");
|
||||
}
|
||||
|
||||
#button-newcard:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newcard-hover-active.gif");
|
||||
}
|
||||
|
||||
#button-newlist {
|
||||
list-style-image:url("chrome://messenger/skin/addressbook/newlist.gif");
|
||||
}
|
||||
|
||||
#button-newlist[disabled="true"],
|
||||
#button-newlist[disabled="true"]:hover,
|
||||
#button-newlist[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newlist-disabled.gif");
|
||||
}
|
||||
|
||||
#button-newlist:hover
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newlist-hover.gif");
|
||||
}
|
||||
|
||||
#button-newlist:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newlist-hover-active.gif");
|
||||
}
|
||||
|
||||
#button-editcard {
|
||||
list-style-image:url("chrome://messenger/skin/addressbook/person.gif");
|
||||
}
|
||||
|
||||
#button-editcard[disabled="true"],
|
||||
#button-editcard[disabled="true"]:hover,
|
||||
#button-editcard[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/person-disabled.gif");
|
||||
}
|
||||
|
||||
#button-editcard:hover
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/person-hover.gif");
|
||||
}
|
||||
|
||||
#button-editcard:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/person-hover-active.gif");
|
||||
}
|
||||
|
||||
#button-newmessage {
|
||||
list-style-image:url("chrome://messenger/skin/addressbook/newmsg.gif");
|
||||
}
|
||||
|
||||
#button-newmessage[disabled="true"],
|
||||
#button-newmessage[disabled="true"]:hover,
|
||||
#button-newmessage[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newmsg-disabled.gif");
|
||||
}
|
||||
|
||||
#button-newmessage:hover
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newmsg-hover.gif");
|
||||
}
|
||||
|
||||
#button-newmessage:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/newmsg-hover-active.gif");
|
||||
}
|
||||
|
||||
#button-delete {
|
||||
list-style-image:url("chrome://messenger/skin/addressbook/trash.gif");
|
||||
}
|
||||
|
||||
#button-delete[disabled="true"],
|
||||
#button-delete[disabled="true"]:hover,
|
||||
#button-delete[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/trash-disabled.gif");
|
||||
}
|
||||
|
||||
#button-delete:hover
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/trash-hover.gif");
|
||||
}
|
||||
|
||||
#button-delete:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/trash-hover-active.gif");
|
||||
}
|
||||
|
||||
#button-stop {
|
||||
list-style-image:url("chrome://global/skin/stop.gif");
|
||||
}
|
||||
|
||||
#button-stop[disabled="true"],
|
||||
#button-stop[disabled="true"]:hover,
|
||||
#button-stop[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://global/skin/stop-disabled.gif");
|
||||
}
|
||||
|
||||
#button-stop:hover
|
||||
{
|
||||
list-style-image : url("chrome://global/skin/stop-hover.gif");
|
||||
}
|
||||
|
||||
#button-stop:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://global/skin/stop-hover-active.gif");
|
||||
}
|
||||
|
||||
#button-search {
|
||||
list-style-image:url("chrome://messenger/skin/addressbook/searchold.gif");
|
||||
}
|
||||
|
||||
#button-search[disabled="true"],
|
||||
#button-search[disabled="true"]:hover,
|
||||
#button-search[disabled="true"]:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/searchold-disabled.gif");
|
||||
}
|
||||
|
||||
#button-search:hover
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/searchold-hover.gif");
|
||||
}
|
||||
|
||||
#button-search:hover:active
|
||||
{
|
||||
list-style-image : url("chrome://messenger/skin/addressbook/searchold-hover-active.gif");
|
||||
}
|
||||
|
||||
#searchlabel {
|
||||
padding: 0px;
|
||||
padding-left: 5px;
|
||||
padding-bottom:2px;
|
||||
white-space: nowrap;
|
||||
font-size: smaller;
|
||||
min-width: 20px;
|
||||
}
|
||||
|
||||
#searchtext {
|
||||
min-width: 20px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
treeitem[empty="true"] > treerow > treecell > .tree-cell-twisty {
|
||||
|
||||
list-style-image: none !important;
|
||||
|
||||
}
|
||||
|
||||
/*** Styles for abSelectAddressesDialog.xul ***/
|
||||
|
||||
#3PaneBox {
|
||||
border-top : 1px solid #000000;
|
||||
border-bottom : 1px solid #000000;
|
||||
border-left : 1px solid #000000;
|
||||
}
|
||||
|
||||
#dirTreeBox {
|
||||
width : 180px;
|
||||
height : 100%;
|
||||
background-color: #FFFFFF;
|
||||
border-right : 1px solid #000000;
|
||||
}
|
||||
|
||||
#dirTree { // Tree that lists different Address Books
|
||||
height : 100px;
|
||||
min-width : 10px;
|
||||
}
|
||||
|
||||
#results-bucket-tree-box {
|
||||
border-right : 1px solid #000000;
|
||||
}
|
||||
|
||||
#resultsTreeBox {
|
||||
background-color: #FFFFFF;
|
||||
border-bottom : 1px solid #000000;
|
||||
}
|
||||
|
||||
#resultsTree {
|
||||
height : 100px;
|
||||
min-width : 10px;
|
||||
}
|
||||
|
||||
#addToBucketButtonBox { // Row of "To" "CC" and "Bcc" buttons
|
||||
padding : 0.3em;
|
||||
min-width : 10px;
|
||||
}
|
||||
|
||||
#bucketBox {
|
||||
height : 170px;
|
||||
border-top : 1px solid #000000;
|
||||
}
|
||||
|
||||
#addressBucket {
|
||||
height : 100px;
|
||||
min-width : 10px;
|
||||
}
|
||||
|
||||
#rightColumnButtonBox { // Column with "New", "Edit" and "Remove" buttons
|
||||
padding : .5em;
|
||||
padding-right : 0px;
|
||||
}
|
||||
|
||||
.3rd-column-spring { // Vertical Springs between 3rd column buttons
|
||||
height : 10px;
|
||||
}
|
||||
|
||||
.middle-button-spring { // Springs between To, CC, and BCC buttons
|
||||
width : 10px;
|
||||
}
|
|
@ -324,7 +324,7 @@ treeitem[empty="true"] > treerow > treecell > .tree-cell-twisty {
|
|||
border : none;
|
||||
}
|
||||
|
||||
#dirTree { // Tree that lists different Address Books
|
||||
#dirTree { /* Tree that lists different Address Books */
|
||||
height : 100px;
|
||||
min-width : 10px;
|
||||
}
|
||||
|
@ -343,7 +343,7 @@ treeitem[empty="true"] > treerow > treecell > .tree-cell-twisty {
|
|||
min-width : 10px;
|
||||
}
|
||||
|
||||
#addToBucketButtonBox { // Row of "To" "CC" and "Bcc" buttons
|
||||
#addToBucketButtonBox { /* Row of "To" "CC" and "Bcc" buttons */
|
||||
padding : 0.3em;
|
||||
min-width : 10px;
|
||||
}
|
||||
|
@ -358,15 +358,15 @@ treeitem[empty="true"] > treerow > treecell > .tree-cell-twisty {
|
|||
min-width : 10px;
|
||||
}
|
||||
|
||||
#rightColumnButtonBox { // Column with "New", "Edit" and "Remove" buttons
|
||||
#rightColumnButtonBox { /* Column with "New", "Edit" and "Remove" buttons */
|
||||
padding : .5em;
|
||||
padding-right : 0px;
|
||||
}
|
||||
|
||||
.3rd-column-spring { // Vertical Springs between 3rd column buttons
|
||||
.3rd-column-spring { /* Vertical Springs between 3rd column buttons */
|
||||
height : 10px;
|
||||
}
|
||||
|
||||
.middle-button-spring { // Springs between To, CC, and BCC buttons
|
||||
.middle-button-spring { /* Springs between To, CC, and BCC buttons */
|
||||
width : 10px;
|
||||
}
|
||||
|
|
|
@ -270,7 +270,7 @@ tree > treehead > treerow {
|
|||
border: none;
|
||||
}
|
||||
|
||||
#dirTree { // Tree that lists different Address Books
|
||||
#dirTree { /* Tree that lists different Address Books */
|
||||
min-width : 10px;
|
||||
border-top : none;
|
||||
border-left : none;
|
||||
|
@ -303,7 +303,7 @@ tree > treehead > treerow {
|
|||
min-width : 4px;
|
||||
}
|
||||
|
||||
#addToBucketButtonBox { // Row of "To" "CC" and "Bcc" buttons
|
||||
#addToBucketButtonBox { /* Row of "To" "CC" and "Bcc" buttons */
|
||||
padding : 0.3em;
|
||||
min-width : 10px;
|
||||
border-top: 1px solid ThreeDHighlight;
|
||||
|
@ -318,16 +318,16 @@ tree > treehead > treerow {
|
|||
min-width : 10px;
|
||||
}
|
||||
|
||||
#rightColumnButtonBox { // Column with "New", "Edit" and "Remove" buttons
|
||||
#rightColumnButtonBox { /* Column with "New", "Edit" and "Remove" buttons */
|
||||
padding : .5em;
|
||||
padding-right : 0px;
|
||||
}
|
||||
|
||||
.3rd-column-spring { // Vertical Springs between 3rd column buttons
|
||||
.3rd-column-spring { /* Vertical Springs between 3rd column buttons */
|
||||
height : 10px;
|
||||
}
|
||||
|
||||
.middle-button-spring { // Springs between To, CC, and BCC buttons
|
||||
.middle-button-spring { /* Springs between To, CC, and BCC buttons */
|
||||
width : 10px;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,165 +0,0 @@
|
|||
/** Contains style definitions for the navigator application
|
||||
**/
|
||||
|
||||
titledbutton#print-button {
|
||||
list-style-image:url(resource:/res/toolbar/print.gif);
|
||||
}
|
||||
|
||||
titledbutton#back-button {
|
||||
list-style-image:url(resource:/res/toolbar/back.gif);
|
||||
}
|
||||
|
||||
titledbutton#forward-button {
|
||||
list-style-image:url(resource:/res/toolbar/forward.gif);
|
||||
}
|
||||
|
||||
titledbutton#stop-button {
|
||||
list-style-image:url(resource:/res/toolbar/stop.gif);
|
||||
}
|
||||
|
||||
titledbutton#reload-button {
|
||||
list-style-image:url(resource:/res/toolbar/reload.gif);
|
||||
}
|
||||
|
||||
titledbutton#home-button {
|
||||
list-style-image:url(resource:/res/toolbar/home.gif);
|
||||
}
|
||||
|
||||
titledbutton#netscape-button {
|
||||
list-style-image:url(resource:/res/toolbar/mynetscape.gif);
|
||||
}
|
||||
|
||||
titledbutton#security-button {
|
||||
list-style-image:url(resource:/res/toolbar/StatusBar-secure.gif);
|
||||
}
|
||||
|
||||
titledbutton#Throbber
|
||||
{
|
||||
list-style-image:url(resource:/res/throbber/anims00.gif);
|
||||
}
|
||||
|
||||
titledbutton#Throbber[busy="true"] {
|
||||
list-style-image:url(resource:/res/throbber/throbbingN.gif);
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton{
|
||||
color:#CCCCFF;
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="active"] {
|
||||
|
||||
text-decoration:none;
|
||||
border: 1px inset;
|
||||
|
||||
padding-left: 2px;
|
||||
padding-right: 0px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="hover"] {
|
||||
border: 1px outset #666699;
|
||||
color:white;
|
||||
//text-decoration:underline;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
toolbar#taskbar {
|
||||
display:block;
|
||||
background-color: #666699;
|
||||
border-bottom: solid #333366 1px;
|
||||
border-top: solid #9999AA 1px;
|
||||
border-left: solid #9999AA 1px;
|
||||
border-right: solid #333366 1px;
|
||||
font: 10pt sans-serif;
|
||||
min-height: 16px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
box[class=insecure] {
|
||||
margin-top: 2px;
|
||||
border-top: 0px;
|
||||
}
|
||||
|
||||
box[class=secure] {
|
||||
border-top: 2px solid yellow;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
box#status-bar titledbutton {
|
||||
font: 2.5mm sans-serif;
|
||||
}
|
||||
|
||||
titledbutton[class=secure] {
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
titledbutton[class=insecure] {
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="active"] {
|
||||
|
||||
text-decoration:none;
|
||||
border: 1px inset;
|
||||
|
||||
padding-left: 2px;
|
||||
padding-right: 0px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
titledbutton[class="popup"]
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-popup-arrow.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-nav
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-navigator.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-mail
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-mail.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-addr
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-addressbook.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-comp
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-composer.gif);
|
||||
}
|
||||
|
||||
box[type="secure"] {
|
||||
border-top: 2px solid yellow;
|
||||
}
|
||||
|
||||
box[type="unsecure"] {
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
toolbar[class="main-bar"] {
|
||||
}
|
||||
|
||||
window#main-window {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
box#outer-box {
|
||||
width: 100%;
|
||||
height:100%;
|
||||
}
|
||||
|
||||
iframe#content-frame {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
toolbar titledbutton[pseudoclass~="hover"] {
|
||||
border-width: 10px;
|
||||
}
|
|
@ -1,185 +0,0 @@
|
|||
/** Contains style definitions for the navigator application
|
||||
**/
|
||||
|
||||
titledbutton#print-button {
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/home.gif);
|
||||
}
|
||||
|
||||
titledbutton#back-button {
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/back.gif);
|
||||
}
|
||||
|
||||
titledbutton#forward-button {
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/forward.gif);
|
||||
}
|
||||
|
||||
titledbutton#stop-button {
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/stop.gif);
|
||||
}
|
||||
|
||||
titledbutton#reload-button {
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/reload.gif);
|
||||
}
|
||||
|
||||
titledbutton#home-button {
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/home.gif);
|
||||
}
|
||||
|
||||
titledbutton#netscape-button {
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/mynetscape.gif);
|
||||
}
|
||||
|
||||
titledbutton#security-button {
|
||||
list-style-image:url(resource:/res/toolbar/StatusBar-secure.gif);
|
||||
}
|
||||
|
||||
titledbutton#Throbber
|
||||
{
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/mozstat.gif);
|
||||
}
|
||||
|
||||
titledbutton#Throbber[busy="true"] {
|
||||
list-style-image:url(resource:/res/throbber/throbbingN.gif);
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton{
|
||||
color:#CCCCFF;
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="active"] {
|
||||
|
||||
text-decoration:none;
|
||||
border: 1px inset;
|
||||
|
||||
padding-left: 2px;
|
||||
padding-right: 0px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="hover"] {
|
||||
border: 1px outset #666699;
|
||||
color:white;
|
||||
//text-decoration:underline;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
toolbar#taskbar {
|
||||
background-color: black;
|
||||
font: 10pt sans-serif;
|
||||
min-height: 16px;
|
||||
color: red;
|
||||
}
|
||||
|
||||
|
||||
box[class=insecure] {
|
||||
margin-top: 2px;
|
||||
border-top: 0px;
|
||||
}
|
||||
|
||||
box[class=secure] {
|
||||
border-top: 2px solid yellow;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
box#status-bar titledbutton {
|
||||
font: 2.5mm sans-serif;
|
||||
}
|
||||
|
||||
titledbutton[class=secure] {
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
titledbutton[class=insecure] {
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="active"] {
|
||||
|
||||
text-decoration:none;
|
||||
border: 1px inset;
|
||||
|
||||
padding-left: 2px;
|
||||
padding-right: 0px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
titledbutton[class="popup"]
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-popup-arrow.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-nav
|
||||
{
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/taskbar-navigator.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-mail
|
||||
{
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/taskbar-mail.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-addr
|
||||
{
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/taskbar-addressbook.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-comp
|
||||
{
|
||||
list-style-image:url(http://www.mozillazine.org/toolbar/taskbar-composer.gif);
|
||||
}
|
||||
|
||||
box[type="secure"] {
|
||||
border-top: 2px solid yellow;
|
||||
}
|
||||
|
||||
box[type="unsecure"] {
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
toolbar {
|
||||
background-color: black;
|
||||
border-color: black;
|
||||
}
|
||||
|
||||
window#main-window {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
box#outer-box {
|
||||
width: 100%;
|
||||
height:100%;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
iframe#content-frame {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
titledbutton {
|
||||
color: red;
|
||||
}
|
||||
|
||||
toolbox:toolbox-normal {
|
||||
background-color: black;
|
||||
background-image: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
toolbox:toolbox-rollover {
|
||||
background-color: rgb(255,0,0);
|
||||
background-image: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
progressmeter {
|
||||
border: 1px solid black;
|
||||
color : rgb(128,0,0);
|
||||
}
|
||||
|
||||
:progressmeter-stripe {
|
||||
color: rgb(0,128,0);
|
||||
}
|
|
@ -1,164 +0,0 @@
|
|||
/** Contains style definitions for the navigator application
|
||||
**/
|
||||
|
||||
titledbutton#print-button {
|
||||
list-style-image:url(resource:/res/toolbar/print.gif);
|
||||
}
|
||||
|
||||
titledbutton#back-button {
|
||||
list-style-image:url(resource:/res/toolbar/back.gif);
|
||||
}
|
||||
|
||||
titledbutton#forward-button {
|
||||
list-style-image:url(resource:/res/toolbar/forward.gif);
|
||||
}
|
||||
|
||||
titledbutton#stop-button {
|
||||
list-style-image:url(resource:/res/toolbar/stop.gif);
|
||||
}
|
||||
|
||||
titledbutton#reload-button {
|
||||
list-style-image:url(resource:/res/toolbar/reload.gif);
|
||||
}
|
||||
|
||||
titledbutton#home-button {
|
||||
list-style-image:url(resource:/res/toolbar/home.gif);
|
||||
}
|
||||
|
||||
titledbutton#netscape-button {
|
||||
list-style-image:url(resource:/res/toolbar/mynetscape.gif);
|
||||
}
|
||||
|
||||
titledbutton#security-button {
|
||||
list-style-image:url(resource:/res/toolbar/StatusBar-secure.gif);
|
||||
}
|
||||
|
||||
titledbutton#Throbber
|
||||
{
|
||||
list-style-image:url(resource:/res/throbber/anims00.gif);
|
||||
}
|
||||
|
||||
titledbutton#Throbber[busy="true"] {
|
||||
list-style-image:url(resource:/res/throbber/throbbingN.gif);
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton{
|
||||
color:#CCCCFF;
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="active"] {
|
||||
|
||||
text-decoration:none;
|
||||
border: 1px inset;
|
||||
|
||||
padding-left: 2px;
|
||||
padding-right: 0px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="hover"] {
|
||||
border: 1px outset #666699;
|
||||
color:white;
|
||||
//text-decoration:underline;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
toolbar#taskbar {
|
||||
display:block;
|
||||
background-color: #666699;
|
||||
border-bottom: solid #333366 1px;
|
||||
border-top: solid #9999AA 1px;
|
||||
border-left: solid #9999AA 1px;
|
||||
border-right: solid #333366 1px;
|
||||
font: 10pt sans-serif;
|
||||
min-height: 16px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
box[class=insecure] {
|
||||
margin-top: 2px;
|
||||
border-top: 0px;
|
||||
}
|
||||
|
||||
box[class=secure] {
|
||||
border-top: 2px solid yellow;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
box#status-bar titledbutton {
|
||||
font: 2.5mm sans-serif;
|
||||
}
|
||||
|
||||
titledbutton[class=secure] {
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
titledbutton[class=insecure] {
|
||||
}
|
||||
|
||||
toolbar#taskbar titledbutton[pseudoclass~="active"] {
|
||||
|
||||
text-decoration:none;
|
||||
border: 1px inset;
|
||||
|
||||
padding-left: 2px;
|
||||
padding-right: 0px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
titledbutton[class="popup"]
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-popup-arrow.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-nav
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-navigator.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-mail
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-mail.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-addr
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-addressbook.gif);
|
||||
}
|
||||
|
||||
titledbutton#mini-comp
|
||||
{
|
||||
list-style-image:url(resource:/res/toolbar/taskbar-composer.gif);
|
||||
}
|
||||
|
||||
box[type="secure"] {
|
||||
border-top: 2px solid yellow;
|
||||
}
|
||||
|
||||
box[type="unsecure"] {
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
toolbar[class="main-bar"] {
|
||||
background-image: url(raindrops_light.gif);
|
||||
}
|
||||
|
||||
window#main-window {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
box#outer-box {
|
||||
width: 100%;
|
||||
height:100%;
|
||||
background-image: url(bg.jpg);
|
||||
}
|
||||
|
||||
iframe#content-frame {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
margin: 10px;
|
||||
}
|
Загрузка…
Ссылка в новой задаче