interface.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 *****
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Mozilla 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/MPL/
 *
 * 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 James A. Overton's code (james@overton.ca).
 *
 * The Initial Developer of the Original Code is James A. Overton.
 * Portions created by the Initial Developer are Copyright (C) 2005
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *
 * Alternatively, the contents of this file may be used under the terms of
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the MPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the MPL, the GPL or the LGPL.
 *
 * ***** 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, textbox {
	-moz-user-focus: normal;
}



/**** Mozile Interface Widgets ****/

#mozileToolbar {
	position: fixed;
	left: 0px;
	top: -1px;
	/* -moz-user-select: none; */
	background-color: #F4F4F4;
	border: 1px solid #A3A3A3;
	padding: 0px 2px 2px 2px;
	margin: 0px 0px 0px 0px;
	z-index: 10;
	text-align: left;
	visibility: visible;
}

#mozileToolbar[collapsed=true] {
	visibility: hidden;
}



#mozileStatusbar {
	position: fixed;
	left: 0px;
	bottom: -1px;
	/* -moz-user-select: none; */
	background-color: #F4F4F4;
	border: 1px solid #A3A3A3;
	padding: 2px 2px 2px 0px;
	margin: 0px 0px 0px 0px;
	z-index: 10;
	text-align: left;
	visibility: visible;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	height: 14pt;
}

#mozileStatusbar[collapsed=true] {
	visibility: hidden;
}





/*
#mozileToolbar * {
	position: static;
}
*/



#mozileAboutInterface {
	position: fixed;
	left: -500px;
	top: -500px;
	width: 0px;
	height: 0px;
	background-color: #F4F4F4;
	border: 2px outset #A3A3A3;
	z-index: 11;
	padding: 5px;
}

#mozileAboutInterface[collapsed=true] {
	visibility: hidden;
}


#mozileAboutInterface > * {
	width: 100%;
}


#mozileSaveInterface {
	position: fixed;
	left: -100px;
	top: -100px;
	width: 0px;
	height: 0px;
	background-color: #F4F4F4;
	border: 2px outset #A3A3A3;
	z-index: 11;
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;

}

#mozileSaveInterface[collapsed=true] {
	visibility: hidden;
}


#mozileSaveInterface > hbox, #mozileSaveInterface > groupbox {
	width: 350px;
}




#mozileSourceInterface {
	position: fixed;
	left: -500px;
	top: -500px;
	background-color: #F4F4F4;
	border: 2px outset #A3A3A3;
	z-index: 11;
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
}

#mozileSourceInterface[collapsed=true] {
	visibility: hidden;
}


#mozileSourceInterface > hbox {
	width: 100%;
}

#mozileSourceInterface > vbox {
	width: 100%;
	height: 98%;
}

#mozileSourceInterface > textbox {
	width: 100%;
	height: 100%;
}







#mozileMessageInterface {
	font-family: Helvitica, sans-serif;
	position: fixed;
	left: -500px;
	top: -500px;
	background-color: #F4F4F4;
	border: 2px outset #A3A3A3;
	z-index: 11;
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
}

#mozileMessageInterface[collapsed=true] {
	visibility: hidden;
}

#mozileMessageInterface > hbox, #mozileMessageInterface > vbox  {
	width: 100%;
}




/**** Mozile Toolbar Widgets ****/

.mozileButton {
	-moz-appearance: none;
	margin: 1px 0px -1px 0px;
	padding: 1px 1px 2px 1px;
	-moz-border-radius: 3px;
	/* border: 1px outset #A3A3A3; */
	font-family: Arial, Helvetica, sans-serif;
}

.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;
}




/**** Mozile Statusbar Widgets ****/

#mozileStatusbar .mozileButton {
	width: 20px;
}

#mozileStatusbar > label {
	font-weight: normal;
	padding: 0px;
	margin-left: 5px;
}

#mozileStatusbar progressmeter {

}



#mozileStatusbar #mozileMoreButton {
	-moz-appearance: none;
  padding-right: 4px;
  list-style-image: url("../images/Popup-blocked.png") !important;
  border: none;
  min-width: 16px;
	width: 16px;
	height: 16px;
	padding: 0px;
	margin: 0px;
  background-image: none !important;
  background-color: transparent;
}
#mozileStatusbar #mozileMoreButton:hover:active {
	list-style-image: url("../images/Popup-blocked.png") !important;
}
#mozileStatusbar #mozileMoreButton .button-text {
  display: none;
}




#mozileStatusbar #mozilePastButton {
	-moz-appearance: none;
  padding-right: 4px;
  list-style-image: url("../images/Search-bar.png") !important;
  border: none;
  min-width: 16px;
	width: 16px;
	height: 16px;
	padding: 0px;
	margin: 0px;
  background-image: none !important;
  background-color: transparent;
}
#mozileStatusbar #mozilePastButton:hover:active {
	list-style-image: url("../images/Search-bar.png") !important;
}
#mozileStatusbar #mozilePastButton .button-text {
  display: none;
}


#mozileStatusbar #mozileCloseButton {
	-moz-appearance: none;
  padding-right: 4px;
  list-style-image: url("../images/closetab.png") !important;
  border: none;
  min-width: 16px;
	width: 16px;
	height: 16px;
	padding: 0px;
	margin: 0px;
  background-image: none !important;
  background-color: transparent;
}
#mozileStatusbar #mozileCloseButton:hover:active {
	list-style-image: url("../images/closetab-active.png") !important;
}
#mozileStatusbar #mozileCloseButton .button-text {
  display: none;
}




/**** Mozile Message Interface Widgets ****/

#mozileMessageInterface .functionButton {
	-moz-appearance: none;
  list-style-image: url("../images/info.png") !important;
  border: none;
  min-width: 16px;
  min-height: 16px;
	width: 20px;
	height: 20px;
	margin: 0px 10px 0px 0px;
	text-decoration: none;
}
#mozileMessageInterface .functionButton hbox {
	border: none;
}
#mozileMessageInterface .functionButton .button-text, #mozileMessageInterface .functionButton .button-menu-dropmarker {
  display: none;
}


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



/**** Mozile General Interface Widgets ****/

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

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

dialog {
    width: 400px;
}

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

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

.wide {
	width: 100px;
}

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

#bugs > hbox {
	margin: 1px;
	padding: 3px;
	border: 1px solid blue;
}


description {
	margin: 3px;
}

.datestamp {
}

.functions {
	/* font-weight: bold; */
}

.message {
}

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

#mozileAboutInterface .link {
    text-decoration: underline;
}

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

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

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

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


Documentation generated by JSDoc on Wed Oct 19 19:25:33 2005