backend.css 23 KB

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