[ Index ] |
|
Code source de b2evolution 2.1.0-beta |
1 /** 2 * Filemanager Cascading Style Sheets definitions. 3 * 4 * Only alignments, overrides various classes for the filemanmain div 5 * 6 * b2evolution - {@link http://b2evolution.net/} 7 * Released under GNU GPL License - {@link http://b2evolution.net/about/license.html} 8 * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/} 9 * 10 * @package admin 11 */ 12 13 #filemanmain { 14 margin-bottom:1em; 15 } 16 17 #FilesForm div.panelinfo { 18 margin:1ex 0; 19 } 20 21 div#fileman_toolbars_bottom { 22 padding: 0 .5ex; 23 } 24 .toolbaritem { 25 margin-left: 1ex; 26 float:right; 27 white-space:nowrap; 28 } 29 30 31 #fm_browser { 32 clear: both; 33 width: 100%; 34 margin: 1ex auto; 35 } 36 37 #fm_bar { 38 padding: .5ex; 39 border-top: 1px solid #bbb; 40 border-left: 1px solid #bbb; 41 border-right: 1px solid #bbb; 42 background-color: #ddd; /* Temp color, needs overriding */ 43 } 44 45 #fmbar_cwd { 46 display: inline; 47 } 48 49 #fmbar_filter, 50 #fmbar_reloadhint { 51 display: inline; 52 white-space: nowrap; 53 } 54 #fmbar_filecounts { 55 display: inline; 56 white-space: nowrap; 57 margin-left:1ex; 58 font-size: 84%; 59 } 60 61 #fm_dirtree { 62 vertical-align: top; 63 width: 15%; 64 padding: .5ex; 65 border: 1px solid #bbb; 66 } 67 #fm_files { 68 vertical-align: top; 69 padding: 0; 70 border: 1px solid #bbb; 71 background-color: #ddd; 72 } 73 74 75 /* Directory tree: */ 76 .folder_in_tree { 77 white-space:nowrap; 78 } 79 80 /** 81 * Files table {{{ 82 */ 83 table.filelist { 84 border-collapse: collapse; 85 width: 100%; 86 border-bottom: 1px solid #bbb; 87 } 88 table.filelist tr { 89 background-color: #eee; 90 } 91 table.filelist tr.odd { 92 background-color: #ddd; 93 } 94 table.filelist tr:hover, 95 table.filelist tr.odd:hover { 96 background-color:#ccc; 97 } 98 table.filelist td { 99 border-left: 1px solid #bbb; 100 padding: 2px 4px; 101 } 102 table.filelist .firstcol { 103 border-left: none; 104 } 105 106 107 /* Table headers/footers: */ 108 table.filelist th { 109 padding: 2px 4px; 110 border-bottom: 1px solid #bbb; 111 border-left: 1px solid #bbb; 112 background-color: #ddd; 113 } 114 table.filelist th img { 115 vertical-align: bottom; 116 } 117 118 /* Table BASIC sort buttons/headers: */ 119 table.filelist th a.basic_current, 120 table.filelist th a.basic_sort_link { 121 padding: 0 4px; 122 display: block; 123 height: 100%; 124 } 125 table.filelist th a.basic_current { 126 background-color:#ccc; 127 } 128 table.filelist th a.basic_sort_link:hover { 129 background-color:#ccc; 130 } 131 132 table.filelist td.error { 133 padding:2ex; 134 color:red; 135 } 136 table.filelist td.checkbox { 137 text-align: center; 138 } 139 table.filelist input.checkbox { 140 border:none; 141 background-color: #eee; 142 } 143 table.filelist tr.odd input.checkbox { 144 border:none; 145 background-color: #ddd; 146 } 147 table.filelist td.icon_type { 148 text-align: center; 149 white-space: nowrap; 150 width: 1%; 151 } 152 table.filelist td#fileman_error, /* used when an error (e.g. "no files") gets displayed */ 153 table.filelist td.fm_filename { 154 text-align: left; 155 width:100%; /* the glory hack: makes the table as wide as it can be */ 156 } 157 table.filelist td.fm_filename div.path { 158 clear:right; 159 float:right; 160 } 161 .filemeta /* meta data after filename */ 162 { 163 color: #999; 164 font-size: 84%; 165 } 166 table.filelist td.size, 167 table.filelist td.actions { 168 white-space: nowrap; 169 } 170 table.filelist td.size { 171 text-align: right; 172 } 173 table.filelist td.perms { 174 text-align: center; 175 } 176 table.filelist tr.listfooter td { 177 /* Temporary colors, needs overriding */ 178 border-top: 1px solid #bbb; 179 border-left: none; 180 background-color: #ddd; 181 } 182 183 /* }}} / Files table */ 184 185 186 187 div.fm_query { 188 padding-top: 2ex; 189 border:1px solid; 190 } 191 192 div.img_frame { 193 text-align:center; 194 border:1px solid red; 195 } 196 div.subline { 197 color:#777; 198 font-size:75%; 199 } 200 img.framed { 201 border:1px dashed #d91; 202 padding:10px; 203 margin:10px; 204 } 205 .linenr { 206 background-color:#ff0; 207 font-weight:bold; 208 } 209 div.fileheader, 210 div.eof 211 { /* Use in RAW file preview */ 212 background:#ccc; 213 padding:1ex; 214 margin: 0; 215 } 216 pre.rawcontent { 217 margin:0; 218 padding:0 1ex; 219 font-family: Courier New, sans-serif; 220 } 221 222 .filenameIcon { 223 float:right; 224 border:none; 225 padding:0; 226 margin:0; 227 background:transparent; 228 } 229 230 em.filter { 231 color:#f00; 232 } 233 234 .tooltitle { 235 font-weight:bold; 236 padding-left:1ex; 237 } 238 ul.iconlegend { 239 list-style:none; 240 margin:1ex; 241 padding:0; 242 display: inline; 243 } 244 ul.iconlegend li { 245 display:inline; 246 margin: 1ex; 247 white-space:nowrap; 248 /* margin-bottom:.5ex; */ 249 } 250 251 ul#uploadfileinputs { 252 list-style:none; 253 margin:0; 254 padding:0; 255 } 256 ul#uploadfileinputs li, /* Info block about a file to upload */ 257 p.uploadfileinputs { /* Link to add a new info block */ 258 background-color:#efede0; /* Temp color, needs overriding */ 259 margin:1ex 0; 260 padding:1ex; 261 } 262 ul#uploadfileinputs li.invalid 263 { /* Upload block displayed when upload has failed: */ 264 border:1px solid #f00; 265 } 266 ul#uploadfileinputs label { 267 font-weight:bold; 268 } 269 270 div#FM_anchor { 271 padding:2ex 0; 272 text-align:center; 273 } 274 275 div.panelblock fieldset.cmr_submit 276 { 277 text-align:center; 278 border:none; 279 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Thu Nov 29 23:58:50 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |