backend.css 25 KB

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