EditorOverride.css contained slow CSS rules; b=196625, r=kin, sr=kin

This commit is contained in:
glazman%netscape.com 2003-03-25 15:16:21 +00:00
Родитель 4f9693d38e
Коммит 0ee6895c46
2 изменённых файлов: 16 добавлений и 187 удалений

Просмотреть файл

@ -110,7 +110,7 @@ option {
/* the following rules are for Image Resizing */
*[\_moz_anonclass="mozResizer"] {
span[\_moz_anonclass="mozResizer"] {
width: 4px;
height: 4px;
position: absolute;
@ -120,38 +120,40 @@ option {
-moz-user-select: none;
}
*[\_moz_anonclass="mozResizer"].hidden,
*[\_moz_anonclass="mozResizingShadow"].hidden,
*[\_moz_anonclass="mozResizingInfo"].hidden {
span[\_moz_anonclass="mozResizer"].hidden,
span[\_moz_anonclass="mozResizingShadow"].hidden,
img[\_moz_anonclass="mozResizingShadow"].hidden,
span[\_moz_anonclass="mozResizingInfo"].hidden {
display: none ! important;
}
*[\_moz_anonclass="mozResizer"][anonlocation="nw"] {
span[\_moz_anonclass="mozResizer"][anonlocation="nw"] {
cursor: nw-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="n"] {
span[\_moz_anonclass="mozResizer"][anonlocation="n"] {
cursor: n-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="ne"] {
span[\_moz_anonclass="mozResizer"][anonlocation="ne"] {
cursor: ne-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="w"] {
span[\_moz_anonclass="mozResizer"][anonlocation="w"] {
cursor: w-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="e"] {
span[\_moz_anonclass="mozResizer"][anonlocation="e"] {
cursor: e-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="sw"] {
span[\_moz_anonclass="mozResizer"][anonlocation="sw"] {
cursor: sw-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="s"] {
span[\_moz_anonclass="mozResizer"][anonlocation="s"] {
cursor: s-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="se"] {
span[\_moz_anonclass="mozResizer"][anonlocation="se"] {
cursor: se-resize;
}
*[\_moz_anonclass="mozResizingShadow"] {
span[\_moz_anonclass="mozResizingShadow"],
img[\_moz_anonclass="mozResizingShadow"]{
border: thin dashed black;
-moz-user-select: none;
display: block;
@ -159,7 +161,7 @@ option {
position: absolute;
}
*[\_moz_anonclass="mozResizingInfo"] {
span[\_moz_anonclass="mozResizingInfo"] {
font-family: sans-serif;
font-size: x-small;
color: black;
@ -169,4 +171,3 @@ option {
position: absolute;
display: block;
}

Просмотреть файл

@ -1,172 +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.
*
* Contributor(s):
*/
/* Styles to alter look of things in the Editor content window
* that should NOT be removed when we display in completely WYSIWYG
* "Browser Preview" mode.
* Anything that should change, like appearance of table borders
* and Named Anchors, should be placed in EditorContent.css instead of here.
*/
/* Primary cursor is text I-beam */
:canvas, a:link {
cursor: text;
}
/* Use default arrow over objects with size that
are selected when clicked on.
Override the browser's pointer cursor over links
*/
img, img[usemap], area,
object, object[usemap],
applet, hr, button, input, isindex, textarea, select,
a:link img, a:visited img, a:active img,
a[name]:empty {
cursor: default;
}
a:visited, a:active {
cursor: text;
color : inherit;
}
/* Prevent clicking on links from going to link */
a:link img, a:visited img {
-moz-user-input: none;
}
/* We suppress user/author's prefs for link underline,
so we must set explicitly. This isn't good!
*/
a:link {
text-decoration: underline -moz-anchor-decoration;
color: -moz-hyperlinktext;
}
/* Allow double-clicks on these widgets to open properties dialogs
XXX except when the widget has disabled attribute */
input, button, textarea {
-moz-user-select: all !important;
-moz-user-input: auto !important;
-moz-user-focus: none !important;
}
/* XXX Still need a better way of blocking other events to these widgets */
select, input[disabled], input[type="checkbox"], input[type="radio"], input[type="file"] {
-moz-user-select: all !important;
-moz-user-input: none !important;
-moz-user-focus: none !important;
}
isindex[prompt]
{
-moz-user-select: none !important;
-moz-user-input: none !important;
-moz-user-focus: none !important;
}
input[type="hidden"] {
border: 1px solid black !important;
visibility: visible !important;
}
label {
-moz-user-select: all !important;
}
:-moz-display-comboboxcontrol-frame {
-moz-user-select: text !important;
}
option {
-moz-user-select: text !important;
}
#mozToc.readonly {
-moz-user-select: all !important;
-moz-user-input: none ! important;
}
/* the following rules are for Image Resizing */
*[\_moz_anonclass="mozResizer"] {
width: 4px;
height: 4px;
position: absolute;
display: block;
border: 1px black solid;
background-color: black;
-moz-user-select: none;
}
*[\_moz_anonclass="mozResizer"].hidden,
*[\_moz_anonclass="mozResizingShadow"].hidden,
*[\_moz_anonclass="mozResizingInfo"].hidden {
display: none ! important;
}
*[\_moz_anonclass="mozResizer"][anonlocation="nw"] {
cursor: nw-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="n"] {
cursor: n-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="ne"] {
cursor: ne-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="w"] {
cursor: w-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="e"] {
cursor: e-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="sw"] {
cursor: sw-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="s"] {
cursor: s-resize;
}
*[\_moz_anonclass="mozResizer"][anonlocation="se"] {
cursor: se-resize;
}
*[\_moz_anonclass="mozResizingShadow"] {
border: thin dashed black;
-moz-user-select: none;
display: block;
-moz-opacity: 0.5;
position: absolute;
}
*[\_moz_anonclass="mozResizingInfo"] {
font-family: sans-serif;
font-size: x-small;
color: black;
background-color: #d0d0d0;
border: ridge 2px #d0d0d0;
padding: 2px;
position: absolute;
display: block;
}