ui.jqgrid-bootstrap.css 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  1. /*Grid*/
  2. .ui-jqgrid {
  3. position: relative;
  4. border: 1px solid #ddd; /*default*/
  5. -webkit-border-radius: 3px;
  6. -moz-border-radius: 3px;
  7. border-radius: 3px;
  8. background:#fff;
  9. -moz-box-sizing: content-box;
  10. -webkit-box-sizing: content-box;
  11. box-sizing: content-box;
  12. }
  13. .ui-jqgrid .ui-jqgrid-view {
  14. position: relative;
  15. left:0;
  16. top: 0;
  17. padding: 0;
  18. }
  19. .ui-jqgrid .ui-common-table {}
  20. /* Caption*/
  21. .ui-jqgrid .ui-jqgrid-titlebar {
  22. font-weight: normal;
  23. min-height:37px;
  24. padding: 4px 8px;
  25. position: relative;
  26. margin-right: 2px;
  27. border-bottom: 1px solid #ddd; /*default*/
  28. }
  29. .ui-jqgrid .ui-jqgrid-caption {
  30. text-align: left;
  31. }
  32. .ui-jqgrid .ui-jqgrid-title {
  33. padding-top: 5px;
  34. vertical-align: middle;
  35. position: absolute;
  36. }
  37. .ui-jqgrid .ui-jqgrid-titlebar-close {
  38. color: inherit;
  39. position: absolute;
  40. top: 50%;
  41. margin: -10px 7px 0 0;
  42. padding: 1px;
  43. cursor:pointer;
  44. }
  45. .ui-jqgrid .ui-jqgrid-titlebar-close span {
  46. display: block;
  47. margin: 1px;
  48. }
  49. .ui-jqgrid .ui-jqgrid-titlebar-close:hover { }
  50. /* Header*/
  51. .ui-jqgrid .ui-jqgrid-hdiv {
  52. position: relative;
  53. margin: 0;
  54. padding: 0;
  55. overflow: hidden;
  56. }
  57. .ui-jqgrid .ui-jqgrid-hbox {
  58. float: left;
  59. padding-right: 20px;
  60. }
  61. .ui-jqgrid .ui-jqgrid-htable {
  62. margin-bottom: 0;
  63. table-layout: fixed;
  64. border-top:none;
  65. }
  66. .ui-jqgrid .ui-jqgrid-htable thead th {
  67. overflow : hidden;
  68. border-bottom : none;
  69. /* padding-right: 2px; */
  70. background:#f1f1f1;
  71. }
  72. .ui-jqgrid .ui-jqgrid-htable thead th div {
  73. /* overflow: hidden; */
  74. position:relative;
  75. }
  76. .ui-th-column, .ui-jqgrid .ui-jqgrid-htable th.ui-th-column {
  77. overflow: hidden;
  78. /* white-space: nowrap; */
  79. }
  80. .ui-th-column-header,
  81. .ui-jqgrid .ui-jqgrid-htable th.ui-th-column-header {
  82. overflow: hidden;
  83. white-space: nowrap;
  84. }
  85. #ITP_ADMIN05020_jqGrid_list .ui-th-column-header.ui-th-ltr {background:rgb(109, 110, 114); color:#fff;}
  86. #ITP_ADMIN06010_jqGrid_list .ui-th-column-header.ui-th-ltr:nth-child(5) {background:rgb(109, 110, 114); color:#fff;}
  87. #ITP_ADMIN20000_jqGrid_list .ui-th-column-header.ui-th-ltr:last-child {background:rgb(109, 110, 114); color:#fff;}
  88. #ITP_ADMIN20000_jqGrid_list .table>thead>tr>th {padding-left: 0; padding-right: 0}
  89. .ui-th-rtl, .ui-jqgrid .ui-jqgrid-htable th.ui-th-rtl {text-align: center; }
  90. .ui-first-th-ltr { }
  91. .ui-first-th-rtl { }
  92. .ui-jqgrid tr.jqg-first-row-header th {
  93. height:auto;
  94. border-top:none;
  95. padding-bottom: 0;
  96. padding-top: 0;
  97. border-bottom: none;
  98. padding-right: 2px;
  99. text-align: center;
  100. }
  101. .ui-jqgrid tr.jqg-second-row-header th,
  102. .ui-jqgrid tr.jqg-third--row-header th
  103. {
  104. border-top:none;
  105. text-align: center;
  106. }
  107. .ui-jqgrid .ui-th-div-ie {
  108. white-space: nowrap;
  109. zoom :1;
  110. height:17px;
  111. }
  112. .ui-jqgrid .ui-jqgrid-resize {
  113. height:20px !important;
  114. position: relative;
  115. cursor :e-resize;
  116. display: inline;
  117. overflow: hidden;
  118. }
  119. .ui-jqgrid .ui-grid-ico-sort {
  120. margin-left:5px;
  121. overflow:hidden;
  122. position:absolute;
  123. right: auto;
  124. font-size:12px;
  125. }
  126. .ui-jqgrid .ui-icon-asc {
  127. margin-top:-3px;
  128. }
  129. .ui-jqgrid .ui-icon-desc {
  130. margin-top:4px;
  131. }
  132. .ui-jqgrid .ui-i-asc {
  133. margin-top:0;
  134. }
  135. .ui-jqgrid .ui-i-desc {
  136. margin-top:0;
  137. margin-right:13px;
  138. }
  139. .ui-jqgrid .ui-single-sort-asc {
  140. margin-top:0;
  141. }
  142. .ui-jqgrid .ui-single-sort-desc {}
  143. .ui-jqgrid .ui-jqgrid-sortable {
  144. cursor:pointer;
  145. }
  146. .ui-jqgrid tr.ui-search-toolbar th { }
  147. .ui-jqgrid .ui-search-table td.ui-search-clear { }
  148. .ui-jqgrid tr.ui-search-toolbar td > input { }
  149. .ui-jqgrid tr.ui-search-toolbar select {}
  150. /* Body */
  151. .ui-jqgrid .table-bordered,
  152. .ui-jqgrid .table-bordered td,
  153. .ui-jqgrid .table-bordered th.ui-th-ltr
  154. {
  155. border-left:0px none !important;
  156. }
  157. .ui-jqgrid .table-bordered th.ui-th-rtl
  158. {
  159. border-right:0px none !important;
  160. }
  161. .ui-jqgrid .table-bordered tr.ui-row-rtl td
  162. {
  163. border-right:0px none !important;
  164. border-left: 1px solid #ddd !important;
  165. }
  166. div.tablediv > .table-bordered {
  167. border-left : 1px solid #ddd !important;
  168. }
  169. .ui-jqgrid .ui-jqgrid-bdiv table.table-bordered td {
  170. border-top: 0px none;
  171. }
  172. .ui-jqgrid .ui-jqgrid-bdiv {
  173. position: relative;
  174. margin: 0;
  175. padding:0;
  176. text-align:left;
  177. }
  178. .ui-jqgrid .ui-jqgrid-btable {
  179. table-layout: fixed;
  180. border-left:none ;
  181. border-top:none;
  182. margin-bottom: 0px
  183. }
  184. .ui-jqgrid tr.jqgrow {
  185. outline-style: none;
  186. }
  187. .ui-jqgrid tr.jqgroup {
  188. outline-style: none;
  189. }
  190. @media all and (-ms-high-contrast: none) {
  191. .ui-jqgrid .ui-jqgrid-btable tbody tr.jqgrow td {
  192. overflow: hidden;
  193. padding-right: 2px;
  194. }
  195. }
  196. @supports (-ms-ime-align:auto) {
  197. .ui-jqgrid .ui-jqgrid-btable tbody tr.jqgrow td {
  198. overflow: hidden;
  199. padding-right: 2px;
  200. }
  201. }
  202. .ui-jqgrid .ui-jqgrid-btable tbody tr.jqgrow td {
  203. overflow: hidden;
  204. white-space: pre;
  205. /* padding-right: 2px; */
  206. }
  207. .itp_tb_list.itp_gOver .ui-jqgrid .ui-jqgrid-btable tbody tr.jqgrow td {
  208. overflow: visible;
  209. white-space: normal;
  210. }
  211. .ui-jqgrid tr.jqgfirstrow td {
  212. height:auto;
  213. border-top:none;
  214. padding-bottom: 0;
  215. padding-top: 0;
  216. border-bottom: none;
  217. padding-right: 2px;
  218. }
  219. .ui-jqgrid tr.jqgroup td {
  220. white-space: nowrap;
  221. }
  222. .ui-jqgrid tr.jqfoot td {
  223. white-space: nowrap;
  224. }
  225. .ui-jqgrid tr.ui-row-ltr td {font-size:13px;color:#333;}
  226. .ui-jqgrid tr.ui-row-rtl td {font-size:13px;color:#333;}
  227. .ui-jqgrid .ui-jqgrid-resize-mark {
  228. width:2px;
  229. left:0;
  230. background-color:#777;
  231. cursor: e-resize;
  232. cursor: col-resize;
  233. position:absolute;
  234. top:0;
  235. height:100px;
  236. overflow:hidden;
  237. display:none;
  238. border:0 none;
  239. z-index: 99999;
  240. }
  241. /* Footer */
  242. .ui-jqgrid .ui-jqgrid-sdiv {
  243. position: relative;
  244. margin: 0;
  245. padding: 0;
  246. overflow: hidden;
  247. border-left: 0 none !important;
  248. border-top : 0 none !important;
  249. border-right : 0 none !important;
  250. }
  251. .ui-jqgrid .ui-jqgrid-ftable {
  252. table-layout:fixed;
  253. margin-bottom:0;
  254. }
  255. .ui-jqgrid tr.footrow td {
  256. font-weight: bold;
  257. overflow: hidden;
  258. white-space:nowrap;
  259. padding-right: 2px;
  260. border-bottom: 0px none;
  261. }
  262. .ui-jqgrid tr.footrow-ltr td {
  263. text-align:left;
  264. }
  265. .ui-jqgrid tr.footrow-rtl td {
  266. text-align:right;
  267. }
  268. /* Pager*/
  269. .ui-jqgrid .ui-jqgrid-pager,
  270. .ui-jqgrid .ui-jqgrid-toppager
  271. {
  272. border-left-width: 0px;
  273. border-top: 1px solid #ddd;
  274. /*padding : 4px 0px;*/
  275. position: relative;
  276. height: auto;
  277. white-space: nowrap;
  278. overflow: hidden;
  279. }
  280. .ui-jqgrid .ui-jqgrid-toppager {
  281. border-top-width :0;
  282. border-bottom : 1px solid #ddd;
  283. }
  284. .ui-jqgrid .ui-jqgrid-toppager .ui-pager-control,
  285. .ui-jqgrid .ui-jqgrid-pager .ui-pager-control {
  286. position: relative;
  287. border-left: 0;
  288. border-bottom: 0;
  289. border-top: 0;
  290. /*height: 30px;*/
  291. }
  292. .ui-jqgrid .ui-pg-table {
  293. position: relative;
  294. padding: 1px 0;
  295. width:auto;
  296. margin: 0;
  297. }
  298. .ui-jqgrid .ui-pg-table td {
  299. font-weight:normal;
  300. vertical-align:middle;
  301. font-size:12px;
  302. /*padding:0px 6px;*/
  303. }
  304. .ui-jqgrid .ui-pager-control .ui-pager-table td {
  305. border-top : 0px none !important;
  306. min-height : 20px !important;
  307. }
  308. .ui-jqgrid .ui-pg-button {
  309. height:auto;
  310. }
  311. .ui-jqgrid .ui-paging-pager td {
  312. padding : 0 5px;
  313. }
  314. .ui-jqgrid .ui-pg-button span {
  315. display: block;
  316. margin: 0px 2px;
  317. float:left;
  318. }
  319. .ui-jqgrid .ui-pg-button:hover { }
  320. .ui-jqgrid .ui-disabled:hover {}
  321. .ui-jqgrid .ui-pg-input,
  322. .ui-jqgrid .ui-jqgrid-toppager .ui-pg-input {
  323. display: inline-block;
  324. height:auto;
  325. width: auto;
  326. font-size:.9em;
  327. margin:0;
  328. line-height: inherit;
  329. border: none;
  330. padding: 0px 3px
  331. }
  332. .ui-jqgrid .ui-pg-selbox,
  333. .ui-jqgrid .ui-jqgrid-toppager .ui-pg-selbox {
  334. font-size:.9em;
  335. line-height:inherit;
  336. display:block;
  337. height:22px;
  338. margin: 0;
  339. padding: 3px 0px 3px 3px;
  340. border:none;
  341. }
  342. .ui-jqgrid .ui-separator {
  343. height: 18px;
  344. border : none;
  345. border-left: 2px solid #ccc ; /*default*/
  346. }
  347. .ui-separator-li {
  348. height: 2px;
  349. border : none;
  350. border-top: 2px solid #ccc ; /*default*/
  351. margin: 0; padding: 0; width:100%
  352. }
  353. .ui-jqgrid .ui-jqgrid-pager .ui-pg-div,
  354. .ui-jqgrid .ui-jqgrid-toppager .ui-pg-div
  355. {
  356. float:left;
  357. position:relative;
  358. }
  359. .ui-jqgrid .ui-jqgrid-pager .ui-pg-button,
  360. .ui-jqgrid .ui-jqgrid-toppager .ui-pg-button
  361. {
  362. cursor:pointer;
  363. }
  364. .ui-jqgrid .ui-jqgrid-pager .ui-pg-div span,
  365. .ui-jqgrid .ui-jqgrid-toppager .ui-pg-div span
  366. {
  367. float:left;
  368. }
  369. .ui-jqgrid td input,
  370. .ui-jqgrid td select,
  371. .ui-jqgrid td textarea {
  372. margin: 0;
  373. }
  374. .ui-jqgrid td textarea {
  375. width:auto;
  376. height:auto;
  377. }
  378. .ui-jqgrid .ui-jqgrid-pager .ui-pager-table,
  379. .ui-jqgrid .ui-jqgrid-toppager .ui-pager-table
  380. {
  381. width:100%;
  382. table-layout:fixed;
  383. height:100%;
  384. }
  385. .ui-jqgrid .ui-jqgrid-pager .ui-paging-info,
  386. .ui-jqgrid .ui-jqgrid-toppager .ui-paging-info
  387. {
  388. font-weight: normal;
  389. height:auto;
  390. margin-top:3px;
  391. margin-right:4px;
  392. display: inline;
  393. font-family:monospace;
  394. }
  395. .ui-jqgrid .ui-jqgrid-pager .ui-paging-pager,
  396. .ui-jqgrid .ui-jqgrid-toppager .ui-paging-pager
  397. {
  398. table-layout:auto;
  399. height:100%;
  400. }
  401. .ui-jqgrid .ui-jqgrid-pager .navtable,
  402. .ui-jqgrid .ui-jqgrid-toppager .navtable
  403. {
  404. float:left;
  405. table-layout:auto;
  406. height:100%;
  407. }
  408. .ui-jqgrid .ui-jqgrid-pager .navtable td,
  409. .ui-jqgrid .ui-jqgrid-toppager .navtable td
  410. {
  411. padding : 0 5px;
  412. }
  413. /*Subgrid*/
  414. .ui-jqgrid .ui-jqgrid-btable .ui-sgcollapsed span {
  415. display: block;
  416. }
  417. .ui-jqgrid .ui-subgrid {
  418. margin:0;
  419. padding:0;
  420. width:100%;
  421. }
  422. .ui-jqgrid .ui-subgrid table {
  423. table-layout: fixed;
  424. }
  425. .ui-jqgrid .ui-subgrid tr.ui-subtblcell td {}
  426. .ui-jqgrid .ui-subgrid td.subgrid-data {
  427. border-top: 0 none !important;
  428. }
  429. .ui-jqgrid .ui-subgrid td.subgrid-cell {
  430. vertical-align: middle
  431. }
  432. .ui-jqgrid a.ui-sghref {
  433. text-decoration: none;
  434. color : #010101; /*default*/
  435. }
  436. .ui-jqgrid .ui-th-subgrid {height:20px;}
  437. .tablediv > .row { margin: 0 0}
  438. /* loading */
  439. .ui-jqgrid .loading,
  440. .loading_pivot {
  441. position: absolute;
  442. top: 45%;
  443. left: 45%;
  444. width: auto;
  445. z-index:101;
  446. padding: 6px;
  447. margin: 5px;
  448. text-align: center;
  449. display: none;
  450. border: 1px solid #ddd; /*default*/
  451. font-size: 14px;
  452. background-color: #d9edf7;
  453. }
  454. .ui-jqgrid .jqgrid-overlay {
  455. display:none;
  456. }
  457. /* IE * html .jqgrid-overlay {width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');} */
  458. * .jqgrid-overlay iframe {
  459. position:absolute;
  460. top:0;
  461. left:0;
  462. z-index:-1;
  463. }
  464. /* IE width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');}*/
  465. /* end loading div */
  466. /* Toolbar */
  467. .ui-jqgrid .ui-userdata {
  468. padding: 4px 0px;
  469. overflow: hidden;
  470. min-height: 32px;
  471. }
  472. .ui-jqgrid .ui-userdata-top {
  473. border-left-width: 0px; /*default*/
  474. border-bottom: 1px solid #ddd;
  475. }
  476. .ui-jqgrid .ui-userdata-bottom {
  477. border-left-width: 0px; /*default*/
  478. border-top: 1px solid #ddd;
  479. }
  480. /*Modal Window */
  481. .ui-jqdialog { }
  482. .ui-jqdialog {
  483. display: none;
  484. width: 500px;
  485. position: absolute;
  486. /*padding: 5px; */
  487. overflow:visible;
  488. }
  489. .ui-jqdialog .ui-jqdialog-titlebar {
  490. padding: .1em .1em;
  491. min-height: 35px;
  492. }
  493. .ui-jqdialog .ui-jqdialog-title {
  494. margin: 7px 0 .2em 5px;
  495. font-weight: bold;
  496. padding-left :6px;
  497. padding-right:6px;
  498. }
  499. .ui-jqdialog .ui-jqdialog-titlebar-close {
  500. position: absolute;
  501. top: 0%;
  502. margin: 1px 5px 0 0;
  503. padding: 8px;
  504. cursor:pointer;
  505. }
  506. .ui-jqdialog .ui-jqdialog-titlebar-close span { }
  507. .ui-jqdialog .ui-jqdialog-titlebar-close:hover,
  508. .ui-jqdialog .ui-jqdialog-titlebar-close:focus {
  509. padding: 8px;
  510. }
  511. .ui-jqdialog-content, .ui-jqdialog .ui-jqdialog-content {
  512. border: 0;
  513. padding: 20px 10px 5px 10px;
  514. background: none;
  515. height:auto;
  516. }
  517. .ui-jqdialog .ui-jqconfirm {
  518. padding: .4em 1em;
  519. border-width:3px;
  520. position:absolute;
  521. bottom:10px;
  522. right:10px;
  523. overflow:visible;
  524. display:none;
  525. height:120px;
  526. width:220px;
  527. text-align:center;
  528. background-color: #fff;
  529. border-radius: 4px;
  530. -webkit-border-radius: 4px;
  531. -moz-border-radius: 4px;
  532. }
  533. .ui-jqdialog>.ui-resizable-se { }
  534. .ui-jqgrid>.ui-resizable-se { }
  535. .jqgrid-overlay-modal {
  536. display : none;
  537. }
  538. /* end Modal window*/
  539. /* Form edit */
  540. .ui-jqdialog-content .FormGrid {
  541. margin: 0 8px 0 8px;
  542. overflow:auto;
  543. position:relative;
  544. }
  545. .ui-jqdialog-content .EditTable {
  546. width: 100%;
  547. margin-bottom:0;
  548. }
  549. .ui-jqdialog-content .DelTable {
  550. width: 100%;
  551. margin-bottom:0;
  552. }
  553. .EditTable td input,
  554. .EditTable td select,
  555. .EditTable td textarea {
  556. width: 98%;
  557. display: inline-block;
  558. }
  559. .EditTable td textarea {
  560. width:auto;
  561. height:auto;
  562. }
  563. .EditTable .FormData td {
  564. height:37px !important;
  565. }
  566. .ui-jqdialog-content td.EditButton {
  567. text-align: right;
  568. padding: 5px 5px 5px 0;
  569. }
  570. .ui-jqdialog-content td.navButton {
  571. text-align: center;
  572. border-left: 0 none;
  573. border-top: 0 none;
  574. border-right: 0 none;
  575. padding-bottom:5px;
  576. padding-top:5px;
  577. }
  578. .ui-jqdialog-content input.FormElement {
  579. padding: .5em .3em;
  580. margin-bottom: 5px
  581. }
  582. .ui-jqdialog-content select.FormElement {
  583. padding:.3em;
  584. margin-bottom: 3px;
  585. }
  586. .ui-jqdialog-content .data-line {
  587. padding-top:.1em;
  588. border: 0 none;
  589. }
  590. .ui-jqdialog-content .CaptionTD {
  591. vertical-align: middle;
  592. border: 0 none;
  593. padding: 2px;
  594. white-space: nowrap;
  595. }
  596. .ui-jqdialog-content .DataTD {
  597. padding: 2px;
  598. border: 0 none;
  599. vertical-align: top;
  600. }
  601. .ui-jqdialog-content .form-view-data {
  602. white-space:pre
  603. }
  604. .fm-button { }
  605. .fm-button-icon-left {
  606. margin-left: 4px;
  607. margin-right: 4px;
  608. }
  609. .fm-button-icon-right {
  610. margin-left: 4px;
  611. margin-right: 4px;
  612. }
  613. .fm-button-icon-left { }
  614. .fm-button-icon-right { }
  615. #nData, #pData {
  616. margin-left: 4px;
  617. margin-right: 4px;
  618. }
  619. #sData span, #cData span {
  620. margin-left: 5px;
  621. }
  622. /* End Eorm edit */
  623. /*.ui-jqgrid .edit-cell {}*/
  624. .ui-jqgrid .selected-row,
  625. div.ui-jqgrid .selected-row td {
  626. font-style : normal;
  627. }
  628. /* inline edit actions button*/
  629. .ui-inline-del, .ui-inline-cancel {
  630. margin-left: 14px;
  631. }
  632. .ui-jqgrid select.inline-edit-cell {
  633. width:96%; height:34px;
  634. }
  635. /* Tree Grid */
  636. .ui-jqgrid .tree-wrap {
  637. float: left;
  638. position: relative;
  639. height: 18px;
  640. white-space: nowrap;
  641. overflow: hidden;
  642. }
  643. .ui-jqgrid .tree-minus {
  644. position: absolute;
  645. height: 18px;
  646. width: 18px;
  647. overflow: hidden;
  648. }
  649. .ui-jqgrid .tree-plus {
  650. position: absolute;
  651. height: 18px;
  652. width: 18px;
  653. overflow: hidden;
  654. }
  655. .ui-jqgrid .tree-leaf {
  656. position: absolute;
  657. height: 18px;
  658. width: 18px;
  659. overflow: hidden;
  660. }
  661. .ui-jqgrid .treeclick {
  662. cursor: pointer;
  663. }
  664. /* moda dialog */
  665. * iframe.jqm {
  666. position:absolute;
  667. top:0;
  668. left:0;
  669. z-index:-1;
  670. }
  671. /* width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');}*/
  672. .ui-jqgrid-dnd tr td {
  673. border-right-width: 1px;
  674. border-right-color: inherit;
  675. border-right-style: solid;
  676. height:20px
  677. }
  678. /* RTL Support */
  679. .ui-jqgrid .ui-jqgrid-caption-rtl {
  680. text-align: right;
  681. }
  682. .ui-jqgrid .ui-jqgrid-hbox-rtl {
  683. float: right;
  684. /*padding-left: 20px;*/
  685. }
  686. .ui-jqgrid .ui-jqgrid-resize-ltr {
  687. float: right;
  688. margin: -2px -2px -2px 0;
  689. height:100%;
  690. }
  691. .ui-jqgrid .ui-jqgrid-resize-rtl {
  692. float: left;
  693. margin: -2px -2px -2px -0px;
  694. }
  695. .ui-jqgrid .ui-sort-rtl {
  696. }
  697. .ui-jqgrid .tree-wrap-ltr {
  698. float: left;
  699. }
  700. .ui-jqgrid .tree-wrap-rtl {
  701. float: right;
  702. }
  703. .ui-jqgrid .ui-ellipsis {
  704. -moz-text-overflow:ellipsis;
  705. text-overflow:ellipsis;
  706. }
  707. /* Toolbar Search Menu. Nav menu */
  708. .ui-search-menu,
  709. .ui-nav-menu {
  710. position: absolute;
  711. padding: 2px 5px;
  712. z-index:99999;
  713. }
  714. .ui-search-menu.ui-menu .ui-menu-item,
  715. .ui-nav-menu.ui-menu .ui-menu-item
  716. {
  717. list-style-image: none;
  718. padding-right: 0;
  719. padding-left: 0;
  720. }
  721. .ui-search-menu.ui-menu .ui-menu-item a,
  722. .ui-nav-menu.ui-menu .ui-menu-item a
  723. {
  724. display: block;
  725. }
  726. .ui-search-menu.ui-menu .ui-menu-item a.g-menu-item:hover,
  727. .ui-nav-menu.ui-menu .ui-menu-item a.g-menu-item:hover
  728. {
  729. margin: -1px;
  730. font-weight: normal;
  731. }
  732. .ui-jqgrid .ui-search-table {
  733. padding: 0;
  734. border: 0 none;
  735. height:20px;
  736. width:100%;
  737. }
  738. .ui-jqgrid .ui-search-table .ui-search-oper {
  739. width:20px;
  740. }
  741. a.g-menu-item, a.soptclass, a.clearsearchclass {
  742. cursor: pointer;
  743. }
  744. .ui-jqgrid .ui-jqgrid-view input,
  745. .ui-jqgrid .ui-jqgrid-view select,
  746. .ui-jqgrid .ui-jqgrid-view textarea,
  747. .ui-jqgrid .ui-jqgrid-view button {
  748. /*font-size: 11px*/
  749. }
  750. .ui-jqgrid .ui-scroll-popup {
  751. width: 100px;
  752. }
  753. .ui-search-table select,
  754. .ui-search-table input
  755. {
  756. padding: 4px 3px;
  757. }
  758. .ui-disabled {
  759. opacity: .35;
  760. filter:Alpha(Opacity=35); /* support: IE8 */
  761. background-image: none;
  762. }
  763. .ui-overlay {
  764. position: fixed;
  765. top: 0;
  766. left: 0;
  767. width: 100%;
  768. height: 100%;
  769. background-color: rgba(0,0,0,0.5);
  770. opacity: .3;
  771. filter: Alpha(Opacity=30); /* support: IE8 */
  772. }
  773. .ui-jqgrid-pager .ui-pg-table .ui-pg-button:hover,
  774. .ui-jqgrid-toppager .ui-pg-table .ui-pg-button:hover
  775. {
  776. background-color: #ddd;
  777. }
  778. .ui-jqgrid-corner {
  779. border-radius: 5px
  780. }
  781. .ui-resizable-handle {
  782. /*position: absolute;*/
  783. display: block;
  784. left :97%;
  785. }
  786. .ui-jqdialog .ui-resizable-se {
  787. width: 12px;
  788. height: 12px;
  789. right: -5px;
  790. bottom: -5px;
  791. background-position: 16px 16px;
  792. }
  793. .ui-resizable-se {
  794. cursor: se-resize;
  795. width: 12px;
  796. height: 12px;
  797. right: 1px;
  798. bottom: 1px;
  799. }
  800. .ui-top-corner {
  801. border-top-left-radius: 5px;
  802. border-top-right-radius: 5px;
  803. }
  804. .ui-bottom-corner {
  805. border-bottom-left-radius: 5px;
  806. border-bottom-right-radius: 5px;
  807. }
  808. .ui-search-table {
  809. margin-bottom: 0;
  810. }
  811. .ui-search-table .columns, .ui-search-table .operators {
  812. padding-right: 5px;
  813. }
  814. .opsel {
  815. float :left;
  816. width : 100px;
  817. margin-right : 5px;
  818. }
  819. .add-group, .add-rule, .delete-group {
  820. width: 14%;
  821. margin-right : 5px;
  822. }
  823. .delete-rule {
  824. width : 15px;
  825. }
  826. ul.ui-search-menu, ul.ui-nav-menu {
  827. list-style-type: none;
  828. }
  829. ul.ui-search-menu li a,
  830. ul.ui-nav-menu li a,
  831. .soptclass,
  832. .clearsearchclass {
  833. text-decoration: none;
  834. color : #010101;
  835. }
  836. ul.ui-search-menu li a:hover, ul.ui-nav-menu li a:hover, a.soptclass:hover, a.clearsearchclass:hover {
  837. background-color: #ddd;
  838. padding: 1px 1px;
  839. text-decoration: none;
  840. }
  841. ul.ui-search-menu li, ul.ui-nav-menu li {
  842. padding : 5px 5px;
  843. }
  844. .ui-menu-item hr {
  845. margin-bottom: 0px;
  846. margin-top:0px;
  847. }
  848. .searchFilter .ui-search-table td,
  849. .searchFilter .ui-search-table th
  850. {
  851. border-top: 0px none !important;
  852. }
  853. .searchFilter .queryresult {
  854. margin-bottom: 5px;
  855. }
  856. .searchFilter .queryresult tr td{
  857. border-top: 0px none;
  858. }
  859. .ui-search-label {
  860. padding-left: 5px;
  861. }
  862. .frozen-div, .frozen-bdiv {
  863. background-color: #fff;
  864. }
  865. /*
  866. .ui-jqgrid .ui-jqgrid-caption,
  867. .ui-jqgrid .ui-jqgrid-pager,
  868. .ui-jqgrid .ui-jqgrid-toppager,
  869. .ui-jqgrid .ui-jqgrid-htable thead th,
  870. .ui-jqgrid .ui-userdata-top,
  871. .ui-jqgrid .ui-userdata-bottom,
  872. .ui-jqgrid .ui-jqgrid-hdiv,
  873. .ui-jqdialog .ui-jqdialog-titlebar
  874. {
  875. background-image: none, linear-gradient(to bottom, #fff 0px, #e0e0e0 100%);
  876. background-repeat: repeat-x;
  877. border-color: #ccc;
  878. text-shadow: 0 1px 0 #fff;
  879. }
  880. */
  881. /* Column menu */
  882. .ui-jqgrid .ui-jqgrid-htable .colmenu {
  883. position:absolute;
  884. right:1px;
  885. height:100%;
  886. color : black;
  887. }
  888. .ui-jqgrid .ui-jqgrid-htable .colmenu-rtl {
  889. right: auto;
  890. left : 1px;
  891. }
  892. .ui-jqgrid .ui-jqgrid-htable .colmenuspan {
  893. display:inline-block;
  894. }
  895. .ui-jqgrid .ui-jqgrid-htable .ui-th-div {
  896. color:#333;
  897. text-align:center;
  898. font-weight:bold;
  899. }
  900. .column-menu, .ui-search-menu {
  901. padding: 10px 15px;
  902. }
  903. .column-menu .divider {
  904. background-color: #e5e5e5;
  905. height: 1px;
  906. padding:0 0;
  907. margin: 5px 0;
  908. overflow: hidden;
  909. }
  910. .ui-menu-item .ui-common-table .menu_icon {
  911. padding-right: 8px;
  912. padding-left: 8px;
  913. }
  914. td.menu_text {
  915. width: auto;
  916. padding-left: 1px;
  917. white-space: nowrap;
  918. }
  919. #search_menu .ui-menu-item div {
  920. padding: 3px 0;
  921. white-space: nowrap;
  922. }
  923. #search_menu .search_buttons {
  924. display:inline-block;
  925. width:50%;
  926. padding: 3px 3px;
  927. }
  928. .search_buttons .btn-default:hover {
  929. padding-bottom: 6px;
  930. padding-top: 6px;
  931. }
  932. .search_buttons #bs_reset {
  933. margin-right: 3px;
  934. }
  935. .search_buttons #bs_search {
  936. margin-left: 3px;
  937. }
  938. /*menubar*/
  939. .ui-jqgrid .ui-jqgrid-menubar {
  940. margin: 5px 5px;
  941. width:16px;
  942. height:16px;
  943. }
  944. .ui-jqgrid a.ui-jqgrid-menubar {
  945. text-decoration: none;
  946. color : #010101; /*default*/
  947. }
  948. .ui-jqgrid .ui-jqgrid-menubar:hover {
  949. margin: 5px 5px;
  950. background-color: #ddd;
  951. text-decoration: none;
  952. }
  953. .ui-jqgrid .menubar-rtl {
  954. float : right;
  955. }
  956. .ui-jqgrid .menubar-ltr {
  957. float : left;
  958. }
  959. /*printing*/
  960. .jqgridprint {
  961. width : 100%;
  962. font-size: 13px;
  963. }
  964. .jqgridprint th,
  965. .jqgridprint td {
  966. padding: 4px 4px 4px 4px ;
  967. text-align: center ;
  968. }
  969. .jqgridprint th {
  970. border-bottom: 2px solid #333333 ;
  971. }
  972. .jqgridprint td {
  973. border-bottom: 1px dotted #999999 ;
  974. }
  975. .jqgridprint tfoot td {
  976. border-bottom-width: 0px ;
  977. border-top: 2px solid #333333 ;
  978. padding-top: 20px ;
  979. }
  980. .ui-jqgrid .jqgrid-caption-menu
  981. {
  982. left:0;
  983. top:30px;
  984. position:absolute;
  985. display:none;
  986. font-size: inherit;
  987. width : auto;
  988. }
  989. .ui-jqgrid .jqgrid-column-menu
  990. {
  991. font-size:inherit;
  992. width:auto;
  993. position :absolute;
  994. }
  995. .ui-jqgrid .table>thead>tr>th {font-size:13px; font-weight:bold; color:#333; text-align:center; vertical-align:middle;}
  996. /* .ui-jqgrid td.jqgrid-multibox input[type=checkbox] {margin-left:3px;} */
  997. .ui-jqgrid .table>thead>tr>th:not([rowspan]) > .ui-th-div {top:0 !important;}
  998. .ui-jqgrid tr.jqgrow td {vertical-align:middle !important}
  999. .table-striped>tbody>tr:nth-of-type(odd) {
  1000. background-color:inherit;
  1001. }
  1002. .ui-jqgrid input[type=checkbox] {width:15px; height:15px;}
  1003. .ui-jqgrid .jqgrid-rownum {background-color: transparent !important;}
  1004. .table>tbody>tr.active .jqgrid-rownum {background:#e8e8e8 !important; z-index:1}
  1005. .table>tbody>tr.success .jqgrid-rownum {background:#dff0d8 !important;}