userRecord.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*S userRecord*/
  2. #userRecord {
  3. }
  4. #userMachine {
  5. text-align:right;
  6. padding:0 10px 5px 0;
  7. }
  8. #userRecordCategory {
  9. position:absolute;
  10. background:#fdfdfd;
  11. width:38px;
  12. position:absolute;
  13. top:50px;
  14. left:5px;
  15. overflow:hidden;
  16. z-index:100;
  17. }
  18. #userRecordCategory dt {
  19. background: #f3f3f3 url(../images/bg_tools.png) repeat-x left top;
  20. cursor: pointer;
  21. border-bottom: 1px solid #DCDCDC;
  22. border-right:1px solid #DCDCDC;
  23. height: 24px;
  24. line-height: 24px;
  25. text-align: center;
  26. display: block;
  27. margin-left: -1px;
  28. text-decoration: none;
  29. color: #999;
  30. }
  31. #userRecordCategory dt:hover{
  32. background:#e2ebff;
  33. }
  34. #userRecordCategory dt.active {
  35. background:#0d98d8;
  36. border-right:1px solid #0d98d8;
  37. color:#FFF;
  38. font-weight:bold;
  39. }
  40. #userRecordList {
  41. margin:5px 0 10px 70px;
  42. position:relative;
  43. z-index:90;
  44. }
  45. #userRecordList dt {
  46. padding:5px;
  47. font-size:12px;
  48. cursor:pointer;
  49. color:#333;
  50. border-bottom:1px solid #DDD;
  51. height:24px;
  52. line-height:24px;
  53. position:relative;
  54. }
  55. #userRecordList dt:hover,
  56. #userRecordList dt.select {
  57. background:#e2ebff;
  58. }
  59. #userRecordList dt .num {
  60. font-size:20px;
  61. font-family:Arial,serif;
  62. color:#CCCCCC;
  63. text-align:right;
  64. left:-55px;
  65. position:absolute;
  66. height:24px;
  67. width:40px;
  68. padding:0 5px;
  69. overflow:hidden;
  70. }
  71. #userRecordList dt .name {
  72. display:inline-block;
  73. width:140px;
  74. height:24px;
  75. overflow:hidden;
  76. }
  77. #userRecordList dt .date {
  78. font-size:10px;
  79. color:#999;
  80. font-weight:normal;
  81. float:right;
  82. }
  83. #userRecordList dt .option {
  84. display:none;
  85. }
  86. #userRecordList dt:hover .date {
  87. display:none;
  88. }
  89. #userRecordList dt:hover .option {
  90. position:absolute;
  91. right:10px;
  92. top:10px;
  93. display:block;
  94. }
  95. #userRecordList dt:hover .option .edit {
  96. display:block;
  97. float:right;
  98. width:14px;
  99. height:14px;
  100. overflow:hidden;
  101. text-indent:-999px;
  102. margin-right:5px;
  103. background:url(../images/glyphicons-halflings.gif) no-repeat -96px -72px;
  104. }
  105. #userRecordList dt:hover .option .del {
  106. display:block;
  107. float:right;
  108. width:14px;
  109. height:14px;
  110. overflow:hidden;
  111. text-indent:-999px;
  112. background:url(../images/glyphicons-halflings.gif) no-repeat -312px 0;
  113. }
  114. #userRecordList dt:hover .option .share {
  115. display:block;
  116. float:right;
  117. width:14px;
  118. height:14px;
  119. overflow:hidden;
  120. text-indent:-999px;
  121. margin-right:5px;
  122. background:url(../images/glyphicons-halflings.gif) no-repeat -120px -72px;
  123. }
  124. /*note*/
  125. .user-record-note {}
  126. .user-record-note .address {
  127. color:#999;
  128. text-align:right;
  129. display:block;
  130. font-size:11px;
  131. }
  132. /*graffiti*/
  133. .user-record-graffiti {}
  134. .user-record-graffiti .graffiti {
  135. width:300px;
  136. }
  137. .user-record-graffiti .address {
  138. color:#999;
  139. text-align:right;
  140. display:block;
  141. font-size:11px;
  142. }
  143. /*video*/
  144. .user-record-video {}
  145. .user-record-video {
  146. width:400px;
  147. }
  148. .user-record-video .address {
  149. color:#999;
  150. text-align:right;
  151. display:block;
  152. font-size:11px;
  153. }
  154. /*sound*/
  155. .user-record-sound {
  156. }
  157. .user-record-sound {
  158. width:300px;
  159. }
  160. .user-record-sound .address {
  161. color:#999;
  162. text-align:right;
  163. display:block;
  164. font-size:11px;
  165. }
  166. /*image*/
  167. .user-record-image {}
  168. .user-record-image .image {
  169. width:400px;
  170. }
  171. .user-record-image .address {
  172. color:#999;
  173. text-align:right;
  174. display:block;
  175. font-size:11px;
  176. }
  177. /*E userRecord*/