form.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. /**
  2. 附件样式表。
  3. */
  4. div.attachement{
  5. float:left;
  6. overflow:hidden;
  7. padding:3px 0 0 15px;
  8. white-space:nowrap;
  9. }
  10. span.attachement-span{
  11. float:left;
  12. background:#f5f6f4;
  13. border:1px solid #e1e1e1;
  14. margin:5px 10px 5px 0;
  15. padding 1px 3px 1px 5px;
  16. }
  17. a.attachment{
  18. text-decoration: none;
  19. font-size: 13px;
  20. color:#606060;
  21. }
  22. a.cancel{
  23. background:url(../images/cancel.png) 0 1px no-repeat;
  24. display:inline-block;
  25. height:14px;
  26. margin-left:8px;
  27. overflow:hidden;
  28. width:14px;
  29. text-decoration:none;
  30. }
  31. a.download{
  32. background:url(../images/arrow.png) 0 1px no-repeat;
  33. display:inline-block;
  34. height:14px;
  35. margin-left:8px;
  36. overflow:hidden;
  37. width:14px;
  38. text-decoration:none;
  39. }
  40. a.attachment:hover{
  41. text-decoration: underline;
  42. }
  43. table.formTable{
  44. border:1px solid #366092;border-collapse :collapse;width:100%;text-align:center;
  45. font-size: 12px;
  46. }
  47. table.formTable td{
  48. padding:4px 4px 4px 4px;
  49. /**border:solid 1px #366092;**/
  50. }
  51. table.formTable input, table.formTable textarea {
  52. width:250px;
  53. margin:2px;
  54. }
  55. table.formTable input[type="radio"], table.formTable input[type="checkbox"] {
  56. width: 20px;
  57. }
  58. td.formHead{
  59. border:1px solid #F3AFB2;
  60. text-align: center;
  61. font-size: 16px;
  62. font-weight: bold;
  63. background: url("../images/other/dhbg.jpg") repeat scroll;
  64. height: 32px;
  65. color: #000;
  66. }
  67. td.teamHead{
  68. border:1px solid #656565;
  69. text-align: left;
  70. font-size: 14px;
  71. font-weight: bold;
  72. background-color:#e6e6e6;
  73. height: 32px;
  74. color: #464646;
  75. }
  76. .window-table{
  77. width:50%;
  78. padding: 0;
  79. margin: 0;
  80. margin-top:15px;
  81. border-collapse:collapse;
  82. }
  83. .window-table th{
  84. width:40%;
  85. font-size: 13px;
  86. border: 1px solid #A8CFEB;
  87. background: #EDF6FC;
  88. font-size:13px;
  89. padding: 6px 6px 6px 12px;
  90. }
  91. .window-table td{
  92. width:60%;
  93. border: 1px solid #A8CFEB;
  94. background: #fff;
  95. font-size:12px;
  96. padding: 6px 6px 6px 12px;
  97. }
  98. .blocktable {
  99. width:100%;
  100. padding: 0;
  101. margin: 0;
  102. margin-top:15px;
  103. border-collapse:collapse;
  104. }
  105. .blocktable th {
  106. font-size: 13px;
  107. border: 1px solid #B8B8B8;
  108. background: #EBEBEB;
  109. font-size:13px;
  110. padding: 6px 6px 6px 12px;
  111. }
  112. .blocktable td{
  113. border: 1px solid #B8B8B8;
  114. background: #fff;
  115. font-size:12px;
  116. padding: 6px 6px 6px 12px;
  117. }
  118. .datepicker input{
  119. width:130px;
  120. background: url(../images/datePicker.gif) no-repeat scroll right center #FFFFFF;
  121. border: 1px solid #999999;
  122. height: 20px;
  123. }
  124. .dictionary input{
  125. width:130px;
  126. background: url(../images/control-270.png) no-repeat scroll right center #FFFFFF;
  127. border: 1px solid #999999;
  128. height: 20px;
  129. }
  130. td.formTitle{
  131. padding:2px;
  132. border:1px solid #EC9991;
  133. background-color:#F7CECA;
  134. text-align: right;
  135. height: 23px;
  136. }
  137. td.formInput{
  138. padding:2px;border:1px solid #E9BDB9;
  139. background-color:white;
  140. text-align: left;
  141. }
  142. table.listTable{
  143. border-collapse :collapse;width:100%;text-align:center;
  144. font-size: 12px;
  145. }/*border:1px solid #366092;*/
  146. table.listTable tr.headRow{
  147. height: 32px;
  148. }
  149. .headRow th{
  150. height:32px;
  151. text-align: left;
  152. background-color: #F0F1F1;
  153. padding:4px 4px 4px 4px;
  154. border:solid 1px #366092;
  155. }
  156. .listRow td{
  157. text-align: left;
  158. border:solid 1px #366092;
  159. padding:4px 4px 4px 4px;
  160. }
  161. table.listTable tr.toolBar{
  162. height: 32px;
  163. }/*background-color: #366092;*/
  164. table.listTable tr.toolBar td{
  165. text-align: left;
  166. padding-left: 4px;
  167. }/*border:1px solid #366092;*/
  168. table.listTable th{
  169. border:1px solid #b9dae9;
  170. text-align: center;
  171. height: 25px;
  172. font-size:12px;
  173. background-color:#F1F6FF;
  174. font-weight:bold;
  175. }
  176. /*验证表单字段样式*/
  177. label.error {
  178. background: url(../images/valid/unchecked.gif) no-repeat 0px 0px;
  179. margin-left: 16px;
  180. padding-left: 16px;
  181. padding-bottom: 2px;
  182. font-weight: bold;
  183. color: #EA5200;
  184. }
  185. table.listTable tr.listRow td{
  186. border:1px solid #b9dae9;
  187. text-align: center;
  188. height: 23px;
  189. padding-top: 2px;
  190. padding-bottom: 2px;
  191. }
  192. .taskopinion{
  193. display:inline-block;
  194. padding:3px;
  195. width:600px;
  196. height:50px;
  197. border:1px dashed #000;
  198. background:url(../images/taskopinion_logo.png) 5px 0px no-repeat;
  199. }
  200. .taskopinion input{
  201. border:none;
  202. width:1px;
  203. height:1px;
  204. }
  205. .flowchart{
  206. display:inline-block;
  207. padding:3px;
  208. width:600px;
  209. height:300px;
  210. border:1px dashed #000;
  211. background:url(../images/flowchart_logo.png) 5px 0px no-repeat;
  212. }
  213. .flowchart input{
  214. border:none;
  215. width:1px;
  216. height:1px;
  217. }
  218. .office-div{
  219. width:90%;
  220. height:300px;
  221. border:1px solid #ccc;
  222. background:url(../images/office_logo.png) 5px 0px no-repeat;
  223. }
  224. /**
  225. 验证印章样式 xcx。
  226. */
  227. .webSign-div{
  228. width:90%;
  229. height:100px;
  230. border:1px solid #ccc;
  231. background:url(../images/webSign_logo.png) 5px 0px no-repeat;
  232. }
  233. .pictureShow-div{
  234. width:90%;
  235. height:300px;
  236. border:1px solid #ccc;
  237. background:url(../images/pictureShow_logo.png) 5px 0px no-repeat;
  238. }
  239. a.link{
  240. padding-left:20px;
  241. cursor: pointer;
  242. color: #555555;
  243. font-size:12px;
  244. text-decoration: none;
  245. display:inline-block;
  246. <!--[if !IE]-->
  247. display:inline;
  248. <!--[endif]-->
  249. }
  250. a.link.add{
  251. background:url(../images/icons/icons_add.png) 0px -1px no-repeat;
  252. }
  253. a.link.date{
  254. background:url(../images/icons/log_btn.png) 0px -1px no-repeat;
  255. }
  256. a.link.del{
  257. background:url(../images/icons/icons_del.png) 0px -1px no-repeat;
  258. }
  259. a.link.dic{
  260. background:url(../images/icons/dictionary.png) 0px -1px no-repeat;
  261. }
  262. a.link.role{
  263. background:url(../images/icon/role.gif) 0px -1px no-repeat;
  264. }
  265. a.link.roles{
  266. background:url(../images/icon/roles.gif) 0px -1px no-repeat;
  267. }
  268. a.link.position{
  269. background:url(../images/icon/post.gif) 0px -2px no-repeat;
  270. }
  271. a.link.positions{
  272. background:url(../images/icon/posts.gif) 0px -2px no-repeat;
  273. }
  274. a.link.attachement{
  275. background:url(../images/icon/attachement.png) 0px -1px no-repeat;
  276. }
  277. a.link.user{
  278. background:url(../images/icon/user.gif) 0px -1px no-repeat;
  279. }
  280. a.link.users{
  281. background:url(../images/icon/users.gif) 0px -1px no-repeat;
  282. }
  283. a.link.org{
  284. background:url(../images/icon/org.gif) 0px -1px no-repeat;
  285. }
  286. a.link.orgs{
  287. background:url(../images/icon/org.gif) 0px -1px no-repeat;
  288. }
  289. a.link.actInsts{
  290. background:url(../images/icon/actInsts.gif) 0px -1px no-repeat;
  291. }
  292. input.hidden{
  293. border:none;
  294. width:0px;
  295. height:0px;
  296. }
  297. a.extend{
  298. padding-left:20px;
  299. cursor: pointer;
  300. color: blue;
  301. font-size:12px;
  302. text-decoration: none;
  303. display:inline-block;
  304. <!--[if !IE]-->
  305. display:inline;
  306. <!--[endif]-->
  307. }
  308. .hidedomain input{
  309. border:1px dashed #000;
  310. background:url(../images/icon/hidedomain.png) 0 0 no-repeat;
  311. width:42px;
  312. }
  313. .officecontrol input{
  314. border:1px dashed #000;
  315. width:800px;
  316. height:80px;
  317. background:url(../images/office_logo.png) 0 0 no-repeat;
  318. }
  319. /**
  320. 验证印章样式 xcx。
  321. */
  322. .websigncontrol input{
  323. border:1px dashed #000;
  324. width:800px;
  325. height:80px;
  326. background:url(../images/webSign_logo.png) 0 0 no-repeat;
  327. }
  328. /**
  329. 图片控件印章样式 xcx。
  330. */
  331. .pictureshowcontrol input{
  332. border:1px dashed #000;
  333. width:800px;
  334. height:80px;
  335. background:url(../images/pictureShow_logo.png) 0 0 no-repeat;
  336. }
  337. .subtable{
  338. width:100%;
  339. padding:5px;
  340. border:1px solid #ccc;
  341. }
  342. .ckeditor textarea{
  343. border:1px dashed #000;
  344. width:800px;
  345. height:80px;
  346. background:url(../images/ckeditor_logo.png) 0 0 no-repeat;
  347. }
  348. .ckeditor input{
  349. border:1px dashed #000;
  350. width:800px;
  351. height:80px;
  352. background:url(../images/ckeditor_logo.png) 0 0 no-repeat;
  353. }
  354. .myeditor textarea{
  355. border:1px dashed #000;
  356. width:80px;
  357. height:80px;
  358. background:url(../images/editor_logo.png) 0 0 no-repeat;
  359. }
  360. .myeditor input{
  361. border:1px dashed #000;
  362. width:800px;
  363. height:80px;
  364. background:url(../images/editor_logo.png) 0 0 no-repeat;
  365. }
  366. /*--自定义数据显示--*/
  367. .custom-display{
  368. border:1px dashed #000;
  369. background-color: silver;
  370. }
  371. /*--自定义表管理--*/
  372. .custom-tablemanage{
  373. border:1px dashed #000;
  374. background-color: silver;
  375. }
  376. /**排序*/
  377. table .tablesort-header{
  378. background-position: center right;
  379. background-repeat: no-repeat;
  380. cursor: pointer;
  381. white-space: normal;
  382. padding: 4px 20px 4px 4px;
  383. }
  384. table .tablesort-headerUnSorted{
  385. background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
  386. }
  387. table .tablesort-headerAsc{
  388. background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
  389. border-bottom: #000 2px solid;
  390. }
  391. table .tablesort-headerDesc{
  392. background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
  393. border-bottom: #000 2px solid;
  394. }
  395. /*--extend start--*/
  396. a.extend.message{
  397. background:url(../images/extendIcon/message.gif) 0px -1px no-repeat;
  398. }
  399. a.extend.navigation{
  400. background:url(../images/extendIcon/navigation.png) 0px -1px no-repeat;
  401. }
  402. a.extend.remoteupload{
  403. background:url(../images/extendIcon/remoteupload.gif) 0px -1px no-repeat;
  404. }
  405. a.extend.script{
  406. background:url(../images/extendIcon/script.gif) 0px -1px no-repeat;
  407. }
  408. a.extend.stat{
  409. background:url(../images/extendIcon/stat.gif) 0px -1px no-repeat;
  410. }
  411. a.extend.subsys{
  412. background:url(../images/extendIcon/subsys.png) 0px -1px no-repeat;
  413. }
  414. a.extend.task{
  415. background:url(../images/extendIcon/task.png) 0px -1px no-repeat;
  416. }
  417. a.extend.user{
  418. background:url(../images/extendIcon/user.png) 0px -1px no-repeat;
  419. }
  420. /*--extend end--*/