backend.css 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042
  1. @import url("../css/bootstrap.css");
  2. @import url("../css/fastadmin.css");
  3. @import url("../css/skins/skin-green.css");
  4. @import url("../css/iconfont.css");
  5. @import url("../libs/font-awesome/css/font-awesome.min.css");
  6. @import url("../libs/toastr/toastr.min.css");
  7. @import url("../libs/fastadmin-layer/dist/theme/default/layer.css");
  8. @import url("../libs/bootstrap-table/dist/bootstrap-table.min.css");
  9. @import url("../libs/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css");
  10. @import url("../libs/bootstrap-daterangepicker/daterangepicker.css");
  11. @import url("../libs/nice-validator/dist/jquery.validator.css");
  12. @import url("../libs/bootstrap-select/dist/css/bootstrap-select.min.css");
  13. @import url("../libs/fastadmin-selectpage/selectpage.css");
  14. @import url("../libs/bootstrap-slider/slider.css");
  15. html,
  16. body {
  17. height: 100%;
  18. }
  19. body {
  20. background: #f1f4f6;
  21. font-size: 13px;
  22. }
  23. body.is-dialog {
  24. background: #fff;
  25. }
  26. .selection {
  27. position: absolute;
  28. border: 1px solid #8B9;
  29. background-color: #BEC;
  30. }
  31. .main-header .logo,
  32. .main-header .navbar {
  33. -webkit-transition: none;
  34. -moz-transition: none;
  35. -o-transition: none;
  36. transition: none;
  37. }
  38. .main-header .navbar {
  39. position: relative;
  40. }
  41. .bootstrap-dialog .modal-dialog {
  42. /*width: 70%;*/
  43. max-width: 885px;
  44. }
  45. /*iOS兼容*/
  46. html.ios-fix,
  47. html.ios-fix body {
  48. height: 100%;
  49. overflow: auto;
  50. -webkit-overflow-scrolling: touch;
  51. }
  52. .wrapper {
  53. height: 100%;
  54. }
  55. #header {
  56. background: #fff;
  57. }
  58. .content-wrapper {
  59. position: relative;
  60. height: 100%;
  61. }
  62. .control-relative {
  63. position: relative;
  64. }
  65. .tab-addtabs .tab-pane {
  66. height: 100%;
  67. width: 100%;
  68. }
  69. .row-between .col-xs-6 + .col-xs-6:before {
  70. content: "-";
  71. position: absolute;
  72. left: -2%;
  73. top: 6px;
  74. }
  75. @media only screen and (min-width: 481px) {
  76. .row-flex {
  77. display: flex;
  78. flex-wrap: wrap;
  79. }
  80. .row-flex > [class*='col-'] {
  81. display: flex;
  82. flex-direction: column;
  83. }
  84. .row-flex.row:after,
  85. .row-flex.row:before {
  86. display: flex;
  87. }
  88. }
  89. @media (max-width: 991px) {
  90. .main-header .navbar-custom-menu a.btn-danger {
  91. color: #fff;
  92. background-color: #e74c3c;
  93. }
  94. .main-header .navbar-custom-menu a.btn-primary {
  95. color: #fff;
  96. background-color: #2c3e50;
  97. }
  98. }
  99. .common-search-table {
  100. min-height: 20px;
  101. padding: 15px;
  102. margin-bottom: 15px;
  103. background-color: #f5f5f5;
  104. }
  105. /* 固定的底部按钮 */
  106. .fixed-footer {
  107. position: fixed;
  108. bottom: 0;
  109. background-color: #ecf0f1;
  110. width: 100%;
  111. margin-bottom: 0;
  112. padding: 10px;
  113. }
  114. table.table-template {
  115. overflow: hidden;
  116. }
  117. .sp_container .msg-box {
  118. position: absolute;
  119. right: 0;
  120. top: 0;
  121. }
  122. .sp_container .sp_element_box {
  123. overflow: unset;
  124. }
  125. .sp_container .sp_element_box > li.input_box {
  126. position: unset;
  127. }
  128. .sp_container .sp_element_box .msg-box {
  129. right: -24px;
  130. }
  131. @media (max-width: 767px) {
  132. .sp_container .sp_element_box .msg-box {
  133. left: inherit;
  134. }
  135. }
  136. .toast-top-right-index {
  137. top: 62px;
  138. right: 12px;
  139. }
  140. .bootstrap-select .status {
  141. background: #f0f0f0;
  142. clear: both;
  143. color: #999;
  144. font-size: 12px;
  145. font-weight: 500;
  146. line-height: 1;
  147. margin-bottom: -5px;
  148. padding: 10px 20px;
  149. }
  150. select.bs-select-hidden,
  151. select.selectpicker {
  152. display: inherit !important;
  153. max-height: 31px;
  154. overflow: hidden;
  155. }
  156. .img-center {
  157. margin: 0 auto;
  158. display: inline;
  159. float: none;
  160. }
  161. /*
  162. * RIBBON
  163. */
  164. #ribbon {
  165. overflow: hidden;
  166. padding: 15px 15px 0 15px;
  167. position: relative;
  168. }
  169. #ribbon a {
  170. color: #777 !important;
  171. text-decoration: none !important;
  172. }
  173. #ribbon .breadcrumb {
  174. display: inline-block;
  175. margin: 0;
  176. padding: 0;
  177. background: none;
  178. vertical-align: top;
  179. }
  180. #ribbon .breadcrumb > .active,
  181. #ribbon .breadcrumb li {
  182. color: #aaa;
  183. }
  184. #ribbon .shortcut a {
  185. margin-left: 10px;
  186. }
  187. .is-dialog #main {
  188. background: #fff;
  189. }
  190. .is-dialog .layer-footer {
  191. display: none;
  192. }
  193. form.form-horizontal .control-label {
  194. font-weight: normal;
  195. }
  196. .user-panel > .image img {
  197. width: 45px;
  198. height: 45px;
  199. }
  200. /*panel扩展描述样式*/
  201. .panel-intro {
  202. margin-bottom: 0;
  203. border: none;
  204. }
  205. .panel-intro > .panel-heading {
  206. padding: 15px;
  207. padding-bottom: 0;
  208. background: #e8edf0;
  209. border-color: #e8edf0;
  210. position: relative;
  211. }
  212. .panel-intro > .panel-heading .panel-lead {
  213. margin-bottom: 15px;
  214. }
  215. .panel-intro > .panel-heading .panel-lead em {
  216. display: block;
  217. font-weight: bold;
  218. font-style: normal;
  219. }
  220. .panel-intro > .panel-heading .panel-title {
  221. height: 25px;
  222. font-weight: normal;
  223. white-space: nowrap;
  224. overflow: hidden;
  225. text-overflow: ellipsis;
  226. }
  227. .panel-intro > .panel-heading .panel-control {
  228. height: 42px;
  229. position: absolute;
  230. top: 8px;
  231. right: 8px;
  232. }
  233. .panel-intro > .panel-heading .panel-control .fa {
  234. font-size: 14px;
  235. }
  236. .panel-intro > .panel-heading .nav-tabs {
  237. border-bottom: 0;
  238. margin-bottom: 0;
  239. }
  240. .panel-intro > .panel-heading .nav-tabs > li > a {
  241. margin-right: 4px;
  242. color: #95a5a6;
  243. background-color: #d8e0e6;
  244. border: 1px solid #e8edf0;
  245. border-bottom-color: transparent;
  246. }
  247. .panel-intro > .panel-heading .nav-tabs > li > a:hover,
  248. .panel-intro > .panel-heading .nav-tabs > li > a:focus {
  249. border: 1px solid #e8edf0;
  250. color: #7b8a8b;
  251. background-color: #c9d4dc;
  252. }
  253. .panel-intro > .panel-heading .nav-tabs > li.active > a,
  254. .panel-intro > .panel-heading .nav-tabs > li.active > a:hover,
  255. .panel-intro > .panel-heading .nav-tabs > li.active > a:focus {
  256. color: #7b8a8b;
  257. background-color: #ffffff;
  258. border-bottom-color: transparent;
  259. cursor: default;
  260. }
  261. /*单表格*/
  262. .panel-tabs .panel-heading {
  263. padding: 12px 15px 12px 15px;
  264. }
  265. .panel-tabs .panel-heading .panel-lead {
  266. margin-bottom: 0px;
  267. }
  268. /*选项卡*/
  269. .panel-nav .panel-heading {
  270. padding: 0px;
  271. padding-bottom: 0;
  272. background: #f1f4f6;
  273. border-color: #f1f4f6;
  274. }
  275. .panel-nav .nav-tabs > li > a {
  276. padding: 12px 15px;
  277. background-color: #e8edf0;
  278. border: 1px solid #f1f4f6;
  279. }
  280. .panel-nav .nav-tabs > li > a:hover,
  281. .panel-nav .nav-tabs > li > a:focus {
  282. border: 1px solid #e8edf0;
  283. background-color: #e8edf0;
  284. }
  285. .panel-nav .nav-tabs > li.active > a,
  286. .panel-nav .nav-tabs > li.active > a:hover,
  287. .panel-nav .nav-tabs > li.active > a:focus {
  288. border-color: #f1f4f6;
  289. border-bottom-color: transparent;
  290. }
  291. /*顶栏addtabs*/
  292. .nav-addtabs {
  293. height: 100%;
  294. border: none;
  295. }
  296. .nav-addtabs.disable-top-badge > li > a > .pull-right-container {
  297. display: none;
  298. }
  299. .nav-addtabs > li {
  300. margin: 0;
  301. }
  302. .nav-addtabs > li > a {
  303. height: 50px;
  304. line-height: 50px;
  305. padding: 0 15px;
  306. border-radius: 0;
  307. border: none;
  308. border-right: 1px solid rgba(0, 0, 0, 0.05);
  309. margin: 0;
  310. color: #95a5a6;
  311. }
  312. .nav-addtabs > li > a:hover,
  313. .nav-addtabs > li > a:focus {
  314. border: none;
  315. color: #2c3e50;
  316. border-right: 1px solid rgba(0, 0, 0, 0.05);
  317. }
  318. .nav-addtabs > li.active > a {
  319. height: 50px;
  320. line-height: 50px;
  321. padding: 0 15px;
  322. border-radius: 0;
  323. border: none;
  324. border-right: 1px solid rgba(0, 0, 0, 0.05);
  325. background: #f1f4f6;
  326. color: #2c3e50;
  327. overflow: hidden;
  328. }
  329. .nav-addtabs > li.active > a:hover,
  330. .nav-addtabs > li.active > a:focus {
  331. border: none;
  332. color: #2c3e50;
  333. background: #f1f4f6;
  334. border-right: 1px solid rgba(0, 0, 0, 0.05);
  335. }
  336. .nav-addtabs > li .close-tab {
  337. font-size: 10px;
  338. position: absolute;
  339. right: 0px;
  340. top: 50%;
  341. margin-top: -8px;
  342. z-index: 100;
  343. cursor: pointer;
  344. color: #eee;
  345. display: none;
  346. }
  347. .nav-addtabs > li .close-tab:before {
  348. content: "\e626";
  349. font-family: iconfont;
  350. font-style: normal;
  351. font-weight: normal;
  352. text-decoration: inherit;
  353. font-size: 18px;
  354. }
  355. .nav-addtabs .open > a:hover,
  356. .nav-addtabs .open > a:focus {
  357. border-right: 1px solid rgba(0, 0, 0, 0.05);
  358. }
  359. .nav-addtabs ul li {
  360. position: relative;
  361. }
  362. .nav-addtabs li:hover > .close-tab {
  363. display: block;
  364. }
  365. .multiplenav .content-wrapper,
  366. .multiplenav .right-side {
  367. padding-top: 94px;
  368. }
  369. .multiplenav #firstnav .nav-addtabs {
  370. padding-right: 450px;
  371. }
  372. #firstnav {
  373. height: 50px;
  374. border-bottom: 1px solid transparent;
  375. box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
  376. position: relative;
  377. }
  378. #firstnav .sidebar-toggle {
  379. position: absolute;
  380. width: 45px;
  381. text-align: center;
  382. height: 50px;
  383. line-height: 50px;
  384. padding: 0;
  385. }
  386. #firstnav .nav-addtabs {
  387. position: absolute;
  388. left: 45px;
  389. z-index: 98;
  390. }
  391. #firstnav .navbar-custom-menu {
  392. position: absolute;
  393. top: 0;
  394. right: 0;
  395. z-index: 99;
  396. background: transparent;
  397. }
  398. /*次栏菜单栏*/
  399. #secondnav {
  400. height: 44px;
  401. position: absolute;
  402. top: 50px;
  403. left: 0;
  404. background: #fff;
  405. width: 100%;
  406. box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
  407. padding: 5px 10px;
  408. -webkit-user-select: none;
  409. -moz-user-select: none;
  410. user-select: none;
  411. }
  412. #secondnav .nav-addtabs {
  413. height: 100%;
  414. border: none;
  415. }
  416. #secondnav .nav-addtabs.disable-top-badge > li > a > .pull-right-container {
  417. display: none;
  418. }
  419. #secondnav .nav-addtabs > li {
  420. border: 1px solid #eee;
  421. border-radius: 3px;
  422. padding: 0 15px;
  423. height: 30px;
  424. line-height: 30px;
  425. margin: 2px 5px 2px 0;
  426. background: #fff;
  427. }
  428. #secondnav .nav-addtabs > li > a {
  429. display: block;
  430. color: #495060 !important;
  431. height: 100%;
  432. padding: 0;
  433. line-height: 28px;
  434. font-size: 12px;
  435. vertical-align: middle;
  436. opacity: 1;
  437. overflow: hidden;
  438. background: none;
  439. border: none;
  440. }
  441. #secondnav .nav-addtabs > li.active {
  442. border-color: #bdbebd;
  443. background-color: #f7f7f7;
  444. }
  445. #secondnav .nav-addtabs > li .close-tab {
  446. font-size: 10px;
  447. position: absolute;
  448. right: 0px;
  449. top: 50%;
  450. margin-top: -8px;
  451. z-index: 100;
  452. cursor: pointer;
  453. color: #eee;
  454. }
  455. #secondnav .nav-addtabs > li .close-tab:before {
  456. content: "\e626";
  457. font-family: iconfont;
  458. font-style: normal;
  459. font-weight: normal;
  460. text-decoration: inherit;
  461. font-size: 18px;
  462. }
  463. #secondnav .nav-addtabs > li:hover,
  464. #secondnav .nav-addtabs > li:focus {
  465. border-color: #bdbebd;
  466. }
  467. #secondnav .nav-addtabs ul li {
  468. position: relative;
  469. }
  470. #secondnav .nav-addtabs li:hover > .close-tab {
  471. display: block;
  472. border-color: #222e32;
  473. color: #222e32;
  474. }
  475. .main-sidebar .sidebar-form {
  476. overflow: visible;
  477. }
  478. .main-sidebar .sidebar-form .menuresult {
  479. z-index: 999;
  480. position: absolute;
  481. top: 34px;
  482. left: -1px;
  483. width: 100%;
  484. max-height: 250px;
  485. overflow: auto;
  486. margin: 0;
  487. border-top: none;
  488. border-top-left-radius: 0;
  489. border-top-right-radius: 0;
  490. }
  491. .main-sidebar .sidebar-form .menuresult a {
  492. border-top: 1px solid #eee;
  493. background-color: #fff;
  494. border-bottom: 1px solid #eee;
  495. margin-bottom: -1px;
  496. display: block;
  497. padding: 10px 15px;
  498. color: #222d32;
  499. }
  500. .main-sidebar .sidebar-form .menuresult a:hover {
  501. background: #eee;
  502. }
  503. .input-group .sp_result_area {
  504. width: 100%;
  505. }
  506. .sidebar-menu.show-submenu .treeview-menu {
  507. display: block;
  508. }
  509. .sidebar-menu > li .badge {
  510. margin-top: 0;
  511. }
  512. .sidebar-menu .treeview-menu > li > a {
  513. font-size: inherit;
  514. }
  515. .sidebar-collapse .user-panel > .image img {
  516. width: 25px;
  517. height: 25px;
  518. }
  519. @media (min-width: 768px) {
  520. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
  521. top: 41px;
  522. }
  523. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
  524. top: 7px !important;
  525. height: 17px;
  526. }
  527. }
  528. .fieldlist dd {
  529. display: block;
  530. margin: 5px 0;
  531. }
  532. .fieldlist dd input {
  533. display: inline-block;
  534. width: 300px;
  535. }
  536. .fieldlist dd input:first-child {
  537. width: 110px;
  538. }
  539. .fieldlist dd ins {
  540. width: 110px;
  541. display: inline-block;
  542. text-decoration: none;
  543. font-weight: bold;
  544. }
  545. /* 弹窗中的表单 */
  546. .form-layer {
  547. height: 100%;
  548. min-height: 150px;
  549. min-width: 300px;
  550. }
  551. .form-layer .form-body {
  552. width: 100%;
  553. overflow: auto;
  554. top: 0;
  555. position: absolute;
  556. z-index: 10;
  557. bottom: 50px;
  558. padding: 15px;
  559. }
  560. .form-layer .form-footer {
  561. height: 50px;
  562. line-height: 50px;
  563. background-color: #ecf0f1;
  564. width: 100%;
  565. position: absolute;
  566. z-index: 200;
  567. bottom: 0;
  568. margin: 0;
  569. }
  570. .form-layer .form-footer .form-group {
  571. margin-left: 0;
  572. margin-right: 0;
  573. }
  574. #treeview .jstree-container-ul .jstree-node {
  575. display: block;
  576. clear: both;
  577. }
  578. #treeview .jstree-leaf:not(:first-child) {
  579. float: left;
  580. background: none;
  581. margin-left: 0;
  582. min-width: 80px;
  583. clear: none;
  584. }
  585. #treeview .jstree-leaf {
  586. float: left;
  587. margin-left: 0;
  588. padding-left: 24px;
  589. min-width: 80px;
  590. clear: none;
  591. color: #777;
  592. }
  593. #treeview .jstree-leaf > .jstree-icon,
  594. #treeview .jstree-leaf .jstree-themeicon {
  595. display: none;
  596. }
  597. #treeview .jstree-last {
  598. background-image: url("../img/32px.png");
  599. background-position: -292px -4px;
  600. background-repeat: repeat-y;
  601. }
  602. #treeview .jstree-children:before,
  603. #treeview .jstree-children:after {
  604. content: " ";
  605. display: table;
  606. }
  607. #treeview .jstree-children:after {
  608. clear: both;
  609. }
  610. #treeview .jstree-themeicon {
  611. display: none;
  612. }
  613. /*去除bootstrap-table的边框*/
  614. .fixed-table-container {
  615. border: none !important;
  616. }
  617. /*修复nice-validator新版下的一处BUG*/
  618. .nice-validator input,
  619. .nice-validator select,
  620. .nice-validator textarea,
  621. .nice-validator [contenteditable] {
  622. vertical-align: top;
  623. display: inline-block;
  624. *display: inline;
  625. *zoom: 1;
  626. }
  627. /*修复nice-validator和summernote的编辑框冲突*/
  628. .nice-validator .note-editor .note-editing-area .note-editable {
  629. display: inherit;
  630. }
  631. /*预览区域*/
  632. .plupload-preview,
  633. .faupload-preview {
  634. padding: 0 10px;
  635. margin-bottom: 0;
  636. }
  637. .plupload-preview li,
  638. .faupload-preview li {
  639. margin-top: 15px;
  640. }
  641. .plupload-preview .thumbnail,
  642. .faupload-preview .thumbnail {
  643. margin-bottom: 10px;
  644. }
  645. .plupload-preview a,
  646. .faupload-preview a {
  647. display: block;
  648. }
  649. .plupload-preview a:first-child,
  650. .faupload-preview a:first-child {
  651. height: 90px;
  652. }
  653. .plupload-preview a img,
  654. .faupload-preview a img {
  655. height: 80px;
  656. object-fit: cover;
  657. }
  658. .pjax-loader-bar .progress {
  659. position: fixed;
  660. top: 0;
  661. left: 0;
  662. height: 2px;
  663. background: #77b6ff;
  664. box-shadow: 0 0 10px rgba(119, 182, 255, 0.7);
  665. -webkit-transition: width 0.4s ease;
  666. transition: width 0.4s ease;
  667. }
  668. .dropdown-menu.text-left a,
  669. .dropdown-menu.text-left li {
  670. text-align: left !important;
  671. }
  672. .bootstrap-table .fixed-table-toolbar .dropdown-menu {
  673. overflow: auto;
  674. }
  675. .bootstrap-table .fa-toggle-on.fa-2x {
  676. font-size: 1.86em;
  677. }
  678. .bootstrap-table .form-commonsearch .form-group {
  679. margin-left: 0;
  680. margin-right: 0;
  681. white-space: nowrap;
  682. }
  683. .toolbar {
  684. margin-top: 10px;
  685. margin-bottom: 10px;
  686. }
  687. .fixed-table-toolbar .bs-bars,
  688. .fixed-table-toolbar .columns,
  689. .fixed-table-toolbar .search {
  690. line-height: inherit;
  691. }
  692. .fixed-table-toolbar .toolbar {
  693. margin-top: 0;
  694. margin-bottom: 0;
  695. }
  696. .bootstrap-table table tbody tr:first-child td .bs-checkbox {
  697. vertical-align: middle;
  698. }
  699. .bootstrap-table td.bs-checkbox {
  700. vertical-align: middle;
  701. }
  702. table.table-nowrap tbody > tr > td,
  703. table.table-nowrap thead > tr > th {
  704. white-space: nowrap;
  705. }
  706. .fixed-table-container thead th .sortable {
  707. padding-right: 0;
  708. }
  709. .dropdown-submenu {
  710. position: relative;
  711. }
  712. .dropdown-submenu > .dropdown-menu {
  713. overflow: auto;
  714. top: 0;
  715. left: 100%;
  716. margin-top: -6px;
  717. margin-left: -1px;
  718. -webkit-border-radius: 0 6px 6px 6px;
  719. -webkit-background-clip: padding-box;
  720. -moz-border-radius: 0 6px 6px 6px;
  721. -moz-background-clip: padding;
  722. border-radius: 0 6px 6px 6px;
  723. background-clip: padding-box;
  724. }
  725. .dropdown-submenu:hover > .dropdown-menu {
  726. display: block;
  727. }
  728. .dropdown-submenu:hover > a:after {
  729. border-left-color: #fff;
  730. }
  731. .dropdown-submenu > a:after {
  732. display: block;
  733. content: " ";
  734. float: right;
  735. width: 0;
  736. height: 0;
  737. border-color: transparent;
  738. border-style: solid;
  739. border-width: 5px 0 5px 5px;
  740. border-left-color: #ccc;
  741. margin-top: 5px;
  742. margin-right: -10px;
  743. }
  744. .dropdown-submenu.pull-left {
  745. float: none;
  746. }
  747. .dropdown-submenu.pull-left > .dropdown-menu {
  748. left: -100%;
  749. margin-left: 10px;
  750. -webkit-border-radius: 6px 0 6px 6px;
  751. -webkit-background-clip: padding-box;
  752. -moz-border-radius: 6px 0 6px 6px;
  753. -moz-background-clip: padding;
  754. border-radius: 6px 0 6px 6px;
  755. background-clip: padding-box;
  756. }
  757. /*重写toast的几个背景色*/
  758. .toast-primary {
  759. background-color: #48c9b0 !important;
  760. }
  761. .toast-success {
  762. background-color: #18bc9c !important;
  763. }
  764. .toast-error {
  765. background-color: #e74c3c !important;
  766. }
  767. .toast-info {
  768. background-color: #5dade2 !important;
  769. }
  770. .toast-warning {
  771. background-color: #f1c40f !important;
  772. }
  773. .toast-inverse {
  774. background-color: #34495e !important;
  775. }
  776. .toast-default {
  777. background-color: #bdc3c7 !important;
  778. }
  779. #toast-container > div,
  780. #toast-container > div:hover {
  781. -webkit-box-shadow: 0 0 3px #eee;
  782. -moz-box-shadow: 0 0 3px #eee;
  783. box-shadow: 0 0 3px #eee;
  784. }
  785. .layui-layer-fast {
  786. /*自定义底部灰色操作区*/
  787. }
  788. .layui-layer-fast .layui-layer-title {
  789. background: #2c3e50 !important;
  790. color: #fff !important;
  791. border-bottom: none;
  792. }
  793. .layui-layer-fast .layui-layer-title ~ .layui-layer-setwin {
  794. top: 0px;
  795. height: 42px;
  796. }
  797. .layui-layer-fast .layui-layer-title ~ .layui-layer-setwin > a {
  798. height: 42px;
  799. line-height: 42px;
  800. display: inline-block;
  801. }
  802. .layui-layer-fast.layui-layer-border {
  803. border: none !important;
  804. box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3) !important;
  805. }
  806. .layui-layer-fast.layui-layer-iframe {
  807. overflow: visible;
  808. }
  809. .layui-layer-fast .layui-layer-moves {
  810. -webkit-box-sizing: content-box;
  811. -moz-box-sizing: content-box;
  812. box-sizing: content-box;
  813. }
  814. .layui-layer-fast .layui-layer-btn {
  815. text-align: center !important;
  816. padding: 10px !important;
  817. background: #ecf0f1;
  818. overflow: hidden;
  819. }
  820. .layui-layer-fast .layui-layer-btn a {
  821. background-color: #95a5a6;
  822. border-color: #95a5a6;
  823. color: #fff !important;
  824. height: 31px;
  825. margin-top: 0;
  826. border: 1px solid transparent;
  827. }
  828. .layui-layer-fast .layui-layer-btn .layui-layer-btn0 {
  829. background-color: #18bc9c;
  830. border-color: #18bc9c;
  831. }
  832. .layui-layer-fast .layui-layer-footer {
  833. padding: 8px 20px;
  834. background-color: #ecf0f1;
  835. height: auto;
  836. text-align: inherit !important;
  837. }
  838. .layui-layer-fast .layui-layer-setwin > a {
  839. background: none !important;
  840. }
  841. .layui-layer-fast .layui-layer-setwin > a cite {
  842. display: none;
  843. }
  844. .layui-layer-fast .layui-layer-setwin > a:after {
  845. content: "\e625";
  846. font-family: iconfont;
  847. font-style: normal;
  848. font-weight: normal;
  849. text-decoration: inherit;
  850. position: absolute;
  851. font-size: 18px;
  852. color: #fff;
  853. margin: 0;
  854. z-index: 1;
  855. }
  856. .layui-layer-fast .layui-layer-setwin > a:hover {
  857. text-decoration: none !important;
  858. background: none !important;
  859. }
  860. .layui-layer-fast .layui-layer-setwin > a:focus {
  861. text-decoration: none !important;
  862. }
  863. .layui-layer-fast .layui-layer-setwin .layui-layer-min {
  864. display: none;
  865. }
  866. .layui-layer-fast .layui-layer-setwin .layui-layer-min:after {
  867. content: "\e625";
  868. }
  869. .layui-layer-fast .layui-layer-setwin .layui-layer-max {
  870. display: none;
  871. }
  872. .layui-layer-fast .layui-layer-setwin .layui-layer-max:after {
  873. content: "\e623";
  874. }
  875. .layui-layer-fast .layui-layer-setwin .layui-layer-maxmin {
  876. display: none;
  877. }
  878. .layui-layer-fast .layui-layer-setwin .layui-layer-maxmin:after {
  879. content: "\e624";
  880. }
  881. .layui-layer-fast .layui-layer-setwin .layui-layer-close1:after {
  882. content: "\e626";
  883. }
  884. .layui-layer-fast .layui-layer-setwin .layui-layer-close2,
  885. .layui-layer-fast .layui-layer-setwin .layui-layer-close2:hover {
  886. background: url('../libs/fastadmin-layer/dist/theme/default/icon.png') no-repeat -149px -31px !important;
  887. top: -30px;
  888. right: -30px;
  889. }
  890. .layui-layer-fast .layui-layer-setwin .layui-layer-close2:after,
  891. .layui-layer-fast .layui-layer-setwin .layui-layer-close2:hover:after {
  892. display: none;
  893. }
  894. .layui-layer-content {
  895. clear: both;
  896. }
  897. .layui-layer-fast-msg {
  898. min-width: 100px;
  899. }
  900. .layui-layer-fast-tab .layui-layer-title .layui-this {
  901. color: #333;
  902. }
  903. .layui-layer-fast-tab .layui-layer-content .layui-layer-tabmain {
  904. margin: 0;
  905. padding: 0;
  906. }
  907. .input-group > .msg-box.n-right {
  908. position: absolute;
  909. }
  910. @media (min-width: 564px) {
  911. body.is-dialog .daterangepicker {
  912. min-width: 130px;
  913. }
  914. body.is-dialog .daterangepicker .ranges ul {
  915. width: 130px;
  916. }
  917. }
  918. /*手机版样式*/
  919. @media (max-width: 480px) {
  920. #firstnav .navbar-custom-menu ul li a {
  921. padding-left: 10px;
  922. padding-right: 10px;
  923. }
  924. #firstnav .navbar-nav > .user-menu .user-image {
  925. margin-top: -3px;
  926. }
  927. .fixed-table-toolbar .columns-right.btn-group {
  928. display: none;
  929. }
  930. .fixed .content-wrapper,
  931. .fixed .right-side {
  932. padding-top: 50px;
  933. }
  934. .multiplenav .fixed .content-wrapper,
  935. .multiplenav .fixed .right-side {
  936. padding-top: 94px;
  937. }
  938. .multiplenav .content-wrapper,
  939. .multiplenav .right-side {
  940. padding-top: 94px;
  941. }
  942. .main-sidebar,
  943. .left-side {
  944. padding-top: 144px;
  945. }
  946. }
  947. /*平板样式*/
  948. @media (max-width: 767px) {
  949. body .wrapper .main-header .logo {
  950. background: none;
  951. color: #fff;
  952. border-bottom: 0 solid transparent;
  953. position: absolute;
  954. top: 0;
  955. z-index: 1200;
  956. width: 130px;
  957. left: 50%;
  958. margin-left: -65px;
  959. }
  960. body .sidebar .mobilenav a.btn-app {
  961. color: #444;
  962. width: 100px;
  963. height: 70px;
  964. font-size: 13px;
  965. }
  966. body .sidebar .mobilenav a.btn-app i.fa {
  967. font-size: 24px;
  968. }
  969. body .sidebar .mobilenav a.btn-app span {
  970. margin-top: 5px;
  971. display: block;
  972. }
  973. body .sidebar .mobilenav a.btn-app.active {
  974. color: #222d32;
  975. }
  976. body .wrapper .main-header .navbar .dropdown-menu li > a {
  977. color: #333;
  978. }
  979. body .wrapper .main-header .navbar .dropdown-menu li > a:hover {
  980. background: #eee;
  981. }
  982. body .wrapper .main-header .navbar .dropdown-menu li.active > a {
  983. color: #fff;
  984. }
  985. body .wrapper .main-header .navbar .dropdown-menu li.active > a:hover {
  986. background: #222d32;
  987. }
  988. .main-sidebar,
  989. .left-side {
  990. padding-top: 50px;
  991. }
  992. .n-bootstrap .n-right {
  993. margin-top: 0;
  994. top: -20px;
  995. position: absolute;
  996. left: 0;
  997. text-align: right;
  998. width: 100%;
  999. }
  1000. .n-bootstrap .n-right .msg-wrap {
  1001. position: relative;
  1002. }
  1003. .n-bootstrap .col-xs-12 > .n-right .msg-wrap {
  1004. margin-right: 15px;
  1005. }
  1006. }
  1007. /*修复radio和checkbox样式对齐*/
  1008. .radio > label,
  1009. .checkbox > label {
  1010. margin-right: 10px;
  1011. }
  1012. .radio > label > input,
  1013. .checkbox > label > input {
  1014. margin: 2px 0 0;
  1015. }
  1016. .wipecache li a {
  1017. color: #444444 !important;
  1018. }
  1019. /*修正开关关闭下的颜色值*/
  1020. .btn-switcher.disabled {
  1021. opacity: .6;
  1022. cursor: not-allowed;
  1023. }
  1024. .btn-switcher .text-gray {
  1025. color: #d2d6de !important;
  1026. }
  1027. .jumpto input {
  1028. height: 31px;
  1029. width: 50px;
  1030. margin-left: 5px;
  1031. margin-right: 5px;
  1032. text-align: center;
  1033. display: inline-block;
  1034. }
  1035. .sidebar-menu li.treeview-open > a > .fa-angle-left,
  1036. .sidebar-menu li.treeview-open > a > .pull-right-container > .fa-angle-left {
  1037. -webkit-transform: rotate(-90deg);
  1038. -ms-transform: rotate(-90deg);
  1039. -o-transform: rotate(-90deg);
  1040. transform: rotate(-90deg);
  1041. }
  1042. /*# sourceMappingURL=backend.css.map */