backend.css 22 KB

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