backend.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  1. @import url("../css/bootstrap.min.css");
  2. @import url("../css/fastadmin.min.css");
  3. @import url("../css/skins/_all-skins.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/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/selectpage/selectpage.css");
  13. body {
  14. background: #f1f4f6;
  15. }
  16. body.is-dialog {
  17. background: #fff;
  18. }
  19. .selection {
  20. position: absolute;
  21. border: 1px solid #8B9;
  22. background-color: #BEC;
  23. }
  24. .main-header .logo,
  25. .main-header .navbar {
  26. -webkit-transition: none;
  27. -moz-transition: none;
  28. -o-transition: none;
  29. transition: none;
  30. }
  31. .main-header .navbar {
  32. position: relative;
  33. }
  34. .main-header .navbar .sidebar-toggle {
  35. position: absolute;
  36. width: 45px;
  37. text-align: center;
  38. }
  39. .main-header .navbar #nav {
  40. position: absolute;
  41. left: 45px;
  42. }
  43. .main-header .navbar .navbar-custom-menu {
  44. position: absolute;
  45. right: 0;
  46. }
  47. .note-dialog .modal {
  48. z-index: 1060;
  49. }
  50. .bootstrap-dialog .modal-dialog {
  51. /*width: 70%;*/
  52. max-width: 885px;
  53. }
  54. /*iOS兼容*/
  55. html.ios-fix,
  56. html.ios-fix body {
  57. height: 100%;
  58. overflow: auto;
  59. -webkit-overflow-scrolling: touch;
  60. }
  61. /*时间控件显示不全*/
  62. .content {
  63. min-height: 600px;
  64. }
  65. #header {
  66. background: #fff;
  67. box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
  68. }
  69. .content-wrapper {
  70. position: relative;
  71. }
  72. .control-relative {
  73. position: relative;
  74. }
  75. .tab-addtabs {
  76. overflow: hidden;
  77. }
  78. .tab-addtabs .tab-pane {
  79. height: 100%;
  80. width: 100%;
  81. }
  82. .row-between .col-xs-6 + .col-xs-6:before {
  83. content: "-";
  84. position: absolute;
  85. left: -2%;
  86. top: 6px;
  87. }
  88. @media only screen and (min-width: 481px) {
  89. .row-flex {
  90. display: flex;
  91. flex-wrap: wrap;
  92. }
  93. .row-flex > [class*='col-'] {
  94. display: flex;
  95. flex-direction: column;
  96. }
  97. .row-flex.row:after,
  98. .row-flex.row:before {
  99. display: flex;
  100. }
  101. }
  102. @media (max-width: 991px) {
  103. .main-header .navbar-custom-menu a.btn-danger {
  104. color: #fff;
  105. background-color: #e74c3c;
  106. }
  107. .main-header .navbar-custom-menu a.btn-primary {
  108. color: #fff;
  109. background-color: #2c3e50;
  110. }
  111. }
  112. .common-search-table {
  113. min-height: 20px;
  114. padding: 15px;
  115. margin-bottom: 15px;
  116. background-color: #f5f5f5;
  117. }
  118. .searchit {
  119. border-bottom: 1px dashed #3c8dbc;
  120. }
  121. /* 固定的底部按钮 */
  122. .fixed-footer {
  123. position: fixed;
  124. bottom: 0;
  125. background-color: #ecf0f1;
  126. width: 100%;
  127. margin-bottom: 0;
  128. padding: 10px;
  129. }
  130. /* 包裹在layer外层 */
  131. .layer-footer {
  132. display: none;
  133. }
  134. table.table-template {
  135. overflow: hidden;
  136. }
  137. .sp_container .msg-box {
  138. position: absolute;
  139. right: 0;
  140. top: 0;
  141. }
  142. .toast-top-right-index {
  143. top: 62px;
  144. right: 12px;
  145. }
  146. .bootstrap-select .status {
  147. background: #f0f0f0;
  148. clear: both;
  149. color: #999;
  150. font-size: 12px;
  151. font-weight: 500;
  152. line-height: 1;
  153. margin-bottom: -5px;
  154. padding: 10px 20px;
  155. }
  156. .img-center {
  157. margin: 0 auto;
  158. display: inline;
  159. float: none;
  160. }
  161. /*
  162. * RIBBON
  163. */
  164. #ribbon {
  165. overflow: hidden;
  166. padding: 15px 15px 0 15px;
  167. position: relative;
  168. }
  169. #ribbon a {
  170. color: #777 !important;
  171. text-decoration: none !important;
  172. }
  173. #ribbon .breadcrumb {
  174. display: inline-block;
  175. margin: 0;
  176. padding: 0;
  177. background: none;
  178. vertical-align: top;
  179. }
  180. #ribbon .breadcrumb > .active,
  181. #ribbon .breadcrumb li {
  182. color: #aaa;
  183. }
  184. #ribbon .shortcut a {
  185. margin-left: 10px;
  186. }
  187. .is-dialog #main {
  188. background: #fff;
  189. }
  190. form.form-horizontal .control-label {
  191. font-weight: normal;
  192. }
  193. .user-panel > .image img {
  194. width: 45px;
  195. height: 45px;
  196. }
  197. /*panel扩展描述样式*/
  198. .panel-intro {
  199. margin-bottom: 0;
  200. border: none;
  201. }
  202. .panel-intro > .panel-heading {
  203. padding: 15px;
  204. padding-bottom: 0;
  205. background: #e8edf0;
  206. border-color: #e8edf0;
  207. position: relative;
  208. }
  209. .panel-intro > .panel-heading .panel-lead {
  210. margin-bottom: 15px;
  211. }
  212. .panel-intro > .panel-heading .panel-lead em {
  213. display: block;
  214. font-weight: bold;
  215. font-style: normal;
  216. }
  217. .panel-intro > .panel-heading .panel-title {
  218. height: 25px;
  219. font-weight: normal;
  220. white-space: nowrap;
  221. overflow: hidden;
  222. text-overflow: ellipsis;
  223. }
  224. .panel-intro > .panel-heading .panel-control {
  225. height: 42px;
  226. position: absolute;
  227. top: 8px;
  228. right: 8px;
  229. }
  230. .panel-intro > .panel-heading .panel-control .fa {
  231. font-size: 14px;
  232. }
  233. .panel-intro > .panel-heading .nav-tabs {
  234. border-bottom: 0;
  235. margin-bottom: 0;
  236. }
  237. .panel-intro > .panel-heading .nav-tabs > li > a {
  238. margin-right: 4px;
  239. color: #95a5a6;
  240. background-color: #d8e0e6;
  241. border: 1px solid #e8edf0;
  242. border-bottom-color: transparent;
  243. }
  244. .panel-intro > .panel-heading .nav-tabs > li > a:hover,
  245. .panel-intro > .panel-heading .nav-tabs > li > a:focus {
  246. border: 1px solid #e8edf0;
  247. color: #7b8a8b;
  248. background-color: #c9d4dc;
  249. }
  250. .panel-intro > .panel-heading .nav-tabs > li.active > a,
  251. .panel-intro > .panel-heading .nav-tabs > li.active > a:hover,
  252. .panel-intro > .panel-heading .nav-tabs > li.active > a:focus {
  253. color: #7b8a8b;
  254. background-color: #ffffff;
  255. border-bottom-color: transparent;
  256. cursor: default;
  257. }
  258. /*单表格*/
  259. .panel-tabs .panel-heading {
  260. padding: 12px 15px 12px 15px;
  261. }
  262. .panel-tabs .panel-heading .panel-lead {
  263. margin-bottom: 0px;
  264. }
  265. /*选项卡*/
  266. .panel-nav .panel-heading {
  267. padding: 0px;
  268. padding-bottom: 0;
  269. background: #f1f4f6;
  270. border-color: #f1f4f6;
  271. }
  272. .panel-nav .nav-tabs > li > a {
  273. padding: 12px 15px;
  274. background-color: #e8edf0;
  275. border: 1px solid #f1f4f6;
  276. }
  277. .panel-nav .nav-tabs > li > a:hover,
  278. .panel-nav .nav-tabs > li > a:focus {
  279. border: 1px solid #e8edf0;
  280. background-color: #e8edf0;
  281. }
  282. .panel-nav .nav-tabs > li.active > a,
  283. .panel-nav .nav-tabs > li.active > a:hover,
  284. .panel-nav .nav-tabs > li.active > a:focus {
  285. border-color: #f1f4f6;
  286. border-bottom-color: transparent;
  287. }
  288. /*顶栏addtabs*/
  289. .nav-addtabs {
  290. border: none;
  291. display: none;
  292. }
  293. .nav-addtabs.disable-top-badge > li > a > .pull-right-container {
  294. display: none;
  295. }
  296. .nav-addtabs > li {
  297. margin: 0;
  298. }
  299. .nav-addtabs > li > a {
  300. height: 49px;
  301. line-height: 49px;
  302. padding: 0 15px;
  303. border-radius: 0;
  304. border: none;
  305. border-right: 1px solid rgba(0, 0, 0, 0.05);
  306. margin: 0;
  307. color: #95a5a6;
  308. }
  309. .nav-addtabs > li > a:hover,
  310. .nav-addtabs > li > a:focus {
  311. border: none;
  312. color: #2c3e50;
  313. border-right: 1px solid rgba(0, 0, 0, 0.05);
  314. }
  315. .nav-addtabs > li > a i {
  316. margin-right: 3px;
  317. }
  318. .nav-addtabs > li.active > a {
  319. height: 49px;
  320. line-height: 49px;
  321. padding: 0 15px;
  322. border-radius: 0;
  323. border: none;
  324. border-right: 1px solid rgba(0, 0, 0, 0.05);
  325. background: #f1f4f6;
  326. color: #2c3e50;
  327. overflow: hidden;
  328. }
  329. .nav-addtabs > li.active > a:hover,
  330. .nav-addtabs > li.active > a:focus {
  331. border: none;
  332. color: #2c3e50;
  333. border-right: 1px solid rgba(0, 0, 0, 0.05);
  334. background: #f1f4f6;
  335. }
  336. .nav-addtabs > li .close-tab {
  337. font-size: 10px;
  338. position: absolute;
  339. right: 5px;
  340. top: 50%;
  341. margin-top: -7px;
  342. z-index: 100;
  343. cursor: hand;
  344. cursor: pointer;
  345. color: #fff;
  346. display: none;
  347. }
  348. .nav-addtabs .open > a:hover,
  349. .nav-addtabs .open > a:focus {
  350. border-right: 1px solid rgba(0, 0, 0, 0.05);
  351. }
  352. .nav-addtabs ul li {
  353. position: relative;
  354. }
  355. .nav-addtabs li:hover > .close-tab {
  356. display: block;
  357. }
  358. .main-sidebar .sidebar-form {
  359. overflow: visible;
  360. }
  361. .main-sidebar .sidebar-form .menuresult {
  362. z-index: 999;
  363. position: absolute;
  364. top: 34px;
  365. left: -1px;
  366. width: 100%;
  367. max-height: 250px;
  368. overflow: auto;
  369. margin: 0;
  370. border-top: none;
  371. border-top-left-radius: 0;
  372. border-top-right-radius: 0;
  373. }
  374. .main-sidebar .sidebar-form .menuresult a {
  375. border-top: 1px solid #eee;
  376. background-color: #fff;
  377. border-bottom: 1px solid #eee;
  378. margin-bottom: -1px;
  379. display: block;
  380. padding: 10px 15px;
  381. color: #222d32;
  382. }
  383. .main-sidebar .sidebar-form .menuresult a:hover {
  384. background: #eee;
  385. }
  386. .input-group .sp_result_area {
  387. width: 100%;
  388. }
  389. .sidebar-menu.show-submenu .treeview-menu {
  390. display: block;
  391. }
  392. .sidebar-menu > li .badge {
  393. margin-top: 0;
  394. }
  395. .sidebar-collapse .user-panel > .image img {
  396. width: 25px;
  397. height: 25px;
  398. }
  399. @media (min-width: 768px) {
  400. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
  401. top: 41px;
  402. }
  403. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
  404. top: 7px!important;
  405. height: 17px;
  406. }
  407. }
  408. .fieldlist dd {
  409. display: block;
  410. margin: 5px 0;
  411. }
  412. .fieldlist dd input {
  413. display: inline-block;
  414. width: 300px;
  415. }
  416. .fieldlist dd input:first-child {
  417. width: 110px;
  418. }
  419. .fieldlist dd ins {
  420. width: 110px;
  421. display: inline-block;
  422. text-decoration: none;
  423. font-weight: bold;
  424. }
  425. #treeview .jstree-container-ul .jstree-node {
  426. display: block;
  427. clear: both;
  428. }
  429. #treeview .jstree-leaf:not(:first-child) {
  430. float: left;
  431. background: none;
  432. margin-left: 0;
  433. width: 80px;
  434. clear: none;
  435. }
  436. #treeview .jstree-leaf {
  437. float: left;
  438. margin-left: 0;
  439. padding-left: 24px;
  440. width: 80px;
  441. clear: none;
  442. color: #777;
  443. }
  444. #treeview .jstree-leaf > .jstree-icon,
  445. #treeview .jstree-leaf .jstree-themeicon {
  446. display: none;
  447. }
  448. #treeview .jstree-last {
  449. background-image: url("../img/32px.png");
  450. background-position: -292px -4px;
  451. background-repeat: repeat-y;
  452. }
  453. #treeview .jstree-children:before,
  454. #treeview .jstree-children:after {
  455. content: " ";
  456. display: table;
  457. }
  458. #treeview .jstree-children:after {
  459. clear: both;
  460. }
  461. #treeview .jstree-themeicon {
  462. display: none;
  463. }
  464. /*去除bootstrap-table的边框*/
  465. .fixed-table-container {
  466. border: none!important;
  467. }
  468. /*修复nice-validator新版下的一处BUG*/
  469. .nice-validator input,
  470. .nice-validator select,
  471. .nice-validator textarea,
  472. .nice-validator [contenteditable] {
  473. display: inline-block;
  474. *display: inline;
  475. *zoom: 1;
  476. }
  477. /*修复nice-validator和summernote的编辑框冲突*/
  478. .nice-validator .note-editor .note-editing-area .note-editable {
  479. display: inherit;
  480. }
  481. /*预览区域*/
  482. .plupload-preview {
  483. padding: 0 10px;
  484. margin-bottom: 0;
  485. }
  486. .plupload-preview li {
  487. margin-top: 15px;
  488. }
  489. .plupload-preview .thumbnail {
  490. margin-bottom: 10px;
  491. }
  492. .plupload-preview a {
  493. display: block;
  494. }
  495. .plupload-preview a:first-child {
  496. height: 90px;
  497. }
  498. .plupload-preview a img {
  499. height: 80px;
  500. object-fit: cover;
  501. }
  502. .pjax-loader-bar .progress {
  503. position: fixed;
  504. top: 0;
  505. left: 0;
  506. height: 2px;
  507. background: #77b6ff;
  508. box-shadow: 0 0 10px rgba(119, 182, 255, 0.7);
  509. -webkit-transition: width 0.4s ease;
  510. transition: width 0.4s ease;
  511. }
  512. .dropdown-menu.text-left a,
  513. .dropdown-menu.text-left li {
  514. text-align: left!important;
  515. }
  516. .bootstrap-table .fixed-table-toolbar .dropdown-menu {
  517. overflow: auto;
  518. }
  519. .toolbar {
  520. margin-top: 10px;
  521. margin-bottom: 10px;
  522. }
  523. .fixed-table-toolbar .bs-bars,
  524. .fixed-table-toolbar .columns,
  525. .fixed-table-toolbar .search {
  526. line-height: inherit;
  527. }
  528. .fixed-table-toolbar .toolbar {
  529. margin-top: 0;
  530. margin-bottom: 0;
  531. }
  532. .bootstrap-table table tbody tr:first-child td .bs-checkbox {
  533. vertical-align: middle;
  534. }
  535. .bootstrap-table td.bs-checkbox {
  536. vertical-align: middle;
  537. }
  538. .dropdown-submenu {
  539. position: relative;
  540. }
  541. .dropdown-submenu > .dropdown-menu {
  542. overflow: auto;
  543. top: 0;
  544. left: 100%;
  545. margin-top: -6px;
  546. margin-left: -1px;
  547. -webkit-border-radius: 0 6px 6px 6px;
  548. -webkit-background-clip: padding-box;
  549. -moz-border-radius: 0 6px 6px 6px;
  550. -moz-background-clip: padding;
  551. border-radius: 0 6px 6px 6px;
  552. background-clip: padding-box;
  553. }
  554. .dropdown-submenu:hover > .dropdown-menu {
  555. display: block;
  556. }
  557. .dropdown-submenu:hover > a:after {
  558. border-left-color: #fff;
  559. }
  560. .dropdown-submenu > a:after {
  561. display: block;
  562. content: " ";
  563. float: right;
  564. width: 0;
  565. height: 0;
  566. border-color: transparent;
  567. border-style: solid;
  568. border-width: 5px 0 5px 5px;
  569. border-left-color: #ccc;
  570. margin-top: 5px;
  571. margin-right: -10px;
  572. }
  573. .dropdown-submenu.pull-left {
  574. float: none;
  575. }
  576. .dropdown-submenu.pull-left > .dropdown-menu {
  577. left: -100%;
  578. margin-left: 10px;
  579. -webkit-border-radius: 6px 0 6px 6px;
  580. -webkit-background-clip: padding-box;
  581. -moz-border-radius: 6px 0 6px 6px;
  582. -moz-background-clip: padding;
  583. border-radius: 6px 0 6px 6px;
  584. background-clip: padding-box;
  585. }
  586. /*重写toast的几个背景色*/
  587. .toast-primary {
  588. background-color: #48c9b0!important;
  589. }
  590. .toast-success {
  591. background-color: #18bc9c!important;
  592. }
  593. .toast-error {
  594. background-color: #e74c3c!important;
  595. }
  596. .toast-info {
  597. background-color: #5dade2!important;
  598. }
  599. .toast-warning {
  600. background-color: #f1c40f!important;
  601. }
  602. .toast-inverse {
  603. background-color: #34495e!important;
  604. }
  605. .toast-default {
  606. background-color: #bdc3c7!important;
  607. }
  608. #toast-container > div,
  609. #toast-container > div:hover {
  610. -webkit-box-shadow: 0 0 3px #eee;
  611. -moz-box-shadow: 0 0 3px #eee;
  612. box-shadow: 0 0 3px #eee;
  613. }
  614. .layui-layer-fast {
  615. /*自定义底部灰色操作区*/
  616. }
  617. .layui-layer-fast .layui-layer-title {
  618. background: #2c3e50!important;
  619. color: #fff!important;
  620. border-bottom: none;
  621. }
  622. .layui-layer-fast .layui-layer-title ~ .layui-layer-setwin {
  623. top: 0px;
  624. height: 42px;
  625. }
  626. .layui-layer-fast .layui-layer-title ~ .layui-layer-setwin > a {
  627. height: 42px;
  628. line-height: 42px;
  629. display: inline-block;
  630. }
  631. .layui-layer-fast.layui-layer-border {
  632. border: none!important;
  633. box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3) !important;
  634. }
  635. .layui-layer-fast.layui-layer-iframe {
  636. overflow: visible;
  637. }
  638. .layui-layer-fast .layui-layer-moves {
  639. -webkit-box-sizing: content-box;
  640. -moz-box-sizing: content-box;
  641. box-sizing: content-box;
  642. }
  643. .layui-layer-fast .layui-layer-btn {
  644. text-align: center!important;
  645. padding: 10px!important;
  646. background: #ecf0f1;
  647. overflow: hidden;
  648. }
  649. .layui-layer-fast .layui-layer-btn a {
  650. background-color: #95a5a6!important;
  651. border-color: #95a5a6!important;
  652. color: #fff!important;
  653. }
  654. .layui-layer-fast .layui-layer-btn .layui-layer-btn0 {
  655. background-color: #18bc9c!important;
  656. border-color: #18bc9c!important;
  657. }
  658. .layui-layer-fast .layui-layer-footer {
  659. padding: 8px 20px;
  660. background-color: #ecf0f1;
  661. height: auto;
  662. text-align: inherit!important;
  663. }
  664. .layui-layer-fast .layui-layer-setwin > a {
  665. background: none!important;
  666. }
  667. .layui-layer-fast .layui-layer-setwin > a cite {
  668. display: none;
  669. }
  670. .layui-layer-fast .layui-layer-setwin > a:after {
  671. content: "\e625";
  672. font-family: iconfont;
  673. font-style: normal;
  674. font-weight: normal;
  675. text-decoration: inherit;
  676. position: absolute;
  677. font-size: 18px;
  678. color: #fff;
  679. margin: 0;
  680. z-index: 1;
  681. }
  682. .layui-layer-fast .layui-layer-setwin > a:hover {
  683. text-decoration: none!important;
  684. background: none!important;
  685. }
  686. .layui-layer-fast .layui-layer-setwin > a:focus {
  687. text-decoration: none!important;
  688. }
  689. .layui-layer-fast .layui-layer-setwin .layui-layer-min {
  690. display: none;
  691. }
  692. .layui-layer-fast .layui-layer-setwin .layui-layer-min:after {
  693. content: "\e625";
  694. }
  695. .layui-layer-fast .layui-layer-setwin .layui-layer-max {
  696. display: none;
  697. }
  698. .layui-layer-fast .layui-layer-setwin .layui-layer-max:after {
  699. content: "\e623";
  700. }
  701. .layui-layer-fast .layui-layer-setwin .layui-layer-maxmin {
  702. display: none;
  703. }
  704. .layui-layer-fast .layui-layer-setwin .layui-layer-maxmin:after {
  705. content: "\e624";
  706. }
  707. .layui-layer-fast .layui-layer-setwin .layui-layer-close1:after {
  708. content: "\e626";
  709. }
  710. .layui-layer-fast .layui-layer-setwin .layui-layer-close2,
  711. .layui-layer-fast .layui-layer-setwin .layui-layer-close2:hover {
  712. background: url('../libs/layer/dist/theme/default/icon.png') no-repeat -149px -31px !important;
  713. top: -30px;
  714. right: -30px;
  715. }
  716. .layui-layer-fast .layui-layer-setwin .layui-layer-close2:after,
  717. .layui-layer-fast .layui-layer-setwin .layui-layer-close2:hover:after {
  718. display: none;
  719. }
  720. .n-bootstrap .input-group > .n-right {
  721. position: absolute;
  722. }
  723. /*手机版样式*/
  724. @media (max-width: 480px) {
  725. .nav-addtabs {
  726. display: none;
  727. }
  728. .fixed-table-toolbar .columns-right.btn-group {
  729. display: none;
  730. }
  731. }
  732. /*平板样式*/
  733. @media (max-width: 768px) {
  734. .n-bootstrap .n-right {
  735. margin-top: 0;
  736. top: -20px;
  737. position: absolute;
  738. left: 0;
  739. text-align: right;
  740. width: 100%;
  741. }
  742. .n-bootstrap .n-right .msg-wrap {
  743. position: relative;
  744. }
  745. .n-bootstrap .col-xs-12 > .n-right .msg-wrap {
  746. margin-right: 15px;
  747. }
  748. }
  749. /*修复radio和checkbox样式对齐*/
  750. .radio > label,
  751. .checkbox > label {
  752. margin-right: 10px;
  753. }
  754. .radio > label > input,
  755. .checkbox > label > input {
  756. margin: 2px 0 0;
  757. }
  758. /*# sourceMappingURL=backend.css.map */