backend.css 24 KB

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