ry-ui.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914
  1. /**
  2. * 通用css样式布局处理
  3. * Copyright (c) 2019 ruoyi
  4. */
  5. /** 基础通用 **/
  6. .pt5 {
  7. padding-top: 5px;
  8. }
  9. .pr5 {
  10. padding-right: 5px;
  11. }
  12. .pb5 {
  13. padding-bottom: 5px;
  14. }
  15. .mt5 {
  16. margin-top: 5px;
  17. }
  18. .mr5 {
  19. margin-right: 5px;
  20. }
  21. .mb5 {
  22. margin-bottom: 5px;
  23. }
  24. .ml5 {
  25. margin-left: 5px;
  26. }
  27. .mt10 {
  28. margin-top: 10px;
  29. }
  30. .mr10 {
  31. margin-right: 10px;
  32. }
  33. .mb10 {
  34. margin-bottom: 10px;
  35. }
  36. .ml0 {
  37. margin-left: 10px;
  38. }
  39. .mt20 {
  40. margin-top: 20px;
  41. }
  42. .mr20 {
  43. margin-right: 20px;
  44. }
  45. .mb20 {
  46. margin-bottom: 20px;
  47. }
  48. .m20 {
  49. margin-left: 20px;
  50. }
  51. .m50 {
  52. margin-left: 50px;
  53. }
  54. .img-xs {
  55. width: 32px;
  56. height: 32px;
  57. }
  58. .img-sm {
  59. width: 64px;
  60. height: 64px;
  61. }
  62. .img-md {
  63. width: 96px;
  64. height: 96px;
  65. }
  66. .img-lg {
  67. width: 120px;
  68. height: 120px;
  69. }
  70. .section-content {
  71. min-height: 250px;
  72. margin-right: auto;
  73. margin-left: auto;
  74. padding: 5px 5px 5px 5px;
  75. width: 100%;
  76. height: 100%;
  77. position: absolute;
  78. }
  79. .ibox {
  80. margin-bottom: 25px;
  81. background-color: #fff;
  82. border: 1px solid #ddd;
  83. border-radius: 4px;
  84. height: 100%;
  85. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  86. }
  87. .list-group-striped > .list-group-item {
  88. border-left: 0;
  89. border-right: 0;
  90. border-radius: 0;
  91. padding-left: 0;
  92. padding-right: 0
  93. }
  94. .ibox-title-gray {
  95. height: 41px;
  96. background-color: #f0f3f4;
  97. color: #333;
  98. font-weight: 700;
  99. border-radius: 2px 2px 0 0;
  100. padding: 13px !important;
  101. border-bottom: 1px solid #eee;
  102. display: block;
  103. clear: both;
  104. }
  105. .dashboard-header h5 {
  106. padding: 8px 0 0 0;
  107. display: inline-block;
  108. font-size: 14px;
  109. text-overflow: ellipsis;
  110. float: left;
  111. font-weight: 400;
  112. }
  113. .ibox-title-gray h5 {
  114. display: inline-block;
  115. font-size: 14px;
  116. margin: 0 0 7px;
  117. padding: 0;
  118. text-overflow: ellipsis;
  119. float: left;
  120. }
  121. /* 导航页签 */
  122. .nav-tabs-custom {
  123. margin-bottom: 20px;
  124. background: #fff;
  125. box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  126. border-radius: 3px
  127. }
  128. .nav-tabs-custom>.nav-tabs {
  129. margin: 0;
  130. border-bottom-color: #f4f4f4;
  131. border-top-right-radius: 3px;
  132. border-top-left-radius: 3px
  133. }
  134. .nav-tabs-custom>.nav-tabs>li {
  135. border-top: 3px solid transparent;
  136. margin-bottom: -2px;
  137. margin-right: 5px
  138. }
  139. .nav-tabs-custom>.nav-tabs>li.disabled>a {
  140. color: #777
  141. }
  142. .nav-tabs-custom>.nav-tabs>li>a {
  143. color: #444;
  144. font-weight: normal;
  145. border-radius: 0
  146. }
  147. .nav-tabs-custom>.nav-tabs>li>a,.nav-tabs-custom>.nav-tabs>li>a:hover {
  148. background: transparent;
  149. margin: 0
  150. }
  151. .nav-tabs-custom>.nav-tabs>li>a:hover {
  152. color: #999
  153. }
  154. .nav-tabs-custom>.nav-tabs>li:not(.active)>a:hover,.nav-tabs-custom>.nav-tabs>li:not(.active)>a:focus,.nav-tabs-custom>.nav-tabs>li:not(.active)>a:active {
  155. border-color: transparent
  156. }
  157. .nav-tabs-custom>.nav-tabs>li.active {
  158. border-top-color: #1890ff
  159. }
  160. .nav-tabs-custom>.nav-tabs>li.active>a,.nav-tabs-custom>.nav-tabs>li.active:hover>a {
  161. background-color: #fff;
  162. color: #444
  163. }
  164. .nav-tabs-custom>.nav-tabs>li.active>a {
  165. border-top-color: transparent;
  166. border-bottom-color: transparent;
  167. border-left-color: #f4f4f4;
  168. border-right-color: #f4f4f4
  169. }
  170. .nav-tabs-custom>.tab-content {
  171. background: #fff;
  172. padding: 10px;
  173. border-bottom-right-radius: 3px;
  174. border-bottom-left-radius: 3px
  175. }
  176. /** 弹层组件 禁用样式 **/
  177. .layer-disabled {
  178. border: 1px #dedede solid !important;
  179. background-color: #f1f1f1 !important;
  180. color: #333 !important;
  181. pointer-events: none;
  182. }
  183. /** 用户管理 样式布局 **/
  184. .box {
  185. position: relative;
  186. border-radius: 3px;
  187. background: #ffffff;
  188. border-top: 3px solid #d2d6de;
  189. margin-bottom: 20px;
  190. width: 100%;
  191. box-shadow: 0 1px 1px rgba(0,0,0,0.1)
  192. }
  193. .box-header:before,.box-body:before,.box-footer:before,.box-header:after,.box-body:after,.box-footer:after {
  194. content: " ";
  195. display: table
  196. }
  197. .box-header:after,.box-body:after,.box-footer:after {
  198. clear: both
  199. }
  200. .btn-box-tool {
  201. padding: 5px;
  202. font-size: 12px;
  203. background: transparent;
  204. color: #97a0b3;
  205. }
  206. .open .btn-box-tool,
  207. .btn-box-tool:hover {
  208. color: #606c84;
  209. }
  210. .box-main {
  211. margin: 0;
  212. border: 0;
  213. padding-top: 2px;
  214. border-radius: 0;
  215. box-shadow: none
  216. }
  217. .box-main>.box-header {
  218. border-bottom: 1px solid #eee;
  219. padding: 12px 10px 2px 15px
  220. }
  221. .box-header .box-title {
  222. display: inline-block;
  223. font-size: 18px;
  224. margin: 0;
  225. line-height: 1;
  226. }
  227. .box-main>.box-header .box-title {
  228. font-size: 16px;
  229. margin-bottom: 13px;
  230. float: left
  231. }
  232. .box-main>.box-header .box-title .fa {
  233. font-size: 14px;
  234. padding-right: 3px;
  235. margin-top: -2px
  236. }
  237. .box-main>.box-header .box-tools {
  238. position: relative;
  239. top: -5px;
  240. right: 0
  241. }
  242. .box-main>.box-header .box-tools .btn {
  243. padding: 3px 10px 5px 10px;
  244. font-size: 14px;
  245. margin-bottom: 2px
  246. }
  247. .box-main>.box-header .box-tools .btn-box-tool {
  248. padding: 4px 2px
  249. }
  250. .box-main form>.box-footer,.nav-main form>.box-footer {
  251. background: #fafafa
  252. }
  253. .box-main form>.box-footer .row,.nav-main form>.box-footer .row {
  254. margin: 5px 0 5px -25px
  255. }
  256. /** select2 样式修改 **/
  257. .select2-container--default .select2-selection--multiple .select2-selection__choice {
  258. background-color: #1AB394;
  259. border-color: #1AB394;
  260. padding: 1px 10px;
  261. color: #fff
  262. }
  263. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  264. margin-right: 5px;
  265. color: rgba(255,255,255,0.7)
  266. }
  267. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  268. color: #fff
  269. }
  270. .select2-container .select2-selection--single .select2-selection__rendered {
  271. padding-right: 10px
  272. }
  273. /** 表单验证 样式布局 **/
  274. label.error {
  275. position: absolute;
  276. right: 18px;
  277. top: 10px;
  278. color: #ef392b;
  279. font-size: 12px
  280. }
  281. .input-group label.error {
  282. z-index:99;
  283. right: 42px
  284. }
  285. .Validform_error,input.error,select.error {
  286. background-color: #fbe2e2;
  287. border-color: #c66161;
  288. color: #c00
  289. }
  290. .Validform_wrong,.Validform_right,.Validform_warning {
  291. display: inline-block;
  292. height: 20px;
  293. font-size: 12px;
  294. vertical-align: middle;
  295. padding-left: 25px
  296. }
  297. .i-checks label.error, .check-box label.error, .radio-box label.error {
  298. right: auto;
  299. width: 150px;
  300. left: 210px;
  301. top: 1px;
  302. max-width: none;
  303. }
  304. /** 复选框&单选框 **/
  305. .check-box,.radio-box {
  306. display: inline-block;
  307. box-sizing: border-box;
  308. cursor: pointer;
  309. position: relative;
  310. padding-left: 25px;
  311. padding-right: 15px;
  312. padding-top: 8px;
  313. }
  314. .icheckbox, .icheckbox-blue, .iradio, .iradio-blue, .iradio-purple {
  315. position: absolute;
  316. top: 8px;
  317. left: 0
  318. }
  319. /** iCheck **/
  320. .icheckbox-blue,.iradio-blue {
  321. display: block;
  322. margin: 0;
  323. padding: 0;
  324. width: 18px;
  325. height: 18px;
  326. background: url(../../img/blue.png) no-repeat;
  327. border: none;
  328. cursor: pointer
  329. }
  330. .icheckbox-blue,.icheckbox-blue.static:hover {
  331. background-position: 0 0
  332. }
  333. .icheckbox-blue.hover,.icheckbox-blue:hover {
  334. background-position: -20px 0
  335. }
  336. .icheckbox-blue.checked {
  337. background-position: -40px 0
  338. }
  339. .icheckbox-blue.disabled {
  340. background-position: -60px 0;
  341. cursor: default
  342. }
  343. .icheckbox-blue.checked.disabled {
  344. background-position: -80px 0
  345. }
  346. .iradio-blue,.iradio-blue.static:hover {
  347. background-position: -100px 0
  348. }
  349. .iradio-blue.hover,.iradio-blue:hover {
  350. background-position: -120px 0
  351. }
  352. .iradio-blue.checked {
  353. background-position: -140px 0
  354. }
  355. .iradio-blue.disabled {
  356. background-position: -160px 0;
  357. cursor: default
  358. }
  359. .iradio-blue.checked.disabled {
  360. background-position: -180px 0
  361. }
  362. /* 切换开关 */
  363. .toggle-switch {
  364. display: -webkit-inline-box;
  365. display: -webkit-inline-flex;
  366. display: -ms-inline-flexbox;
  367. display: inline-flex;
  368. -webkit-box-align: center;
  369. -webkit-align-items: center;
  370. -ms-flex-align: center;
  371. align-items: center;
  372. margin-bottom: 0;
  373. padding-top: 8px;
  374. }
  375. .toggle-switch input {
  376. height: 0;
  377. width: 0;
  378. position: absolute;
  379. opacity: 0;
  380. }
  381. .toggle-switch span {
  382. display: inline-block;
  383. position: relative;
  384. width: 40px;
  385. height: 10px;
  386. -webkit-border-radius: 10px;
  387. border-radius: 10px;
  388. background-color: #ebebeb;
  389. border: 2px solid #ebebeb;
  390. cursor: pointer;
  391. -webkit-transition: all .1s ease;
  392. -o-transition: all .1s ease;
  393. transition: all .1s ease
  394. }
  395. .toggle-switch span:after {
  396. content: '';
  397. height: 20px;
  398. width: 20px;
  399. -webkit-border-radius: 50%;
  400. border-radius: 50%;
  401. position: absolute;
  402. left: 1px;
  403. top: -7px;
  404. color: #aaa;
  405. -webkit-transition: all .1s ease;
  406. -o-transition: all .1s ease;
  407. transition: all .1s ease;
  408. text-align: center;
  409. font-size: 13px;
  410. background-color: #fff;
  411. -webkit-box-shadow: rgba(0,0,0,.12) 0 1px 6px,rgba(0,0,0,.12) 0 1px 4px;
  412. box-shadow: rgba(0,0,0,.12) 0 1px 6px,rgba(0,0,0,.12) 0 1px 4px
  413. }
  414. .toggle-switch input:checked~span:after {
  415. left: -webkit-calc(100% - 20px);
  416. left: calc(100% - 20px);
  417. background-color: #33cabb
  418. }
  419. .toggle-switch.switch-solid span {
  420. height: 20px;
  421. }
  422. .toggle-switch.switch-solid span:after {
  423. top: -2px;
  424. }
  425. .switch-solid input:checked~span {
  426. background-color: #33cabb;
  427. border-color: #33cabb
  428. }
  429. .switch-solid input:checked~span:after {
  430. background-color: #fff;
  431. color: #33cabb
  432. }
  433. /** 遮罩层 **/
  434. .loaderbox {
  435. display: inline-block;
  436. min-width: 125px;
  437. padding: 10px;
  438. margin: 0 auto;
  439. color: #000 !important;
  440. font-size: 13px;
  441. font-weight: 400;
  442. text-align: center;
  443. vertical-align: middle;
  444. border: 1px solid #ddd;
  445. background-color: #eee;
  446. -webkit-border-radius: 2px;
  447. -moz-border-radius: 2px;
  448. -ms-border-radius: 2px;
  449. -o-border-radius: 2px;
  450. border-radius: 2px;
  451. -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  452. -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  453. box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  454. }
  455. .loaderbox .loading-activity {
  456. float: left;
  457. width: 18px;
  458. height: 18px;
  459. border: solid 2px transparent;
  460. border-top-color: #000;
  461. border-left-color: #000;
  462. border-radius: 10px;
  463. -webkit-animation: pace-spinner 400ms linear infinite;
  464. -moz-animation: pace-spinner 400ms linear infinite;
  465. -ms-animation: pace-spinner 400ms linear infinite;
  466. -o-animation: pace-spinner 400ms linear infinite;
  467. animation: pace-spinner 400ms linear infinite;
  468. }
  469. @media (max-width: 767px) {
  470. .loading-activity {
  471. width: 18px;
  472. height: 18px;
  473. }
  474. }
  475. @-ms-keyframes pace-spinner {
  476. 0% {
  477. -ms-transform: rotate(0deg);
  478. transform: rotate(0deg);
  479. }
  480. 100% {
  481. -ms-transform: rotate(360deg);
  482. transform: rotate(360deg);
  483. }
  484. }
  485. @keyframes pace-spinner {
  486. 0% {
  487. transform: rotate(0deg);
  488. }
  489. 100% {
  490. transform: rotate(360deg);
  491. }
  492. }
  493. /** 表单查询条件 **/
  494. ul {
  495. margin: 0;
  496. padding: 0;
  497. -webkit-tap-highlight-color: rgba(0,0,0,0);
  498. }
  499. li {
  500. list-style: none;
  501. }
  502. .time-input {
  503. display: block;
  504. width: 100%;
  505. padding-left: 10px;
  506. }
  507. label {
  508. font-weight: normal;
  509. }
  510. .container-div {
  511. padding: 10px 35px;
  512. height: 100%;
  513. }
  514. .container-div .row {
  515. height: 100%;
  516. }
  517. .search-collapse,.select-table {
  518. width: 100%;
  519. background: #fff;
  520. border-radius: 6px;
  521. margin-top: 10px;
  522. padding-top: 5px;
  523. padding-bottom: 13px;
  524. box-shadow: 1px 1px 3px rgba(0,0,0,.2);
  525. }
  526. .search-collapse {
  527. position: relative;
  528. }
  529. .search-collapse .col-sm-6 .control-label {
  530. color: #333;
  531. }
  532. @media ( max-width : 768px) {
  533. .search-collapse {
  534. display: none;
  535. }
  536. }
  537. @media ( min-width : 768px) {
  538. .select-list li {
  539. float: left;
  540. }
  541. }
  542. .select-list li {
  543. color: #333;
  544. margin: 5px 15px 5px 0px;
  545. }
  546. .select-list li p{
  547. float: left;
  548. width: 80px;
  549. margin: 5px 15px 5px 0px;
  550. text-align:right;
  551. }
  552. .select-list li input {
  553. border: 1px solid #ddd;
  554. border-radius: 4px;
  555. background: transparent;
  556. outline: none;
  557. height: 30px;
  558. width: 200px;
  559. padding-left: 5px;
  560. }
  561. .select-list li .submit-btn {
  562. border: 0px;
  563. border-radius: 4px;
  564. background: transparent;
  565. outline: none;
  566. width: 40px;
  567. height: 23px;
  568. }
  569. .select-list li select {
  570. border: 1px solid #ddd;
  571. border-radius: 4px;
  572. background: transparent;
  573. outline: none;
  574. height: 30px;
  575. width: 200px;
  576. }
  577. .bootstrap-select.form-control .btn-default {
  578. color: inherit;
  579. padding: 6px 12px;
  580. border-radius: 1px;
  581. border: 1px solid #e5e6e7;
  582. outline: none;
  583. height: 34px;
  584. background: #FFFFFF none
  585. }
  586. .select-list .btn-default {
  587. color: #555;
  588. padding: 5px 5px;
  589. border: 1px solid #ddd;
  590. border-radius: 4px;
  591. background: transparent;
  592. outline: none;
  593. height: 30px;
  594. width: 200px;
  595. }
  596. .select-list .btn-default:hover,.select-list .btn-default:focus,.select-list .btn-default:active,.select-list .btn-default.active,.open .dropdown-toggle.btn-default {
  597. color: #555;
  598. background-color: #e4e4e4;
  599. border-color: #b2b2b2
  600. }
  601. .select-list .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  602. height: 30px;
  603. width: 200px;
  604. }
  605. .select-list .bootstrap-select > .dropdown-toggle.bs-placeholder,
  606. .select-list .bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
  607. .select-list .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
  608. .select-list .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  609. color: inherit;
  610. font-size: 13px;
  611. }
  612. .select-list .bootstrap-select .dropdown-toggle .caret {
  613. position: inherit;
  614. }
  615. .select-list .select-selectpicker li {
  616. float: none;
  617. }
  618. .select-list .dropdown-menu>li>a,.bootstrap-select.form-control .dropdown-menu>li>a {
  619. line-height: inherit;
  620. }
  621. .select-list .dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a,.bootstrap-select.form-control .dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{
  622. color: #fff;
  623. text-decoration: none;
  624. background-color: #12889a
  625. }
  626. .select-list .select-time input {
  627. width: 93px;
  628. }
  629. .select-time label,.select-time span,.select-time input {
  630. float: left;
  631. }
  632. @media (max-width:767px) {
  633. .select-time label,.select-time span,.select-time input {
  634. float: none;
  635. }
  636. .select-list .select-time input {
  637. width: 200px;
  638. }
  639. }
  640. .select-time label {
  641. margin-top: 5px;
  642. }
  643. .select-time span {
  644. display: block;
  645. margin: 5px 5px;
  646. }
  647. .search-btn {
  648. background-color: #1ab394;
  649. border-color: #1ab394;
  650. color: #FFF;
  651. margin-bottom: 5px;
  652. display: inline-block;
  653. padding: 6px 12px;
  654. margin-bottom: 0;
  655. font-size: 14px;
  656. font-weight: 400;
  657. line-height: 1.42857143;
  658. text-align: center;
  659. white-space: nowrap;
  660. border-radius: 3px;
  661. vertical-align: middle;
  662. cursor: pointer;
  663. }
  664. .select-title{
  665. color:#3d5266;
  666. font-size:15px;
  667. padding:10px 0px;
  668. font-weight: normal;
  669. }
  670. /** 表格查询数据 **/
  671. .table-striped {
  672. min-height: 75%;
  673. }
  674. .table-striped .bootstrap-table {
  675. border: 0px!important;
  676. }
  677. .table-striped .table, .fixed-table-container, table, .table-striped .table, .table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
  678. border-bottom: 1px solid #e7eaec!important;
  679. background-color: transparent!important;
  680. border: 0px;
  681. }
  682. .table-striped .table>thead>tr>th, .table-striped .table>tbody>tr>th {
  683. border-bottom: 1px solid #ccc!important;
  684. border-top: 0px!important;
  685. }
  686. .table-striped .table>thead:first-child>tr:first-child>th {
  687. font-weight: normal;
  688. font-size: 13px
  689. }
  690. .table-striped table thead {
  691. background-color: #eff3f8;
  692. }
  693. .table-bordered td,.table-bordered th {
  694. border: 1px solid #ddd!important
  695. }
  696. .fixed-table-container thead th >.both{
  697. display: inline-block
  698. }
  699. /** 表格冻结列样式 **/
  700. .left-fixed-table-columns{
  701. position: absolute;
  702. background-color: #fff;
  703. display: none;
  704. border-right:1px solid #ddd;
  705. overflow: hidden;
  706. }
  707. .right-fixed-table-columns{
  708. position: absolute;
  709. right:63px;
  710. border-left:1px solid #ddd;
  711. display: none;
  712. z-index:100;
  713. }
  714. /** 表格树样式 **/
  715. .bootstrap-tree-table .treetable-indent {width:16px; height: 16px; display: inline-block; position: relative;}
  716. .bootstrap-tree-table .treetable-expander {width:16px; height: 16px; display: inline-block; position: relative; cursor: pointer;}
  717. .bootstrap-tree-table .treetable-selected{background: #f5f5f5 !important;}
  718. .bootstrap-tree-table .treetable-table{border:0 !important;margin-bottom:0}
  719. .bootstrap-tree-table .treetable-table tbody {display:block;height:auto;overflow-y:auto;}
  720. .bootstrap-tree-table .treetable-table thead, .treetable-table tbody tr {display:table;width:100%;table-layout:fixed;}
  721. .bootstrap-tree-table .treetable-thead th{line-height:24px;border: 0 !important;border-radius: 4px;border-left:0px solid #e7eaec !important;border-bottom:1px solid #ccc!important;text-align: left;}
  722. .bootstrap-tree-table .treetable-thead tr :first-child{border-left:0 !important}
  723. .bootstrap-tree-table .treetable-tbody td{border: 0 !important;border-left:0px solid #e7eaec !important;border-bottom:1px solid #e7eaec!important;white-space: nowrap; text-overflow: ellipsis;}
  724. .bootstrap-tree-table .treetable-tbody tr :first-child{border-left:0 !important}
  725. .bootstrap-tree-table .treetable-bars .tool-left, .bootstrap-tree-table .treetable-bars .tool-right{margin-top: 10px; margin-bottom: 10px;}
  726. .bootstrap-tree-table .treetable-bars .tool-left{float: left;}
  727. .bootstrap-tree-table .treetable-bars .tool-right{float: right;}
  728. .bootstrap-tree-table .treetable-bars .columns li label{display: block;padding: 3px 20px;clear: both;font-weight: 400;line-height: 1.428571429;max-width: 100%;margin-bottom: 5px;cursor:pointer;}
  729. /** 首页样式 **/
  730. .ax_close_max {
  731. position: fixed;
  732. top: 5px;
  733. left: 5px;
  734. z-index: 9999;
  735. display: none;
  736. color: #ccc;
  737. }
  738. .navbar-right > .user-menu > .dropdown-menu {
  739. border-top-right-radius:0;
  740. border-top-left-radius:0;
  741. padding:1px 0 0 0;
  742. border-top-width:0;
  743. width:138px;
  744. }
  745. .navbar-right > .user-menu .user-image {
  746. float:left;
  747. width:27px;
  748. height:27px;
  749. border-radius:50%;
  750. margin-right:8px;
  751. margin-top:-3px;
  752. }
  753. @media (max-width:767px) {
  754. .navbar-right > .user-menu .user-image {
  755. float:none;
  756. margin-right:0;
  757. margin-top:-8px;
  758. line-height:10px;
  759. }
  760. }.dropdown-menu > li > a > .glyphicon,.dropdown-menu > li > a > .fa,.dropdown-menu > li > a > .ion {
  761. margin-right:10px;
  762. }
  763. .dropdown-menu > li > a:hover {
  764. background-color:#e1e3e9;
  765. color:#333;
  766. }
  767. .dropdown-menu > .divider {
  768. background-color:#eee;
  769. }
  770. /** 表单布局 **/
  771. .form-header {
  772. font-size:15px;
  773. color:#6379bb;
  774. border-bottom:1px solid #ddd;
  775. margin:8px 10px 25px 10px;
  776. padding-bottom:5px
  777. }
  778. .form-content {
  779. background-color: #ffffff;
  780. color: inherit;
  781. padding: 10px 15px 15px 15px;
  782. border-color: #e7eaec;
  783. -webkit-border-image: none;
  784. -o-border-image: none;
  785. border-image: none;
  786. border-width: 1px 0px;
  787. }
  788. /** 表格跳转样式 **/
  789. .pageGo input {
  790. height: 32px;
  791. width: 50px;
  792. margin-left: 5px;
  793. margin-right: 5px;
  794. text-align: center;
  795. display: block;
  796. float:left;
  797. }
  798. .pageGo button {
  799. height: 32px;
  800. display: block;
  801. float:left;
  802. }