ry-ui.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080
  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.header {
  140. padding-left: 5px;
  141. font-size: 16px;
  142. line-height: 30px;
  143. }
  144. .nav-tabs-custom>.nav-tabs>li.disabled>a {
  145. color: #777
  146. }
  147. .nav-tabs-custom>.nav-tabs>li>a {
  148. color: #444;
  149. font-weight: normal;
  150. border-radius: 0
  151. }
  152. .nav-tabs-custom>.nav-tabs>li>a,.nav-tabs-custom>.nav-tabs>li>a:hover {
  153. background: transparent;
  154. margin: 0
  155. }
  156. .nav-tabs-custom>.nav-tabs>li>a:hover {
  157. color: #999
  158. }
  159. .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 {
  160. border-color: transparent
  161. }
  162. .nav-tabs-custom>.nav-tabs>li.active {
  163. border-top-color: #1890ff
  164. }
  165. .nav-tabs-custom>.nav-tabs>li.active>a,.nav-tabs-custom>.nav-tabs>li.active:hover>a {
  166. background-color: #fff;
  167. color: #444
  168. }
  169. .nav-tabs-custom>.nav-tabs>li.active>a {
  170. border-top-color: transparent;
  171. border-bottom-color: transparent;
  172. border-left-color: #f4f4f4;
  173. border-right-color: #f4f4f4
  174. }
  175. .nav-tabs-custom>.tab-content {
  176. background: #fff;
  177. padding: 10px;
  178. border-bottom-right-radius: 3px;
  179. border-bottom-left-radius: 3px
  180. }
  181. /** 弹层组件 禁用样式 **/
  182. .layer-disabled {
  183. border: 1px #dedede solid !important;
  184. background-color: #f1f1f1 !important;
  185. color: #333 !important;
  186. pointer-events: none;
  187. }
  188. /** 用户管理 样式布局 **/
  189. .box {
  190. position: relative;
  191. border-radius: 3px;
  192. background: #ffffff;
  193. border-top: 3px solid #d2d6de;
  194. margin-bottom: 20px;
  195. width: 100%;
  196. box-shadow: 0 1px 1px rgba(0,0,0,0.1)
  197. }
  198. .box-header:before,.box-body:before,.box-footer:before,.box-header:after,.box-body:after,.box-footer:after {
  199. content: " ";
  200. display: table
  201. }
  202. .box-header:after,.box-body:after,.box-footer:after {
  203. clear: both
  204. }
  205. .btn-box-tool {
  206. padding: 5px;
  207. font-size: 12px;
  208. background: transparent;
  209. color: #97a0b3;
  210. }
  211. .open .btn-box-tool,
  212. .btn-box-tool:hover {
  213. color: #606c84;
  214. }
  215. .box-main {
  216. margin: 0;
  217. border: 0;
  218. padding-top: 2px;
  219. border-radius: 0;
  220. box-shadow: none
  221. }
  222. .box-main>.box-header {
  223. border-bottom: 1px solid #eee;
  224. padding: 12px 10px 2px 15px
  225. }
  226. .box-header .box-title {
  227. display: inline-block;
  228. font-size: 18px;
  229. margin: 0;
  230. line-height: 1;
  231. }
  232. .box-main>.box-header .box-title {
  233. font-size: 16px;
  234. margin-bottom: 13px;
  235. float: left
  236. }
  237. .box-main>.box-header .box-title .fa {
  238. font-size: 14px;
  239. padding-right: 3px;
  240. margin-top: -2px
  241. }
  242. .box-main>.box-header .box-tools {
  243. position: relative;
  244. top: -5px;
  245. right: 0
  246. }
  247. .box-main>.box-header .box-tools .btn {
  248. padding: 3px 10px 5px 10px;
  249. font-size: 14px;
  250. margin-bottom: 2px
  251. }
  252. .box-main>.box-header .box-tools .btn-box-tool {
  253. padding: 4px 2px
  254. }
  255. .box-main form>.box-footer,.nav-main form>.box-footer {
  256. background: #fafafa
  257. }
  258. .box-main form>.box-footer .row,.nav-main form>.box-footer .row {
  259. margin: 5px 0 5px -25px
  260. }
  261. @media ( min-width : 768px) {
  262. .section-content .about {
  263. padding-left: 0px
  264. }
  265. }
  266. /** select2 样式修改 **/
  267. .select2-container--default .select2-selection--multiple .select2-selection__choice {
  268. background-color: #1AB394;
  269. border-color: #1AB394;
  270. padding: 1px 10px;
  271. color: #fff
  272. }
  273. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  274. margin-right: 5px;
  275. color: rgba(255,255,255,0.7)
  276. }
  277. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  278. color: #fff
  279. }
  280. .select2-container .select2-selection--single .select2-selection__rendered {
  281. padding-right: 10px
  282. }
  283. /** 表单验证 样式布局 **/
  284. .control-label.is-required:before {
  285. content: '* ';
  286. color: red;
  287. }
  288. label.error {
  289. position: absolute;
  290. right: 18px;
  291. top: 10px;
  292. color: #ef392b;
  293. font-size: 12px;
  294. z-index:99;
  295. }
  296. .input-group label.error {
  297. z-index:99;
  298. right: 42px
  299. }
  300. .input-group.date label.error {
  301. z-index:99;
  302. right: 3px
  303. }
  304. .Validform_error,input.error,select.error {
  305. background-color: #fbe2e2;
  306. border-color: #c66161;
  307. color: #c00
  308. }
  309. .Validform_wrong,.Validform_right,.Validform_warning {
  310. display: inline-block;
  311. height: 20px;
  312. font-size: 12px;
  313. vertical-align: middle;
  314. padding-left: 25px
  315. }
  316. .i-checks label.error, .check-box label.error, .radio-box label.error {
  317. right: auto;
  318. width: 150px;
  319. left: 210px;
  320. top: 1px;
  321. max-width: none;
  322. }
  323. /** 复选框&单选框 **/
  324. .check-box,.radio-box {
  325. display: inline-block;
  326. box-sizing: border-box;
  327. cursor: pointer;
  328. position: relative;
  329. padding-left: 25px;
  330. padding-right: 15px;
  331. padding-top: 8px;
  332. }
  333. .icheckbox, .icheckbox-blue, .iradio, .iradio-blue, .iradio-purple {
  334. position: absolute;
  335. top: 8px;
  336. left: 0
  337. }
  338. /** iCheck **/
  339. .icheckbox-blue,.iradio-blue {
  340. display: block;
  341. margin: 0;
  342. padding: 0;
  343. width: 18px;
  344. height: 18px;
  345. background: url(../../img/blue.png) no-repeat;
  346. border: none;
  347. cursor: pointer
  348. }
  349. .icheckbox-blue,.icheckbox-blue.static:hover {
  350. background-position: 0 0
  351. }
  352. .icheckbox-blue.hover,.icheckbox-blue:hover {
  353. background-position: -20px 0
  354. }
  355. .icheckbox-blue.checked {
  356. background-position: -40px 0
  357. }
  358. .icheckbox-blue.disabled {
  359. background-position: -60px 0;
  360. cursor: default
  361. }
  362. .icheckbox-blue.checked.disabled {
  363. background-position: -80px 0
  364. }
  365. .iradio-blue,.iradio-blue.static:hover {
  366. background-position: -100px 0
  367. }
  368. .iradio-blue.hover,.iradio-blue:hover {
  369. background-position: -120px 0
  370. }
  371. .iradio-blue.checked {
  372. background-position: -140px 0
  373. }
  374. .iradio-blue.disabled {
  375. background-position: -160px 0;
  376. cursor: default
  377. }
  378. .iradio-blue.checked.disabled {
  379. background-position: -180px 0
  380. }
  381. /* 切换开关 */
  382. .toggle-switch {
  383. display: -webkit-inline-box;
  384. display: -webkit-inline-flex;
  385. display: -ms-inline-flexbox;
  386. display: inline-flex;
  387. -webkit-box-align: center;
  388. -webkit-align-items: center;
  389. -ms-flex-align: center;
  390. align-items: center;
  391. margin-bottom: 0;
  392. padding-top: 8px;
  393. }
  394. .toggle-switch input {
  395. height: 0;
  396. width: 0;
  397. position: absolute;
  398. opacity: 0;
  399. }
  400. .toggle-switch span {
  401. display: inline-block;
  402. position: relative;
  403. width: 40px;
  404. height: 10px;
  405. -webkit-border-radius: 10px;
  406. border-radius: 10px;
  407. background-color: #ebebeb;
  408. border: 2px solid #ebebeb;
  409. cursor: pointer;
  410. -webkit-transition: all .1s ease;
  411. -o-transition: all .1s ease;
  412. transition: all .1s ease
  413. }
  414. .toggle-switch span:after {
  415. content: '';
  416. height: 20px;
  417. width: 20px;
  418. -webkit-border-radius: 50%;
  419. border-radius: 50%;
  420. position: absolute;
  421. left: 1px;
  422. top: -7px;
  423. color: #aaa;
  424. -webkit-transition: all .1s ease;
  425. -o-transition: all .1s ease;
  426. transition: all .1s ease;
  427. text-align: center;
  428. font-size: 13px;
  429. background-color: #fff;
  430. -webkit-box-shadow: rgba(0,0,0,.12) 0 1px 6px,rgba(0,0,0,.12) 0 1px 4px;
  431. box-shadow: rgba(0,0,0,.12) 0 1px 6px,rgba(0,0,0,.12) 0 1px 4px
  432. }
  433. .toggle-switch input:checked~span:after {
  434. left: -webkit-calc(100% - 20px);
  435. left: calc(100% - 20px);
  436. background-color: #33cabb
  437. }
  438. .toggle-switch.switch-solid span {
  439. height: 20px;
  440. }
  441. .toggle-switch.switch-solid span:after {
  442. top: -2px;
  443. }
  444. .switch-solid input:checked~span {
  445. background-color: #33cabb;
  446. border-color: #33cabb
  447. }
  448. .switch-solid input:checked~span:after {
  449. background-color: #fff;
  450. color: #33cabb
  451. }
  452. /** 遮罩层 **/
  453. .loaderbox {
  454. display: inline-block;
  455. min-width: 125px;
  456. padding: 10px;
  457. margin: 0 auto;
  458. color: #000 !important;
  459. font-size: 13px;
  460. font-weight: 400;
  461. text-align: center;
  462. vertical-align: middle;
  463. border: 1px solid #ddd;
  464. background-color: #eee;
  465. -webkit-border-radius: 2px;
  466. -moz-border-radius: 2px;
  467. -ms-border-radius: 2px;
  468. -o-border-radius: 2px;
  469. border-radius: 2px;
  470. -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  471. -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  472. box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  473. }
  474. .loaderbox .loading-activity {
  475. float: left;
  476. width: 18px;
  477. height: 18px;
  478. border: solid 2px transparent;
  479. border-top-color: #000;
  480. border-left-color: #000;
  481. border-radius: 10px;
  482. -webkit-animation: pace-spinner 400ms linear infinite;
  483. -moz-animation: pace-spinner 400ms linear infinite;
  484. -ms-animation: pace-spinner 400ms linear infinite;
  485. -o-animation: pace-spinner 400ms linear infinite;
  486. animation: pace-spinner 400ms linear infinite;
  487. }
  488. @media (max-width: 767px) {
  489. .loading-activity {
  490. width: 18px;
  491. height: 18px;
  492. }
  493. }
  494. @-ms-keyframes pace-spinner {
  495. 0% {
  496. -ms-transform: rotate(0deg);
  497. transform: rotate(0deg);
  498. }
  499. 100% {
  500. -ms-transform: rotate(360deg);
  501. transform: rotate(360deg);
  502. }
  503. }
  504. @keyframes pace-spinner {
  505. 0% {
  506. transform: rotate(0deg);
  507. }
  508. 100% {
  509. transform: rotate(360deg);
  510. }
  511. }
  512. /** 表单查询条件 **/
  513. .select-list ul, .layui-layer-content ul {
  514. margin: 0;
  515. padding: 0;
  516. -webkit-tap-highlight-color: rgba(0,0,0,0);
  517. }
  518. .select-list li, .layui-layer-content li {
  519. list-style: none;
  520. }
  521. .time-input {
  522. display: block;
  523. width: 100%;
  524. padding-left: 10px;
  525. }
  526. label {
  527. font-weight: normal;
  528. }
  529. .container-div {
  530. padding: 0px 28px;
  531. height: 100%;
  532. }
  533. .container-div .row {
  534. height: 100%;
  535. }
  536. .search-collapse,.select-table {
  537. width: 100%;
  538. background: #fff;
  539. border-radius: 6px;
  540. margin-top: 10px;
  541. padding-top: 5px;
  542. padding-bottom: 13px;
  543. box-shadow: 1px 1px 3px rgba(0,0,0,.2);
  544. }
  545. .search-collapse {
  546. position: relative;
  547. }
  548. .search-collapse .col-sm-6 .control-label {
  549. color: #333;
  550. }
  551. @media ( max-width : 768px) {
  552. .search-collapse {
  553. display: none;
  554. }
  555. }
  556. @media ( min-width : 768px) {
  557. .select-list li {
  558. float: left;
  559. }
  560. }
  561. .select-list li {
  562. color: #333;
  563. margin: 5px 15px 5px 0px;
  564. }
  565. .select-list li p, .select-list li label:not(.radio-box):not(:select-time){
  566. float: left;
  567. width: 65px;
  568. margin: 5px 5px 5px 0px;
  569. text-align:right;
  570. }
  571. .select-list li input {
  572. border: 1px solid #ddd;
  573. border-radius: 4px;
  574. background: transparent;
  575. outline: none;
  576. height: 30px;
  577. width: 200px;
  578. padding-left: 5px;
  579. }
  580. .select-list li .submit-btn {
  581. border: 0px;
  582. border-radius: 4px;
  583. background: transparent;
  584. outline: none;
  585. width: 40px;
  586. height: 23px;
  587. }
  588. .select-list li select {
  589. border: 1px solid #ddd;
  590. border-radius: 4px;
  591. background: transparent;
  592. outline: none;
  593. height: 30px;
  594. width: 200px;
  595. }
  596. .bootstrap-select.form-control .btn-default {
  597. color: inherit;
  598. padding: 6px 12px;
  599. border-radius: 1px;
  600. border: 1px solid #e5e6e7;
  601. outline: none;
  602. height: 34px;
  603. background: #FFFFFF none
  604. }
  605. .file-input .btn-default {
  606. color: inherit;
  607. background: white;
  608. border: 1px solid #e7eaec;
  609. }
  610. .select-list .btn-default {
  611. color: #555;
  612. padding: 5px 5px;
  613. border: 1px solid #ddd;
  614. border-radius: 4px;
  615. background: transparent;
  616. outline: none;
  617. height: 30px;
  618. width: 200px;
  619. }
  620. .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 {
  621. color: #555;
  622. background-color: #e4e4e4;
  623. border-color: #b2b2b2
  624. }
  625. .select-list .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  626. height: 30px;
  627. width: 200px;
  628. }
  629. .select-list .bootstrap-select > .dropdown-toggle.bs-placeholder,
  630. .select-list .bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
  631. .select-list .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
  632. .select-list .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  633. color: inherit;
  634. font-size: 13px;
  635. }
  636. .select-list .bootstrap-select .dropdown-toggle .caret {
  637. position: inherit;
  638. }
  639. .select-list .select-selectpicker li {
  640. float: none;
  641. }
  642. .select-list .dropdown-menu>li>a,.bootstrap-select.form-control .dropdown-menu>li>a {
  643. line-height: inherit;
  644. }
  645. .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{
  646. color: #fff;
  647. text-decoration: none;
  648. background-color: #12889a
  649. }
  650. .select-list .select2-container--bootstrap {
  651. width: 200px!important;
  652. display: inline-block;
  653. }
  654. .select-list .select2-container--bootstrap .select2-selection {
  655. border-radius: 6px;
  656. }
  657. .select-list .select2-container--bootstrap .select2-selection--single {
  658. height: 30px!important;
  659. padding: 5px 10px;
  660. }
  661. .select-list .select-time input {
  662. width: 93px;
  663. }
  664. .select-time label,.select-time span,.select-time input {
  665. float: left;
  666. }
  667. @media (max-width:767px) {
  668. .select-time label,.select-time span,.select-time input {
  669. float: none;
  670. }
  671. .select-list .select-time input {
  672. width: 200px;
  673. }
  674. }
  675. .select-time label {
  676. margin-top: 5px;
  677. }
  678. .select-time span {
  679. display: block;
  680. margin: 5px 5px;
  681. }
  682. .search-btn {
  683. background-color: #1ab394;
  684. border-color: #1ab394;
  685. color: #FFF;
  686. margin-bottom: 5px;
  687. display: inline-block;
  688. padding: 6px 12px;
  689. margin-bottom: 0;
  690. font-size: 14px;
  691. font-weight: 400;
  692. line-height: 1.42857143;
  693. text-align: center;
  694. white-space: nowrap;
  695. border-radius: 3px;
  696. vertical-align: middle;
  697. cursor: pointer;
  698. }
  699. .select-title{
  700. color:#3d5266;
  701. font-size:15px;
  702. padding:10px 0px;
  703. font-weight: normal;
  704. }
  705. /** 表格查询数据 **/
  706. .table-striped {
  707. min-height: 75%;
  708. }
  709. .table-striped .bootstrap-table {
  710. border: 0px!important;
  711. }
  712. .table-striped table>thead>tr>th, .table-striped table>tbody>tr>th, .table-striped table>tfoot>tr>th, .table-striped table>thead>tr>td, .table-striped table>tbody>tr>td, .table-striped table>tfoot>tr>td {
  713. border-bottom: 1px solid #e7eaec!important;
  714. background-color: transparent;
  715. border: 0px;
  716. }
  717. .table-bordered table>thead>tr>th:first-child, .table-bordered table>tbody>tr>td:first-child {
  718. border-left: 1px solid #ddd;
  719. }
  720. .table-bordered table>thead>tr>th:last-child, .table-bordered table>tbody>tr>td:last-child {
  721. border-right: 1px solid #ddd;
  722. }
  723. .table-bordered table>thead>tr>th, .table-bordered table>tbody>tr>td {
  724. border-top: 1px solid #ddd!important;
  725. border-bottom: 1px solid #ddd;
  726. }
  727. .fixed-table-footer {
  728. border-top: 0px solid #ddd;
  729. }
  730. .fixed-table-container {
  731. border: 0px solid #ddd;
  732. }
  733. .table-striped .table>thead>tr>th, .table-striped .table>tbody>tr>th {
  734. border-bottom: 1px solid #ccc!important;
  735. border-top: 0px!important;
  736. }
  737. .table-striped .table>thead:first-child>tr:first-child>th {
  738. font-weight: normal;
  739. font-size: 13px
  740. }
  741. .table-striped table thead {
  742. background-color: #eff3f8;
  743. }
  744. .fixed-table-container thead th >.both{
  745. display: inline-block
  746. }
  747. .editable-input .input-sm {
  748. height: 32px!important;
  749. }
  750. /** 表格冻结列样式 **/
  751. .left-fixed-table-columns, .left-fixed-body-columns {
  752. position: absolute;
  753. background-color: #fff;
  754. display: none;
  755. box-sizing: border-box;
  756. overflow: hidden;
  757. }
  758. .left-fixed-table-columns .table, .left-fixed-body-columns .table {
  759. border-right: 1px solid #ddd;
  760. }
  761. .left-fixed-table-columns .table.table-no-bordered, .left-fixed-body-columns .table.table-no-bordered {
  762. border-right: 1px solid transparent;
  763. }
  764. .left-fixed-body-columns table {
  765. position: absolute;
  766. animation: none;
  767. }
  768. .bootstrap-table .table-hover > tbody > tr.hover > td {
  769. background-color: #f5f5f5;
  770. }
  771. .right-fixed-table-columns{
  772. position: absolute;
  773. right:63px;
  774. border-left:1px solid #ddd;
  775. display: none;
  776. z-index:100;
  777. }
  778. /** 表格全屏样式 **/
  779. .bootstrap-table.fullscreen {
  780. position: fixed;
  781. top: 0;
  782. left: 0;
  783. z-index: 1050;
  784. width: 100%!important;
  785. background: #FFF;
  786. }
  787. /** 表格树样式 **/
  788. .bootstrap-tree-table .treetable-indent {width:16px; height: 16px; display: inline-block; position: relative;}
  789. .bootstrap-tree-table .treetable-expander {width:16px; height: 16px; display: inline-block; position: relative; cursor: pointer;}
  790. .bootstrap-tree-table .treetable-selected{background: #f5f5f5 !important;}
  791. .bootstrap-tree-table .treetable-table{border:0 !important;margin-bottom:0}
  792. .bootstrap-tree-table .treetable-table tbody {display:block;height:auto;overflow-y:auto;}
  793. .bootstrap-tree-table .treetable-table thead, .treetable-table tbody tr {display:table;width:100%;table-layout:fixed;}
  794. .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;}
  795. .bootstrap-tree-table .treetable-thead tr :first-child{border-left:0 !important}
  796. .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;}
  797. .bootstrap-tree-table .treetable-tbody tr :first-child{border-left:0 !important}
  798. .bootstrap-tree-table .treetable-bars .tool-left, .bootstrap-tree-table .treetable-bars .tool-right{margin-top: 10px; margin-bottom: 10px;}
  799. .bootstrap-tree-table .treetable-bars .tool-left{float: left;}
  800. .bootstrap-tree-table .treetable-bars .tool-right{float: right;}
  801. .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;}
  802. .bootstrap-tree-table .table{border-bottom: 0px solid #e7eaec!important;}
  803. /** 首页样式 **/
  804. .ax_close_max {
  805. position: fixed;
  806. top: 5px;
  807. left: 5px;
  808. z-index: 9999;
  809. display: none;
  810. color: #ccc;
  811. }
  812. .navbar-right > .user-menu > .dropdown-menu {
  813. border-top-right-radius:0;
  814. border-top-left-radius:0;
  815. padding:1px 0 0 0;
  816. border-top-width:0;
  817. width:138px;
  818. }
  819. .navbar-right > .user-menu .user-image {
  820. float:left;
  821. width:27px;
  822. height:27px;
  823. border-radius:50%;
  824. margin-right:8px;
  825. margin-top:-3px;
  826. }
  827. @media (max-width:767px) {
  828. .navbar-right > .user-menu .user-image {
  829. float:none;
  830. margin-right:0;
  831. margin-top:-8px;
  832. line-height:10px;
  833. }
  834. }.dropdown-menu > li > a > .glyphicon,.dropdown-menu > li > a > .fa,.dropdown-menu > li > a > .ion {
  835. margin-right:10px;
  836. }
  837. .dropdown-menu > li > a:hover {
  838. background-color:#e1e3e9;
  839. color:#333;
  840. }
  841. .dropdown-menu > .divider {
  842. background-color:#eee;
  843. }
  844. /** 表单布局 **/
  845. .form-header {
  846. font-size:15px;
  847. color:#6379bb;
  848. border-bottom:1px solid #ddd;
  849. margin:8px 10px 25px 10px;
  850. padding-bottom:5px
  851. }
  852. .main-content {
  853. background-color: #ffffff;
  854. color: inherit;
  855. padding: 10px 15px 15px 15px;
  856. border-color: #e7eaec;
  857. -webkit-border-image: none;
  858. -o-border-image: none;
  859. border-image: none;
  860. border-width: 1px 0px;
  861. }
  862. /** 表格跳转样式 **/
  863. .pageGo input {
  864. height: 32px;
  865. width: 50px;
  866. margin-left: 5px;
  867. margin-right: 5px;
  868. text-align: center;
  869. display: block;
  870. float:left;
  871. }
  872. .pageGo button {
  873. height: 32px;
  874. display: block;
  875. float:left;
  876. }
  877. /** 表格拖拽样式 **/
  878. .reorder_rows_onDragClass td {
  879. color:yellow!important;
  880. background-color:#999!important;
  881. text-shadow:0 0 10px black,0 0 10px black,0 0 8px black,0 0 6px black,0 0 6px black;
  882. box-shadow:0 12px 14px -12px #111 inset,0 -2px 2px -1px #333 inset
  883. }
  884. /** 表格选中样式 **/
  885. .fixed-table-container .selected {
  886. background-color: #E8F7FD;
  887. color: #1890ff;
  888. }
  889. /** 滚动条样式 **/
  890. ::-webkit-scrollbar-track {
  891. background-color: #F5F5F5;
  892. }
  893. /** 气泡弹出框样式 **/
  894. .popover {
  895. font-size: 13px;
  896. max-width: unset;
  897. }
  898. .popover-title {
  899. padding: 8px 14px;
  900. margin: 0 !important;
  901. font-size: 14px;
  902. background-color: #f7f7f7;
  903. border-bottom: 1px solid #ebebeb;
  904. border-radius: 5px 5px 0 0;
  905. }
  906. .popover-content {
  907. padding: 5px;
  908. }
  909. /** 向上滚动样式 **/
  910. #scroll-up {
  911. border-width: 0;
  912. position: fixed;
  913. right: 2px;
  914. z-index: 99;
  915. -webkit-transition-duration: .3s;
  916. transition-duration: .3s;
  917. opacity: 0;
  918. filter: alpha(opacity=0);
  919. bottom: -24px;
  920. visibility: hidden;
  921. background-color: #aaa;
  922. color: #fff;
  923. font-size: 14px;
  924. display: none;
  925. }
  926. #scroll-up.display {
  927. opacity: .7;
  928. filter: alpha(opacity=70);
  929. bottom: 2px;
  930. visibility: visible;
  931. }
  932. ::-webkit-scrollbar {
  933. width: 6px;
  934. height: 10px;
  935. background-color: #F5F5F5;
  936. }
  937. ::-webkit-scrollbar-thumb {
  938. border-radius: 6px;
  939. background-color: #999;
  940. }