backend.css 24 KB

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