kmcclusk%netscape.com 4bd141876c gfx vs native widget rendering can now be specified in the viewer at run-time.
Added methods to GetWidgetRenderingMode and SetWidgetRenderingMode in nsPresContext
Removed NS_GFX_RENDER_FORM_ELEMENTS define, now it uses the GetWidgetRenderingMode
method on the rendering context.
Resurrected Rod's listbox frame-based widget code.
Added -moz-option-selected pseudo attribute to control the appearance of selected items for the listbox frame-based widget.
Added a style rule with attribute selector for -moz-option-selected to the ua.css style sheet.
Modifed nsView::SetVFlags to do a bitwise or instead of bitwise and to set flags.
Modified nsView::HandleEvent to compare mVFlags with NS_VIEW_FLAG_DONT_CHECK_CHILDREN


git-svn-id: svn://10.0.0.236/trunk@22614 18797224-902f-48f8-a5cc-f745e15eee43
1999-03-02 22:43:26 +00:00

782 lines
12 KiB
CSS

/*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
html {
display: block;
}
body {
display: block;
line-height: normal;
margin: 8px;
}
frameset {
overflow: hidden;
}
/* blocks */
p {
display: block;
margin-bottom: auto;
margin-top: auto;
}
address {
display: block;
font-style: italic;
margin-bottom: 0;
margin-top: 0;
}
blockquote {
display: block;
margin-left: 40px;
margin-right: 40px;
margin-top: auto;
margin-bottom: auto;
}
center {
display: block;
text-align: center;
margin-bottom: 0;
margin-top: 0;
}
div {
display: block;
margin-bottom: 0;
margin-top: 0;
}
h1 {
display: block;
font-size: xx-large;
font-weight: bold;
margin-bottom: auto;
margin-top: auto;
}
h2 {
display: block;
font-size: x-large;
font-weight: bold;
margin-bottom: auto;
margin-top: auto;
}
h3 {
display: block;
font-size: large;
font-weight: bold;
margin-bottom: auto;
margin-top: auto;
}
h4 {
display: block;
font-size: medium;
font-weight: bold;
margin-bottom: auto;
margin-top: auto;
}
h5 {
display: block;
font-size: small;
font-weight: bold;
margin-bottom: auto;
margin-top: auto;
}
h6 {
display: block;
font-size: x-small;
font-weight: bold;
margin-bottom: auto;
margin-top: auto;
}
layer {
display: block;
position: absolute;
}
listing {
display: block;
font-family: monospace;
font-size: medium;
white-space: pre;
margin-bottom: auto;
margin-top: auto;
}
plaintext, xmp, pre {
display: block;
font-family: monospace;
white-space: pre;
margin-bottom: auto;
margin-top: auto;
}
multicol {
display: block;
margin-bottom: auto;
margin-top: auto;
}
/* tables */
table {
display: table;
/* border-style: outset; */
border-color: #c0c0c0;
cell-spacing: 2px;
cell-padding: 2px;
margin-top: 0;
margin-bottom: 0;
background: transparent;
}
td, th {
vertical-align: inherit;
background: inherit;
text-align: left;
/* border-style: inset; */
border-color: #c0c0c0;
display: table-cell;
}
th {
font-weight: bold;
text-align: center;
}
caption {
text-align: center;
display: table-caption;
}
tr {
display: table-row;
vertical-align: inherit;
background: inherit;
}
tbody {
display: table-row-group;
vertical-align: middle;
background: inherit;
}
thead {
display: table-header-group;
vertical-align: middle;
background: inherit;
}
tfoot {
display: table-footer-group;
vertical-align: middle;
background: inherit;
}
col {
display: table-column;
}
colgroup {
display: table-column-group;
}
/* spans */
a:link {
display: inline;
color: blue;
text-decoration: underline;
cursor: pointer;
}
a:visited {
display: inline;
color: purple;
text-decoration: underline;
cursor: pointer;
}
a:active {
display: inline;
color: lime;
text-decoration: underline;
cursor: pointer;
}
a:out-of-date {
display: inline;
color: red;
text-decoration: underline;
cursor: pointer;
}
a:link img {
display: inline;
border: 2px solid blue;
font-family: sans-serif;
font-size: 8.5pt;
text-decoration: none;
}
a:visited img {
display: inline;
border: 2px solid purple;
font-family: sans-serif;
font-size: 8.5pt;
text-decoration: none;
}
a:active img {
display: inline;
border: 2px solid lime;
font-family: sans-serif;
font-size: 8.5pt;
text-decoration: none;
}
a:out-of-date img {
display: inline;
border: 2px solid red;
font-family: sans-serif;
font-size: 8.5pt;
text-decoration: none;
}
b, strong {
display: inline;
font-weight: bolder;
}
i, cite, em, var {
display: inline;
font-style: italic;
}
tt, code, kbd, samp {
display: inline;
font-family: monospace;
}
u {
display: inline;
text-decoration: underline;
}
s, strike {
display: inline;
text-decoration: line-through;
}
blink {
display: inline;
text-decoration: blink;
}
big {
display: inline;
font-size: larger;
}
small {
display: inline;
font-size: smaller;
}
abbr, acronym, del, dfn, ins, q, span {
display: inline;
}
ins { text-decoration: underline; }
del { text-decoration: line-through; }
dfn { font-style: italic; }
sub {
display: inline;
vertical-align: sub;
font-size: smaller;
}
sup {
display: inline;
vertical-align: super;
font-size: smaller;
}
ilayer {
position: absolute;
display: inline;
}
nobr {
display: inline;
white-space: nowrap;
}
legend {
display: inline;
padding-left: 2px;
padding-right: 2px;
border: 2px solid black;
}
fieldset {
display: block;
border: 2px solid black;
padding: 4px;
margin-left: 2px;
margin-right: 2px;
}
/* lists */
:-moz-list-bullet {
display: inline;
vertical-align: baseline;
margin-right: 8px;
}
ul, menu, dir {
display: block;
margin-right: 0;
margin-bottom: auto;
margin-top: auto;
list-style-type: disc;
margin-left: 40px;
}
ol {
display: block;
margin-right: 0;
margin-bottom: auto;
margin-top: auto;
list-style-type: decimal;
margin-left: 40px;
}
li {
display: list-item;
list-style-position: inside;
}
ul li, ol li, menu li, dir li {
list-style-position: outside;
}
/* nested lists have no top/bottom margins */
ul ul, ul ol, ul menu, ul dir,
menu ul, menu ol, menu menu, menu dir,
dir ul, dir ol, dir menu, dir dir,
ol ul, ol ol, ol menu, ol dir
{
margin-top: 0;
margin-bottom: 0;
}
/* 2 deep unordered lists use a circle */
ol ul, ul ul, menu ul, dir ul,
ol menu, ul menu, menu menu, dir menu,
ol dir, ul dir, menu dir, dir dir
{
list-style-type: circle;
}
/* 3 deep (or more) unordered lists use a square */
ol ol ul, ol ul ul, ol menu ul, ol dir ul,
ol ol menu, ol ul menu, ol menu menu, ol dir menu,
ol ol dir, ol ul dir, ol menu dir, ol dir dir,
ul ol ul, ul ul ul, ul menu ul, ul dir ul,
ul ol menu, ul ul menu, ul menu menu, ul dir menu,
ul ol dir, ul ul dir, ul menu dir, ul dir dir,
menu ol ul, menu ul ul, menu menu ul, menu dir ul,
menu ol menu, menu ul menu, menu menu menu, menu dir menu,
menu ol dir, menu ul dir, menu menu dir, menu dir dir,
dir ol ul, dir ul ul, dir menu ul, dir dir ul,
dir ol menu, dir ul menu, dir menu menu, dir dir menu,
dir ol dir, dir ul dir, dir menu dir, dir dir dir
{
list-style-type: square;
}
dl {
display: block;
margin-bottom: auto;
margin-top: auto;
}
dt {
display: block;
}
dd {
display: block;
margin-left: 40px;
}
/* leafs */
embed {
display: inline;
}
hr {
display: block;
margin-top: 0;
margin-bottom: 0;
text-align: center;
border: 1px -moz-bg-inset;
}
br {
display: inline;
color: cyan;
}
img {
display: inline;
font-family: sans-serif;
font-size: 8.5pt;
}
spacer {
display: inline;
}
wbr {
display: inline;
}
iframe {
display: inline;
border: 2px solid black;
}
input {
vertical-align: bottom;
border: 2px inset rgb(192, 192, 192);
background-color: white;
color: black;
}
input[type=radio] {
border: 2px inset rgb(192, 192, 192);
background-color:white;
color:black;
width:12px;
height:12px;
}
input[type=checkbox] {
border: 2px inset rgb(192, 192, 192);
width:11px;
height:11px;
background-color:white;
color:black;
}
input[type=button] {
border: 2px outset rgb(192, 192, 192);
color:black;
background-color: rgb(192, 192, 192);
}
input[type=submit] {
border: 1px outset rgb(156, 154, 156);
background-color:rgb(206, 207, 206);
color:black;
}
input[type=submit].rollover {
}
input[type=submit].pressed {
border-style : inset;
}
input[type=submit].disabled {
border-style : solid;
}
input[type=reset] {
border: 1px outset rgb(156, 154, 156);
background-color:rgb(206, 207, 206);
color:black;
}
input[type=reset].rollover {
}
input[type=reset].pressed {
border-style : inset;
}
input[type=reset].disabled {
border-style : solid;
}
input[type=file] {
border: 1px outset rgb(156, 154, 156);
background-color:rgb(206, 207, 206);
color:black;
}
:-moz-file-button {
border: 2px outset rgb(192, 192, 192);
color:black;
background-color: rgb(192, 192, 192);
}
:-moz-file-text {
border: 2px inset rgb(192, 192, 192);
margin-right:10px;
background-color: white;
color: black;
}
input[type=file].rollover {
}
input[type=file].pressed {
border-style : inset;
}
input[type=file].disabled {
border-style : solid;
}
:button-outline {
border: 1px solid black;
}
:button-focus {
border: 2px solid salmon;
}
input[type=text] {
border: 2px inset rgb(192, 192, 192);
margin-right:10px;
background-color: white;
color: black;
}
input[type=password] {
border: 2px inset rgb(192, 192, 192);
margin-right:10px;
background-color: white;
color:black;
}
label {
display: inline;
vertical-align: bottom;
background-color: white;
padding-left: 3px;
padding-right: 3px;
}
button {
display: inline;
vertical-align: bottom;
cursor: default;
}
button {
display: inline;
vertical-align: bottom;
/*background-color: white; */
/*border: 3px outset gray;*/
/*padding: 3px;*/
background-color: rgb(192,192,192);
border: 2px solid rgb(192,192,192);
padding: 2px;
cursor: default;
}
button.rollover {
border: 2px outset rgb(192,192,192);
}
button.disabled {
border: 2px solid rgb(192,192,192);
color: rgb(225,225,225);
}
select {
vertical-align: bottom;
border: 1px inset #c0c0c0;
background-color: white;
color:black;
}
option {
}
option.selected {
border: 1px solid rgb(0,0,128);
background-color: rgb(0,0,128);
color: rgb(255,255,255);
}
option[-moz-option-selected] {
color:blue;
background-color:green;
}
option.selectedfocus {
border: 1px dotted white;
background-color: rgb(0,0,128);
color: rgb(255,255,255);
}
textarea {
vertical-align: bottom;
border: 2px inset #c0c0c0;
background-color:white;
}
/* misc */
applet {
display: inline;
}
area {
display: none;
}
base {
display: none;
}
basefont {
display: none;
}
head {
display: none;
}
meta {
display: none;
}
object {
display: inline;
}
script {
display: none;
}
style {
display: none;
}
title {
display: none;
}
noembed {
display: none;
}
noscript {
display: none;
}
noframes {
display: none;
}
param {
display: none;
}
/* pseudo-element style */
:scrollbar-look {
background-color: #c0c0c0;
/* border-color: inherit; */
/* border: 2px outset #c0c0c0; */
}
:scrollbar-arrow-look {
background-color: #c0c0c0;
border-color: inherit;
border: 2px outset #c0c0c0;
}
:scrollbar-thumb-look {
background-color: #c0c0c0;
border-color: inherit;
border: 2px outset #c0c0c0;
}
:scrolled-content {
background: inherit;
padding: inherit;
display: inherit;
}
:wrapped-frame {
display: inherit;
}
:placeholder-frame {
display: inline;
width: 0;
height: 0;
}
:-moz-viewport {
display: block;
background-color: inherit;
}
/* XXX Temporary until @page is supported... */
:-moz-page {
background: none;
}
:root {
display: block;
background-color: inherit;
}
:table {
display: table;
border-style: inherit;
border-color: inherit;
cell-spacing: inherit;
cell-padding: inherit;
margin-top: inherit;
margin-bottom: inherit;
background: inherit;
}
:table-cell {
display: table-cell;
}
:table-column {
display: table-column;
}
:table-column-group {
display: table-column-group;
}
:table-outer {
display: table;
}
:table-row {
display: table-row;
}
:table-row-group {
display: table-row-group;
}
:cell-content {
display: block;
}
:fieldset-content {
display: block;
}
:button-content {
display: block;
}
:label-content {
display: block;
}
:-moz-comment {
display: none;
}
:dropdown-visible {
visibility: visible;
}
:dropdown-hidden {
visibility: hidden;
}
:combobox-text {
color: black;
padding-left: 2px;
}
:combobox-textselected {
background-color: rgb(0,0,128);
color: white;
border: 1px solid rgb(0,0,128);
}
:combobox-textselectedfocus {
background-color: rgb(0,0,128);
color: white;
border: 1px dotted white;
}
:-moz-anonymous-block {
display: block;
}