userend.css 25 KB

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