css.php 900 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * Extended TinyMCE CSS
  4. *
  5. * Overrides on the default TinyMCE skin
  6. * Gives the textarea and buttons rounded corners
  7. *
  8. * The rules are extra long in order to have enough
  9. * weight to override the TinyMCE rules
  10. */
  11. ?>
  12. .elgg-input-longtext {
  13. width: 100%;
  14. background: transparent;
  15. box-shadow: none;
  16. display: block !important;
  17. height: 0;
  18. resize: none;
  19. width: 0;
  20. visibility: hidden;
  21. position: relative;
  22. padding: 0px;
  23. }
  24. /* TinyMCE */
  25. .elgg-page .mceEditor table.mceLayout {
  26. border: 1px solid #CCC;
  27. -webkit-border-radius: 5px;
  28. -moz-border-radius: 5px;
  29. border-radius: 5px;
  30. }
  31. .elgg-page table.mceLayout tr.mceFirst td.mceToolbar,
  32. .elgg-page table.mceLayout tr.mceLast td.mceStatusbar {
  33. border-width: 0px;
  34. }
  35. .mceButton {
  36. -webkit-border-radius: 4px;
  37. -moz-border-radius: 4px;
  38. border-radius: 4px;
  39. }
  40. .mceLast .mceStatusbar {
  41. padding-left: 5px;
  42. }
  43. .mce-tinymce {
  44. clear:right;
  45. }