| 1 |
/* |
| 2 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net |
| 3 |
* Copyright (C) 2003-2009 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 |
|
| 24 |
body |
| 25 |
{ |
| 26 |
background-color: #f1f1e3; |
| 27 |
margin-top:0; |
| 28 |
margin-bottom:0; |
| 29 |
} |
| 30 |
|
| 31 |
form |
| 32 |
{ |
| 33 |
margin: 0; |
| 34 |
padding: 0; |
| 35 |
} |
| 36 |
|
| 37 |
.Frame |
| 38 |
{ |
| 39 |
background-color: #f1f1e3; |
| 40 |
border: thin inset #f1f1e3; |
| 41 |
} |
| 42 |
|
| 43 |
body.FileArea |
| 44 |
{ |
| 45 |
background-color: #ffffff; |
| 46 |
margin: 10px; |
| 47 |
} |
| 48 |
|
| 49 |
body, td, input, select |
| 50 |
{ |
| 51 |
font-size: 11px; |
| 52 |
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; |
| 53 |
} |
| 54 |
|
| 55 |
.ActualFolder |
| 56 |
{ |
| 57 |
font-weight: bold; |
| 58 |
font-size: 14px; |
| 59 |
} |
| 60 |
|
| 61 |
.PopupButtons |
| 62 |
{ |
| 63 |
border-top: #d5d59d 1px solid; |
| 64 |
background-color: #e3e3c7; |
| 65 |
padding: 7px 10px 7px 10px; |
| 66 |
} |
| 67 |
|
| 68 |
.Button, button |
| 69 |
{ |
| 70 |
color: #3b3b1f; |
| 71 |
border: #737357 1px solid; |
| 72 |
background-color: #c7c78f; |
| 73 |
} |
| 74 |
|
| 75 |
.FolderListCurrentFolder img |
| 76 |
{ |
| 77 |
background-image: url(images/FolderOpened.gif); |
| 78 |
} |
| 79 |
|
| 80 |
.FolderListFolder img |
| 81 |
{ |
| 82 |
background-image: url(images/Folder.gif); |
| 83 |
} |
| 84 |
|
| 85 |
.fullHeight { |
| 86 |
height: 100%; |
| 87 |
} |
| 88 |
|