fckstyles.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!--
  3. * FCKeditor - The text editor for internet
  4. * Copyright (C) 2003-2004 Frederico Caldeira Knabben
  5. *
  6. * Licensed under the terms of the GNU Lesser General Public License:
  7. * http://www.opensource.org/licenses/lgpl-license.php
  8. *
  9. * For further information visit:
  10. * http://www.fckeditor.net/
  11. *
  12. * File Name: fckstyles.xml
  13. * This is the sample style definitions file. It makes the styles combo
  14. * completely customizable.
  15. * See FCKConfig.StylesXmlPath in the configuration file.
  16. *
  17. * Version: 2.0 RC2
  18. * Modified: 2004-11-27 01:55:27
  19. *
  20. * File Authors:
  21. * Frederico Caldeira Knabben (fredck@fckeditor.net)
  22. -->
  23. <Styles>
  24. <Style name="Image on Left" element="img">
  25. <Attribute name="style" value="padding: 5px; margin-right: 5px" />
  26. <Attribute name="border" value="2" />
  27. <Attribute name="align" value="left" />
  28. </Style>
  29. <Style name="Image on Right" element="img">
  30. <Attribute name="style" value="padding: 5px; margin-left: 5px" />
  31. <Attribute name="border" value="2" />
  32. <Attribute name="align" value="right" />
  33. </Style>
  34. <Style name="Custom Bold" element="span">
  35. <Attribute name="style" value="font-weight: bold;" />
  36. </Style>
  37. <Style name="Custom Italic" element="em" />
  38. <Style name="Title" element="span">
  39. <Attribute name="class" value="Title" />
  40. </Style>
  41. <Style name="Code" element="span">
  42. <Attribute name="class" value="Code" />
  43. </Style>
  44. <Style name="Title H3" element="h3" />
  45. <Style name="Custom Ruler" element="hr">
  46. <Attribute name="size" value="1" />
  47. <Attribute name="color" value="#ff0000" />
  48. </Style>
  49. </Styles>