browser.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3. * Copyright (C) 2003-2010 Frederico Caldeira Knabben
  4. *
  5. * == BEGIN LICENSE ==
  6. *
  7. * Licensed under the terms of any of the following licenses at your
  8. * choice:
  9. *
  10. * - GNU General Public License Version 2 or later (the "GPL")
  11. * http://www.gnu.org/licenses/gpl.html
  12. *
  13. * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14. * http://www.gnu.org/licenses/lgpl.html
  15. *
  16. * - Mozilla Public License Version 1.1 or later (the "MPL")
  17. * http://www.mozilla.org/MPL/MPL-1.1.html
  18. *
  19. * == END LICENSE ==
  20. *
  21. * CSS styles used by all pages that compose the File Browser.
  22. */
  23. body
  24. {
  25. background-color: #e3e3e3;
  26. margin-top:0;
  27. margin-bottom:0;
  28. }
  29. form
  30. {
  31. margin: 0;
  32. padding: 0;
  33. }
  34. body.FileArea
  35. {
  36. background-color: #ffffff;
  37. margin: 10px;
  38. }
  39. body, td, input, select
  40. {
  41. font-size: 11px;
  42. font-family: 'Microsoft Sans Serif', Arial, Helvetica, Verdana, sans-serif;
  43. }
  44. .ActualFolder
  45. {
  46. font-weight: bold;
  47. font-size: 14px;
  48. }
  49. .PopupButtons
  50. {
  51. border-top: #d5d59d 1px solid;
  52. background-color: #e3e3c7;
  53. padding: 7px 10px 7px 10px;
  54. }
  55. .Button, button
  56. {
  57. color: #3b3b3b;
  58. border: #939393 1px solid;
  59. background-color: #dedede;
  60. }
  61. .FolderListCurrentFolder img
  62. {
  63. background-image: url(../../../../theme/common/treemenu/folder-expanded.gif);
  64. }
  65. .FolderListFolder img
  66. {
  67. background-image: url(../../../../theme/common/treemenu/folder.gif);
  68. }
  69. .fullHeight {
  70. height: 100%;
  71. }