file_manager.css 1005 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. body {
  2. font-size:12px;
  3. font-family: "sans serif",tahoma,verdana,helvetica;
  4. margin: 0;
  5. padding: 0;
  6. background-color:#F0F0EE;
  7. overflow: hidden;
  8. }
  9. td {
  10. font-size:12px;
  11. }
  12. .top {
  13. background-color:#F0F0EE;
  14. }
  15. .file-view {
  16. overflow: scroll;
  17. background-color:#FFFFFF;
  18. width: 500px;
  19. height: 370px;
  20. }
  21. .file-view-area {
  22. float:left;
  23. border: 1px solid #FFFFFF;
  24. margin: 5px;
  25. }
  26. .file-view-area .photo {
  27. width: 100px;
  28. height: 100px;
  29. margin: 3px;
  30. }
  31. .file-view-area .name {
  32. margin: 2px;
  33. text-align: center;
  34. overflow: hidden;
  35. width: 100px;
  36. height: 16px;
  37. }
  38. .selected {
  39. border: 1px solid #888888;
  40. background-color: #F0F0EE;
  41. }
  42. .noselected {
  43. border: 1px solid #DDDDDD;
  44. background-color: #FFFFFF;
  45. }
  46. .file-list {
  47. overflow: scroll;
  48. background-color:#FFFFFF;
  49. width: 500px;
  50. height: 370px;
  51. }
  52. .file-list-table {
  53. width: 100%;
  54. }
  55. .file-list-table .name {
  56. width: 55%;
  57. }
  58. .file-list-table .size {
  59. width: 8%;
  60. }
  61. .file-list-table .datetime {
  62. width: 30%;
  63. text-align: center;
  64. }
  65. .file-list-table .op{ width:7%;}