widgets.css

Summary

This file defines the basic CSS style rules for the MozileEditor. These rules are meant only to make the Mozile widgets and dialogs functional, and other rules will be needed to make it look pretty.

Version: 0.7.0

Author: James A. Overton


/* ***** BEGIN LICENSE BLOCK *****
 * Licensed under Version: MPL 1.1/GPL 2.0/LGPL 2.1
 * Full Terms at http://mozile.mozdev.org/license.html
 *
 * 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 Playsophy code (www.playsophy.com).
 *
 * The Initial Developer of the Original Code is Playsophy
 * Portions created by the Initial Developer are Copyright (C) 2002-2003
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *	James A. Overton <james@overton.ca>
 *
 * ***** END LICENSE BLOCK ***** */

/** Mozile Widgets StyleSheets
 * @fileoverview This file defines the basic CSS style rules for the MozileEditor. These rules are meant only to make the Mozile widgets and dialogs functional, and other rules will be needed to make it look pretty.
 * 
 * @link http://mozile.mozdev.org 
 * @author James A. Overton <james@overton.ca>
 * @version 0.7.0
 */


menulist {
	-moz-user-focus: normal;
}


#mozileToolbar {
	/* -moz-user-select: none; */
	background-color: #F4F4F4;
	border-bottom: 1px solid #A3A3A3;
	border-right: 1px solid #A3A3A3;
	border-left: 1px solid #A3A3A3;
	padding: 0px 2px 0px 2px;
	margin: 0px 0px 0px 0px;
	min-width: 20px;
	position: fixed;
	top: 0px;
	left: 10%;
	right: auto;
	z-index: 10;
}

#mozileToolbar * {
	position: static;
}


/* for a floating toolbar, attached to the box (note: width is required!)
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	
or perhaps (although it blocks parts of the box)
	width: 60%;
	position: absolute;
	left: 20%;

*/




.mozileButton {
	-moz-appearance: none;
	margin: 1px 0px -1px 0px;
	padding: 1px 1px 2px 1px;
	-moz-border-radius: 3px;
	/* border: 1px outset #A3A3A3; */
}

.mozileButton:active, .mozileButton[active=true], .mozileButton[open]{
	padding: 0px 1px 0px 1px;
	margin: 1px 0px -1px 0px;
	border: 1px solid #A3A3A3;
	background-color: #CCCCCC;
}

.mozileButton > label, .mozileButton > hbox > label {
	display: none;
}





button[dlgtype="accept"] {
	margin-top: 10px;
	margin-right: 13px;
}

button[dlgtype="extra2"] {
	margin-top: 10px;
	margin-left: 13px;
}

.header {
	font-size: 120%;
	background-color: lightblue;
	border: 2px inset lightgray;
	padding: 5px 0px 5px 0px;
}

#bugs {
    height: 500px;
    padding: 5px;
	background-color: white;
	overflow: auto;
}

vbox hbox {
	margin: 1px;
	padding: 3px;
	border: 1px solid blue;
}

description {
	margin: 3px;
}

.level0 {
	background-color: red;
}
.level1 {
	background-color: darksalmon;
}
.level2 {
	background-color: lightpink;
}
.level3 {
	background-color: lightblue;
}
.level4 {
	background-color: lightgreen;
}

.datestamp {
}

.functions {
	font-weight: bold;
}

.message {
}

#teaser {
	font-size: 1.3em;
	font-weight: bold;
    margin: 5px;
}

.link {
    text-decoration: underline;
}

#hboxMozdevURI {
    margin-top: 10px;
    margin-bottom: 5px;
}
 
row {
    margin-top: 8px;
}

#mozdevURI {
	font-size: 1.1em;
	font-weight: bold;
}

#creditsTitle {
	font-size: 1em;
	font-weight: bold;
}

#credits {
    width: 300px;
	font-style: italic;
    text-align: justify;
}


Documentation generated by JSDoc on Wed Jun 29 22:15:33 2005