home *** CD-ROM | disk | FTP | other *** search
/ Freelog 112 / FreelogNo112-NovembreDecembre2012.iso / Multimedia / Songbird / Songbird_2.0.0-2311_windows-i686-msvc8.exe / xulrunner / res / contenteditable.css < prev    next >
Cascading Style Sheet File  |  2010-06-04  |  12KB  |  377 lines

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Disruptive Innovations.
  19.  * Portions created by the Initial Developer are Copyright (C) 2004
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Peter Van der Beken <peterv@propagandism.org>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  27.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. ::-moz-canvas {
  40.   cursor: text;
  41. }
  42.  
  43. :focus:-moz-read-write :-moz-read-only {
  44.   -moz-user-select: all !important;
  45. }
  46.  
  47. input:-moz-read-write > .anonymous-div:-moz-read-only,
  48. textarea:-moz-read-write > .anonymous-div:-moz-read-only {
  49.   -moz-user-select: text !important;
  50. }
  51.  
  52. /* Use default arrow over objects with size that 
  53.    are selected when clicked on.
  54.    Override the browser's pointer cursor over links
  55. */
  56.  
  57. img:-moz-read-write, img:-moz-read-write[usemap], area:-moz-read-write,
  58. object:-moz-read-write, object:-moz-read-write[usemap], 
  59. applet:-moz-read-write, hr:-moz-read-write, button:-moz-read-write,
  60. isindex:-moz-read-write, select:-moz-read-write,
  61. a:-moz-read-write:link img, a:-moz-read-write:visited img,
  62. a:-moz-read-write:active img, a:-moz-read-write:-moz-only-whitespace[name] {
  63.   cursor: default;
  64. }
  65.  
  66. :-moz-any-link:-moz-read-write {
  67.   cursor: text;
  68. }
  69.  
  70. /* Prevent clicking on links from going to link */
  71. a:link:-moz-read-write img, a:visited:-moz-read-write img,
  72. a:active:-moz-read-write img {
  73.   -moz-user-input: none;
  74. }
  75.  
  76. /* We suppress user/author's prefs for link underline, 
  77.    so we must set explicitly. This isn't good!
  78. */
  79. a:link:-moz-read-write {
  80.   text-decoration: underline -moz-anchor-decoration;
  81.   color: -moz-hyperlinktext;
  82. }
  83.  
  84. /* Allow double-clicks on these widgets to open properties dialogs
  85.    XXX except when the widget has disabled attribute */
  86. :-moz-read-write > input:-moz-read-only,
  87. :-moz-read-write > button:-moz-read-only,
  88. :-moz-read-write > textarea:-moz-read-only {
  89.   -moz-user-select: all !important;
  90.   -moz-user-input: auto !important;
  91.   -moz-user-focus: none !important;
  92. }
  93.  
  94. /* XXX Still need a better way of blocking other events to these widgets */
  95. select:-moz-read-write,
  96. :-moz-read-write > input[disabled],
  97. :-moz-read-write > input[type="checkbox"],
  98. :-moz-read-write > input[type="radio"],
  99. :-moz-read-write > input[type="file"],
  100. input[contenteditable="true"][disabled],
  101. input[contenteditable="true"][type="checkbox"],
  102. input[contenteditable="true"][type="radio"],
  103. input[contenteditable="true"][type="file"] {
  104.   -moz-user-select: all !important;
  105.   -moz-user-input: none !important;
  106.   -moz-user-focus: none !important;
  107. }
  108.  
  109. isindex:-moz-read-write[prompt]
  110. {
  111.   -moz-user-select: none !important;
  112.   -moz-user-input: none !important;
  113.   -moz-user-focus: none !important;
  114. }
  115.  
  116. /* emulation of non-standard HTML <marquee> tag */
  117. marquee:-moz-read-write {
  118.   -moz-binding: url('chrome://xbl-marquee/content/xbl-marquee.xml#marquee-horizontal-editable');
  119. }
  120.  
  121. marquee[direction="up"]:-moz-read-write, marquee[direction="down"]:-moz-read-write {
  122.   -moz-binding: url('chrome://xbl-marquee/content/xbl-marquee.xml#marquee-vertical-editable');
  123. }
  124.  
  125. :-moz-read-write > input[type="hidden"],
  126. input[contenteditable="true"][type="hidden"] {
  127.   border: 1px solid black !important;
  128.   visibility: visible !important;
  129. }
  130.  
  131. label:-moz-read-write {
  132.     -moz-user-select: all !important;
  133. }
  134.  
  135. ::-moz-display-comboboxcontrol-frame {
  136.   -moz-user-select: text !important;
  137. }
  138.  
  139. option:-moz-read-write {
  140.   -moz-user-select: text !important;
  141. }
  142.  
  143. /* the following rules are for Image Resizing */
  144.  
  145. span[\_moz_anonclass="mozResizer"] {
  146.   width: 5px;
  147.   height: 5px;
  148.   position: absolute;
  149.   border: 1px black solid;
  150.   background-color: white;
  151.   -moz-user-select: none;
  152.   z-index: 2147483646; /* max value -1 for this property */
  153. }
  154.  
  155. /* we can't use :active below */
  156. span[\_moz_anonclass="mozResizer"][\_moz_activated],
  157. span[\_moz_anonclass="mozResizer"]:hover {
  158.   background-color: black;
  159. }
  160.  
  161. span[\_moz_anonclass="mozResizer"].hidden,
  162. span[\_moz_anonclass="mozResizingShadow"].hidden,
  163. img[\_moz_anonclass="mozResizingShadow"].hidden,
  164. span[\_moz_anonclass="mozGrabber"].hidden,
  165. span[\_moz_anonclass="mozResizingInfo"].hidden,
  166. a[\_moz_anonclass="mozTableRemoveRow"].hidden,
  167. a[\_moz_anonclass="mozTableRemoveColumn"].hidden {
  168.   display: none !important;
  169. }
  170.  
  171. span[\_moz_anonclass="mozResizer"][anonlocation="nw"] {
  172.   cursor: nw-resize;
  173. }
  174. span[\_moz_anonclass="mozResizer"][anonlocation="n"] {
  175.   cursor: n-resize;
  176. }
  177. span[\_moz_anonclass="mozResizer"][anonlocation="ne"] {
  178.   cursor: ne-resize;
  179. }
  180. span[\_moz_anonclass="mozResizer"][anonlocation="w"] {
  181.   cursor: w-resize;
  182. }
  183. span[\_moz_anonclass="mozResizer"][anonlocation="e"] {
  184.   cursor: e-resize;
  185. }
  186. span[\_moz_anonclass="mozResizer"][anonlocation="sw"] {
  187.   cursor: sw-resize;
  188. }
  189. span[\_moz_anonclass="mozResizer"][anonlocation="s"] {
  190.   cursor: s-resize;
  191. }
  192. span[\_moz_anonclass="mozResizer"][anonlocation="se"] {
  193.   cursor: se-resize;
  194. }
  195.  
  196. span[\_moz_anonclass="mozResizingShadow"],
  197. img[\_moz_anonclass="mozResizingShadow"] {
  198.   outline: thin dashed black;
  199.   -moz-user-select: none;
  200.   opacity: 0.5;
  201.   position: absolute;
  202.   z-index: 2147483647; /* max value for this property */
  203. }
  204.  
  205. span[\_moz_anonclass="mozResizingInfo"] {
  206.   font-family: sans-serif;
  207.   font-size: x-small;
  208.   color: black;
  209.   background-color: #d0d0d0;
  210.   border: ridge 2px #d0d0d0;
  211.   padding: 2px;
  212.   position: absolute;
  213.   z-index: 2147483647; /* max value for this property */
  214. }
  215.  
  216. img[\_moz_resizing] {
  217.   outline: thin solid black;
  218. }
  219.  
  220. *[\_moz_abspos] {
  221.   outline: silver ridge 2px;
  222.   z-index: 2147483645 !important; /* max value -2 for this property */
  223. }
  224. *[\_moz_abspos="white"] {
  225.   background-color: white !important;
  226. }
  227. *[\_moz_abspos="black"] {
  228.   background-color: black !important;
  229. }
  230.  
  231. span[\_moz_anonclass="mozGrabber"] {
  232.   outline: ridge 2px silver;
  233.   padding: 2px;
  234.   position: absolute;
  235.   width: 12px;
  236.   height: 12px;
  237.   background-image: url("resource://gre/res/grabber.gif");
  238.   background-repeat: no-repeat;
  239.   background-position: center center;
  240.   -moz-user-select: none;
  241.   cursor: move;
  242. }
  243.  
  244. /* INLINE TABLE EDITING */
  245.  
  246. a[\_moz_anonclass="mozTableAddColumnBefore"] {
  247.   position: absolute;
  248.   z-index: 2147483647; /* max value for this property */
  249.   text-decoration: none !important;
  250.   border: none 0px !important;
  251.   width: 4px;
  252.   height: 8px;
  253.   background-image: url("resource://gre/res/table-add-column-before.gif");
  254.   background-repeat: no-repeat;
  255.   background-position: center center;
  256.   -moz-user-select: none !important;
  257.   -moz-user-focus: none !important;
  258. }
  259.  
  260. a[\_moz_anonclass="mozTableAddColumnBefore"]:hover {
  261.   background-image: url("resource://gre/res/table-add-column-before-hover.gif");
  262. }
  263.  
  264. a[\_moz_anonclass="mozTableAddColumnBefore"]:active {
  265.   background-image: url("resource://gre/res/table-add-column-before-active.gif");
  266. }
  267.  
  268. a[\_moz_anonclass="mozTableAddColumnAfter"] {
  269.   position: absolute;
  270.   z-index: 2147483647; /* max value for this property */
  271.   text-decoration: none !important;
  272.   border: none 0px !important;
  273.   width: 4px;
  274.   height: 8px;
  275.   background-image: url("resource://gre/res/table-add-column-after.gif");
  276.   background-repeat: no-repeat;
  277.   background-position: center center;
  278.   -moz-user-select: none !important;
  279.   -moz-user-focus: none !important;
  280. }
  281.  
  282. a[\_moz_anonclass="mozTableAddColumnAfter"]:hover {
  283.   background-image: url("resource://gre/res/table-add-column-after-hover.gif");
  284. }
  285.  
  286. a[\_moz_anonclass="mozTableAddColumnAfter"]:active {
  287.   background-image: url("resource://gre/res/table-add-column-after-active.gif");
  288. }
  289.  
  290. a[\_moz_anonclass="mozTableRemoveColumn"] {
  291.   position: absolute;
  292.   z-index: 2147483647; /* max value for this property */
  293.   text-decoration: none !important;
  294.   border: none 0px !important;
  295.   width: 8px;
  296.   height: 8px;
  297.   background-image: url("resource://gre/res/table-remove-column.gif");
  298.   background-repeat: no-repeat;
  299.   background-position: center center;
  300.   -moz-user-select: none !important;
  301.   -moz-user-focus: none !important;
  302. }
  303.  
  304. a[\_moz_anonclass="mozTableRemoveColumn"]:hover {
  305.   background-image: url("resource://gre/res/table-remove-column-hover.gif");
  306. }
  307.  
  308. a[\_moz_anonclass="mozTableRemoveColumn"]:active {
  309.   background-image: url("resource://gre/res/table-remove-column-active.gif");
  310. }
  311.  
  312. a[\_moz_anonclass="mozTableAddRowBefore"] {
  313.   position: absolute;
  314.   z-index: 2147483647; /* max value for this property */
  315.   text-decoration: none !important;
  316.   border: none 0px !important;
  317.   width: 8px;
  318.   height: 4px;
  319.   background-image: url("resource://gre/res/table-add-row-before.gif");
  320.   background-repeat: no-repeat;
  321.   background-position: center center;
  322.   -moz-user-select: none !important;
  323.   -moz-user-focus: none !important;
  324. }
  325.  
  326. a[\_moz_anonclass="mozTableAddRowBefore"]:hover {
  327.   background-image: url("resource://gre/res/table-add-row-before-hover.gif");
  328. }
  329.  
  330. a[\_moz_anonclass="mozTableAddRowBefore"]:active {
  331.   background-image: url("resource://gre/res/table-add-row-before-active.gif");
  332. }
  333.  
  334. a[\_moz_anonclass="mozTableAddRowAfter"] {
  335.   position: absolute;
  336.   z-index: 2147483647; /* max value for this property */
  337.   text-decoration: none !important;
  338.   border: none 0px !important;
  339.   width: 8px;
  340.   height: 4px;
  341.   background-image: url("resource://gre/res/table-add-row-after.gif");
  342.   background-repeat: no-repeat;
  343.   background-position: center center;
  344.   -moz-user-select: none !important;
  345.   -moz-user-focus: none !important;
  346. }
  347.  
  348. a[\_moz_anonclass="mozTableAddRowAfter"]:hover {
  349.   background-image: url("resource://gre/res/table-add-row-after-hover.gif");
  350. }
  351.  
  352. a[\_moz_anonclass="mozTableAddRowAfter"]:active {
  353.   background-image: url("resource://gre/res/table-add-row-after-active.gif");
  354. }
  355.  
  356. a[\_moz_anonclass="mozTableRemoveRow"] {
  357.   position: absolute;
  358.   z-index: 2147483647; /* max value for this property */
  359.   text-decoration: none !important;
  360.   border: none 0px !important;
  361.   width: 8px;
  362.   height: 8px;
  363.   background-image: url("resource://gre/res/table-remove-row.gif");
  364.   background-repeat: no-repeat;
  365.   background-position: center center;
  366.   -moz-user-select: none !important;
  367.   -moz-user-focus: none !important;
  368. }
  369.  
  370. a[\_moz_anonclass="mozTableRemoveRow"]:hover {
  371.   background-image: url("resource://gre/res/table-remove-row-hover.gif");
  372. }
  373.  
  374. a[\_moz_anonclass="mozTableRemoveRow"]:active {
  375.   background-image: url("resource://gre/res/table-remove-row-active.gif");
  376. }
  377.