main.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928
  1. /*building SAAS 0.1*/
  2. /*bootstrap 初始化*/
  3. body {
  4. font-size: 0.9rem;
  5. overflow: hidden;
  6. background: #e4e7ea
  7. }
  8. .dropdown-menu {
  9. font-size: 0.9rem
  10. }
  11. .btn.disabled, .btn:disabled {
  12. color:#999
  13. }
  14. .btn,.btn-group {
  15. vertical-align: baseline;
  16. }
  17. .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
  18. background-color: #e4e7ea;
  19. color:#333;
  20. font-weight: 600
  21. }
  22. .custom-file-sm,.custom-file-sm .custom-file-label{
  23. height: calc(1.5em + .5rem + 2px);
  24. padding-top: .25rem;
  25. padding-bottom: .25rem;
  26. padding-left: .5rem;
  27. }
  28. .custom-file-sm .custom-file-label:after{
  29. height: calc(1.4em + .5rem + 2px);
  30. padding-top: .25rem;
  31. padding-bottom: .25rem;
  32. font-size: .875rem;
  33. }
  34. .custom-file-sm input{
  35. height: calc(1.5em + .5rem + 2px);
  36. font-size: .875rem;
  37. }
  38. .table th {
  39. background: #e9ecef;
  40. font-weight: normal;
  41. }
  42. .form-check,.form-check-label{
  43. cursor: pointer;
  44. line-height: 22px;
  45. }
  46. .input-group-text .group-checkbox[type="checkbox"],.input-group-text .group-checkbox[type="radio"]{
  47. margin-top: .3rem;
  48. }
  49. .custom-control {
  50. min-height: 1.2rem
  51. }
  52. .custom-control-label {
  53. cursor: pointer;
  54. }
  55. .popover {
  56. background-color: #000
  57. }
  58. .popover-body{
  59. color:#fff;
  60. }
  61. .bs-popover-auto[x-placement^="bottom"] .arrow::after, .bs-popover-bottom .arrow::after{
  62. border-bottom-color:#000;
  63. }
  64. /*在谷歌下移除input[number]的上下箭头*/
  65. input.nospin[type='number']::-webkit-outer-spin-button,
  66. input.nospin[type='number']::-webkit-inner-spin-button{
  67. -webkit-appearance: none !important;
  68. margin: 0;
  69. }
  70. /*在firefox下移除input[number]的上下箭头*/
  71. input.nospin[type="number"]{-moz-appearance:textfield;}
  72. /*自定义css*/
  73. .in-1{padding-left:5px!important}
  74. .in-2{padding-left:21px!important}
  75. .in-3{padding-left:42px!important}
  76. .in-4{padding-left:63px!important}
  77. .in-5{padding-left:84px!important}
  78. .in-6{padding-left:105px!important}
  79. /*滚动条*/
  80. /* 滚动条 */
  81. ::-webkit-scrollbar-thumb:horizontal { /*水平滚动条的样式*/
  82. width: 5px;
  83. background-color: #e9ecef;
  84. -webkit-border-radius: 0;
  85. }
  86. ::-webkit-scrollbar-track-piece {
  87. background-color: #efefef; /*滚动条的背景颜色*/
  88. -webkit-border-radius: 0; /*滚动条的圆角宽度*/
  89. }
  90. ::-webkit-scrollbar {
  91. width: 14px; /*滚动条的宽度*/
  92. height: 14px; /*滚动条的高度*/
  93. }
  94. ::-webkit-scrollbar-thumb:vertical { /*垂直滚动条的样式*/
  95. height: 50px;
  96. background-color: #e9ecef;
  97. -webkit-border-radius: 0;
  98. outline: 1px solid #fff;
  99. outline-offset: -1px;
  100. border: 1px solid #ced4da;
  101. }
  102. ::-webkit-scrollbar-thumb:hover { /*滚动条的hover样式*/
  103. height: 50px;
  104. background-color: #ced4da;
  105. -webkit-border-radius: 0;
  106. }
  107. .sjs-height-1,.sjs-height-2,.sjs-sh,.sjs-sh-1,.sjs-sh-2,.sjs-sh-3,.sjs-sh-4,.sjs-sh-5{
  108. overflow: hidden;
  109. }
  110. .sjs-height-4,.sjs-height-5,.sjs-height-6,.sjs-option-height{
  111. overflow: auto;
  112. }
  113. .sjs-bar-1,.sjs-bar-2,.sjs-bar-3,.sjs-bar-4{
  114. height:30px;
  115. padding-top:3px;
  116. }
  117. .sjs-bar{
  118. height:30px;
  119. padding-top:3px;
  120. }
  121. .sjs-bar .nav {
  122. margin-top:-3px;
  123. }
  124. .sjs-bottom{
  125. height:400px;
  126. overflow-y: auto;
  127. }
  128. .sjs-bottom-2{
  129. height:360px;
  130. overflow-y: auto;
  131. }
  132. .form-signin {
  133. max-width: 500px;
  134. margin: 150px auto;
  135. background: #fff;
  136. padding:30px;
  137. border:1px solid #ddd;
  138. border-radius: .25rem
  139. }
  140. .has-danger {
  141. -webkit-animation: shake 1s .2s ease both;
  142. -moz-animation: shake 1s .2s ease both;
  143. animation: shake 1s .2s ease both;
  144. }
  145. @-webkit-keyframes shake {
  146. 0%, 100% {
  147. -webkit-transform: translateX(0);
  148. }
  149. 10%, 30%, 50%, 70%, 90% {
  150. -webkit-transform: translateX(-10px);
  151. }
  152. 20%, 40%, 60%, 80% {
  153. -webkit-transform: translateX(10px);
  154. }
  155. }
  156. @-moz-keyframes shake {
  157. 0%, 100% {
  158. -moz-transform: translateX(0);
  159. }
  160. 10%, 30%, 50%, 70%, 90% {
  161. -moz-transform: translateX(-10px);
  162. }
  163. 20%, 40%, 60%, 80% {
  164. -moz-transform: translateX(10px);
  165. }
  166. }
  167. @keyframes shake {
  168. 0%, 100% {
  169. transform: translateX(0);
  170. }
  171. 10%, 30%, 50%, 70%, 90% {
  172. transform: translateX(-10px);
  173. }
  174. 20%, 40%, 60%, 80% {
  175. transform: translateX(10px);
  176. }
  177. }
  178. /*2.主体框架*/
  179. .header {
  180. background:#fff;
  181. position: fixed;
  182. z-index: 10;
  183. width: 100%;
  184. height: 50px;
  185. top: 0;
  186. left: 0
  187. }
  188. .main{
  189. position: relative;
  190. z-index: 4;
  191. }
  192. .main-nav {
  193. position: fixed;
  194. z-index: 99;
  195. width:55px;
  196. left: 0;
  197. top: 0;
  198. height: 100%;
  199. background: #33425b;
  200. }
  201. .main-panel{
  202. padding-left:55px;
  203. box-sizing: border-box;
  204. }
  205. .panel-sidebar{
  206. box-sizing: border-box;
  207. background: #fbfcfd;
  208. position: fixed;
  209. height: 100%;
  210. z-index: 4;
  211. left:55px;
  212. padding-top:50px;
  213. border-right: 1px solid #ddd;
  214. width: 200px;
  215. }
  216. .side-fold{
  217. position: absolute;
  218. bottom:10px;
  219. right:20px;
  220. }
  221. .min-side .side-fold{
  222. position: absolute;
  223. bottom:15px;
  224. right:5px;
  225. height: 20px
  226. }
  227. .min-side{
  228. border-right: 1px solid #ddd;
  229. margin-right:10px;
  230. padding-right:15px;
  231. position: relative;
  232. }
  233. .min-side .side-switch i{
  234. font-size: 20px
  235. }
  236. .min-side .side-menu{
  237. position: absolute;
  238. left:-15px;
  239. top:50px;
  240. background:#fff;
  241. width:150px;
  242. border-right:1px solid #ddd;
  243. border-bottom:1px solid #ddd;
  244. box-shadow: 0 1px 3px rgba(0,0,0,.1);
  245. }
  246. .panel-content{
  247. padding:65px 0 0;
  248. position: relative;
  249. z-index: 3;
  250. box-sizing: border-box;
  251. overflow-y: auto;
  252. height: 100vh;
  253. }
  254. .panel-content .content-wrap{
  255. margin:0 15px 15px;
  256. position: relative;
  257. }
  258. .panel-sidebar+.panel-content{
  259. padding: 65px 0 0 200px;
  260. }
  261. .panel-title, .panel-title>.title-bar {
  262. height:50px;
  263. line-height: 50px
  264. }
  265. .panel-title .dropdown-item,.panel-title .dropdown-item-text,.panel-title .form-group {
  266. line-height: normal;
  267. }
  268. .panel-title{
  269. position: fixed;
  270. top:0px;
  271. z-index: 98;
  272. width: 100%;
  273. box-sizing: border-box;
  274. background: #fff;
  275. box-shadow: 0 1px 3px rgba(0,0,0,.05);
  276. border-top: 1px solid #ddd;
  277. }
  278. .panel-sidebar .panel-title{
  279. width:200px;
  280. border-right: 1px solid #ddd;
  281. box-shadow: 0 1px 3px rgba(0,0,0,.1);
  282. }
  283. .panel-content .panel-title{
  284. left: 0;
  285. padding-left: 255px;
  286. padding-right: 20px;
  287. }
  288. .panel-content .panel-title.fluid{
  289. padding-left:55px
  290. }
  291. .panel-title>.title-bar{
  292. padding-left: 20px
  293. }
  294. .panel-title>.title-bar>h2,.panel-title>.title-main>h2{
  295. font-size: 16px;
  296. margin:0;
  297. height: 50px;
  298. line-height: 50px;
  299. display:block
  300. }
  301. .panel-title>.title-bar>h2 .btn{
  302. margin-right:15px
  303. }
  304. .panel-title>.title-main .btn.pull-right {
  305. margin:10px 0 0 10px
  306. }
  307. .panel-title>.title-main .form-control {
  308. margin:10px 0 0 0
  309. }
  310. .panel-title>.title-main{
  311. padding-left: 15px
  312. }
  313. .panel-title .alert {
  314. line-height: normal;
  315. z-index: 999
  316. }
  317. .side-menu{
  318. position: fixed;
  319. right:15px;
  320. top:65px
  321. }
  322. .side-menu .nav-link{
  323. line-height: 16px;
  324. font-size: 14px;
  325. color:#007bff;
  326. }
  327. .side-menu .nav-link:hover{
  328. background:#dcdee3;
  329. color:#333;
  330. }
  331. .sub-content{
  332. margin:0;
  333. }
  334. .pr-46{
  335. padding-right:36px
  336. }
  337. .bcontent-wrap{
  338. height: 350px
  339. }
  340. @media only screen and (max-height: 768px) {
  341. .bcontent-wrap{
  342. height: 250px
  343. }
  344. }
  345. .modal-xl {
  346. max-width: 1200px
  347. }
  348. /*滚动*/
  349. .scrollbar-auto {
  350. overflow-y: auto;
  351. position: absolute;
  352. bottom: 0;
  353. left: 0;
  354. top: 0;
  355. right: 0;
  356. }
  357. .panel-sidebar .scrollbar-auto{
  358. padding-top: 20px;
  359. box-sizing: border-box;
  360. }
  361. .panel-sidebar .scrollbar-auto {
  362. height: 100%;
  363. width: 100%;
  364. overflow-y: auto;
  365. position: static;
  366. }
  367. /*结构宽度高度调整条*/
  368. .resize-y{
  369. height:5px;
  370. width:100%;
  371. float: left;
  372. margin-top:-5px;
  373. cursor: s-resize;
  374. z-index: 999
  375. }
  376. .resize-x{
  377. width:5px;
  378. height:100%;
  379. float: left;
  380. margin-left:-5px;
  381. cursor: w-resize;
  382. z-index: 999
  383. }
  384. /*头部*/
  385. .header .logo {
  386. float: left;
  387. box-shadow: 1px 0 6px rgba(0,0,0,.06);
  388. margin-right: 20px;
  389. margin:0
  390. }
  391. .header .logo>a{
  392. width:120px;
  393. height:50px;
  394. line-height: 50px;
  395. display: inline-block;
  396. color:#fff;
  397. font-size:24px;
  398. padding:0 10px;
  399. transition: all ease .4s;
  400. background:#207fd1 url(logo.png) no-repeat;
  401. text-indent: -9999px;
  402. vertical-align: top
  403. }
  404. .header .logo>a:hover{
  405. background-color:#5596cf;
  406. text-decoration: none;
  407. }
  408. .header-user > div {
  409. float:left
  410. }
  411. .avatar .pic {
  412. height: 35px;
  413. width: 35px;
  414. border-radius: 100%;
  415. display: inline-block;
  416. float:left;
  417. margin:7px 7px 0 0
  418. }
  419. .avatar .pic img{
  420. display: block;
  421. width: 100%;
  422. height: 100%;
  423. border-radius: 100%;
  424. }
  425. .avatar > a,.msg >a{
  426. display: block;
  427. height:50px;
  428. line-height: 50px;
  429. color:#666;
  430. padding:0 15px;
  431. cursor: pointer;
  432. }
  433. .avatar > a:hover,.msg > a:hover{
  434. text-decoration: none;
  435. box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
  436. }
  437. .header-user .msg{
  438. border-left:1px solid #eee
  439. }
  440. .header-user .msg .glyphicon{
  441. font-size:20px;
  442. vertical-align: middle;
  443. }
  444. .header-user .msg .badge{
  445. margin:0 0 0 5px
  446. }
  447. .header .poj-name {
  448. float:left;
  449. padding:0 0 0 15px;
  450. font-size:18px
  451. }
  452. .header .poj-name a{
  453. color:#666
  454. }
  455. .header .poj-name > span{
  456. height:50px;
  457. line-height:50px;
  458. }
  459. /*登陆相关*/
  460. .login-body{
  461. background:linear-gradient(#33425b,#192948);
  462. height:960px
  463. }
  464. .login-infoinput {
  465. margin-top:15%
  466. }
  467. /*侧栏主菜单*/
  468. .nav-top,.nav-bottom{
  469. width: 55px
  470. }
  471. .bg-nav a{
  472. color:#7786ab;
  473. width:55px;
  474. text-align: center;
  475. display: inline-block;
  476. padding:15px 0;
  477. font-size: 12px
  478. }
  479. .bg-nav a i{
  480. font-size:22px;
  481. }
  482. .bg-nav a span{
  483. display: none;
  484. }
  485. .bg-nav > li{
  486. width:120px
  487. }
  488. .bg-nav > li.active{
  489. background: #192948
  490. }
  491. .bg-nav > li.active a{
  492. border-radius: 0;
  493. background: #192948
  494. }
  495. .bg-nav > li > a:hover,.bg-nav > li.active > a:hover{
  496. background: #192948;
  497. color:#f2f2f2;
  498. text-decoration: none;
  499. }
  500. .bg-nav > li.active a span{
  501. display: block;
  502. }
  503. .bg-nav > li + li {
  504. margin-top:0;
  505. }
  506. .bg-nav .sub-menu {
  507. list-style:none;
  508. padding:0 0 0 20px;
  509. width:120px;
  510. display: none
  511. }
  512. .bg-nav .sub-menu a {
  513. width:100px;
  514. height:30px;
  515. line-height:30px
  516. }
  517. .bg-nav .sub-menu:last-child{
  518. margin:0 0 20px 0
  519. }
  520. .bg-nav .menu-arrow{
  521. margin:22px 8px 0 0
  522. }
  523. .nav-box h3{
  524. font-size: 14px;
  525. font-weight: 700;
  526. padding-bottom: 4px;
  527. border-bottom: 1px solid #e2eaec;
  528. padding-right: 15px;
  529. margin-bottom: 10px;
  530. margin-left: 17px
  531. }
  532. .nav-box > .sub-list > li > a{
  533. padding-left: 40px
  534. }
  535. .nav-box .tips-dot {
  536. right:20px;
  537. top:8px
  538. }
  539. .nav-box .nav-list li{
  540. position: relative;
  541. }
  542. .contarl-box{
  543. padding:1rem 2rem 1rem 2rem;
  544. border-top:1px solid #ddd;
  545. }
  546. .nav-list li a{
  547. color: #333;
  548. display: block;
  549. height: 35px;
  550. line-height: 35px;
  551. box-sizing: border-box;
  552. padding-left: 17px;
  553. padding-right: 45px;
  554. text-overflow: ellipsis;
  555. position: relative;
  556. }
  557. .nav-list li a:hover{
  558. text-decoration: none;
  559. background:#e4e7ea;
  560. cursor: pointer;
  561. }
  562. .nav-list li a .badge{
  563. position: absolute;
  564. right:17px;
  565. top:9px
  566. }
  567. .nav-list li.active a{
  568. background:#e4e7ea;
  569. font-weight: 600
  570. }
  571. .side-menu .nav-link{
  572. padding:.5rem .6rem;
  573. }
  574. /*内容区*/
  575. .c-header {
  576. padding:0 0 5px
  577. }
  578. .c-body{
  579. padding:1px;
  580. background:#fff;
  581. }
  582. .right-nav{
  583. width:36px
  584. }
  585. .right-nav .nav-link.active{
  586. background: #fff;
  587. color:#495057
  588. }
  589. .form-group .necessary{
  590. font-size:18px;
  591. color:#f90000
  592. }
  593. .bg-gray {
  594. background-color:#bbb!important;
  595. }
  596. .datepickers-container {
  597. z-index: 9999
  598. }
  599. .modal-height-500{
  600. height:450px;
  601. overflow: hidden
  602. }
  603. .modal-height-300{
  604. height:300px;
  605. overflow:auto
  606. }
  607. .modal-lgx {
  608. max-width:1000px
  609. }
  610. .title-main .nav{
  611. line-height: 16px;
  612. margin-top:8px
  613. }
  614. /*草图编辑器*/
  615. .img-view{
  616. height:400px;
  617. border:.2rem solid #ccc;
  618. position: relative;
  619. width:100%;
  620. overflow: hidden;
  621. }
  622. .img-view::after{
  623. content:"草图编辑区";
  624. color:#ddd;
  625. position: absolute;
  626. left:50%;
  627. top:50%;
  628. margin-left:-80px;
  629. margin-top:-24px;
  630. font-size:36px
  631. }
  632. .img-view .img-item{
  633. position: absolute;
  634. }
  635. .img-view .img-item .img-bar{
  636. position:absolute;
  637. right:0;
  638. top:0;
  639. display:none
  640. }
  641. .img-item:hover .img-bar{
  642. display: block;
  643. }
  644. .batch-l-t,.batch-l-b{
  645. height: 200px;
  646. overflow: hidden
  647. }
  648. .batch-r {
  649. height:400px;
  650. overflow: hidden
  651. }
  652. /*打印工具栏*/
  653. .print-toolsbar{
  654. padding-bottom:5px
  655. }
  656. .print-toolsbar .panel {
  657. display:inline-block;
  658. vertical-align:top;
  659. background:#f7f7f9
  660. }
  661. .print-toolsbar .panel .panel-foot{
  662. text-align: center;
  663. font-size: 12px
  664. }
  665. .print-list {
  666. border-right:1px solid #ccc
  667. }
  668. .print-list .form-list {
  669. overflow: auto
  670. }
  671. .print-list .list-tools{
  672. height:50px;
  673. padding:10px 0;
  674. border-bottom:1px solid #f2f2f2
  675. }
  676. .pageContainer {
  677. background: #ededed;
  678. text-align: center
  679. }
  680. .pageContainer .page{
  681. border:9px solid transparent;
  682. display: inline-block;
  683. }
  684. .pageContainer .page img{
  685. width:inherit;
  686. height: inherit;
  687. }
  688. .pageContainer canvas{
  689. background: #fff
  690. }
  691. .m-close-side{
  692. position: absolute;
  693. right:-1px;
  694. top:250px;
  695. background: #f2f2f2;
  696. padding:30px 3px;
  697. }
  698. .m-close-side:hover{
  699. background:#eae9e9;
  700. }
  701. .baobiao-close-side{
  702. position: absolute;
  703. left:15px;
  704. top:250px;
  705. background: #e1e1e1
  706. }
  707. .baobiao-close-side a{
  708. color:#007bff;
  709. height:80px;
  710. line-height: 80px;
  711. display: inline-block
  712. }
  713. .baobiao-close-side:hover{
  714. background:#007bff;
  715. }
  716. .baobiao-close-side:hover a{
  717. color:#fff;
  718. }
  719. .flowtoolsbar{
  720. display:none;
  721. position: absolute;
  722. bottom: 0;
  723. left:50%;
  724. margin-left:-110px;
  725. background-color: #33425b
  726. }
  727. .showtoolsbar:hover .flowtoolsbar{
  728. display: block
  729. }
  730. .edit-tag-btn{
  731. display: none
  732. }
  733. .tag-item:hover .edit-tag-btn{
  734. display: block
  735. }
  736. /*电子签名*/
  737. .add-sign-list-item{
  738. padding:.5rem .5rem .5rem 1rem;
  739. }
  740. .add-sign-list-item:hover{
  741. box-shadow:0 0 3px rgba(0,0,0,.18)
  742. }
  743. .add-sign-list-item .btn-link {
  744. display: none
  745. }
  746. .add-sign-list-item:hover .btn-link {
  747. display: block
  748. }
  749. /*标段类表折叠收起*/
  750. .fold-switch {
  751. cursor: pointer;
  752. }
  753. .fold-switch:hover{
  754. color:#0056b3;
  755. }
  756. /*界面紧凑相关代码*/
  757. body{
  758. font-size:12px;
  759. }
  760. .btn-group-sm > .btn, .btn-sm{
  761. font-size: 12px;
  762. padding:1px 0.6rem;
  763. }
  764. .panel-title, .panel-title > .title-bar{
  765. height:34px;
  766. line-height: 30px;
  767. }
  768. .panel-title > .title-main .btn.pull-right {
  769. margin: 5px 0 0 0
  770. }
  771. .panel-content{
  772. padding-top:35px;
  773. overflow: hidden
  774. }
  775. .panel-content .content-wrap{
  776. margin:0;
  777. }
  778. .table td, .table th {
  779. padding:.3rem;
  780. }
  781. .form-control-sm {
  782. font-size:12px;
  783. padding-top:.1rem;
  784. }
  785. label{
  786. margin-bottom:.3rem;
  787. color:#757575;
  788. }
  789. .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
  790. padding-left:.5rem;
  791. background: #f2f2f280
  792. }
  793. .invalid-feedback{
  794. font-size:100%;
  795. }
  796. .modal-header{
  797. padding:.5rem 1rem
  798. }
  799. .modal-title{
  800. font-size:16px;
  801. }
  802. .modal-footer {
  803. padding:.5rem 1rem
  804. }
  805. .modal-body h6,.modal-body h5{
  806. font-size:12px;
  807. }
  808. .panel-title > .title-bar{
  809. padding-left:10px;
  810. }
  811. .panel-sidebar .panel-title{
  812. width:120px;
  813. }
  814. .panel-title > .title-bar > h2, .panel-title > .title-main > h2{
  815. height:34px;
  816. line-height: 34px;
  817. font-size: 12px
  818. }
  819. .panel-title > .title-main .form-control {
  820. margin: 4px 0 0 0;
  821. }
  822. .panel-sidebar {
  823. width:120px;
  824. }
  825. .panel-sidebar .scrollbar-auto{
  826. padding-top:0;
  827. }
  828. .nav-list li a{
  829. padding-right:0px;
  830. height:30px;
  831. line-height: 30px
  832. }
  833. .nav-box h3{
  834. margin-left:12px;
  835. }
  836. .nav-box > .sub-list > li > a{
  837. padding-left:32px;
  838. }
  839. .panel-sidebar + .panel-content{
  840. padding:35px 0 0 120px;
  841. overflow: hidden;
  842. }
  843. .contarl-box{
  844. padding:1rem 1rem;
  845. }
  846. .min-side .side-menu {
  847. top:34px;
  848. }
  849. .panel-content .panel-title{
  850. padding-left:175px;
  851. background: linear-gradient( #ccc,2%, #ffffff);
  852. }
  853. .nav-link{
  854. padding:.3rem .5rem;
  855. }
  856. .side-menu .nav-link{
  857. font-size:12px;
  858. }
  859. legend {
  860. font-size:16px;
  861. }
  862. .input-group-sm > .custom-select, .input-group-sm > .form-control:not(textarea) {
  863. height: calc(1.4125rem + 2px);
  864. }
  865. .input-group-sm>.form-control, .input-group-sm>.input-group-append>.btn, .input-group-sm>.input-group-append>.input-group-text, .input-group-sm>.input-group-prepend>.btn, .input-group-sm>.input-group-prepend>.input-group-text{
  866. height: calc(1.4125rem + 2px);
  867. }
  868. .input-group-sm > .custom-select, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
  869. font-size:12px;
  870. padding:.1rem .5rem;
  871. }
  872. .side-menu{
  873. right:0;
  874. top:35px;
  875. }
  876. .custom-control-label::before{
  877. top:.1rem;
  878. }
  879. .custom-control-label::after{
  880. top:.1rem;
  881. }
  882. .form-control-sm{
  883. height:calc(1.4125rem + 2px);
  884. }
  885. .form-group {
  886. margin-bottom:.5rem;
  887. }
  888. .badge{
  889. font-size:100%;
  890. }
  891. .sjs-height-0{
  892. overflow: auto;
  893. }
  894. .nav-box h3{
  895. margin-bottom:5px;
  896. }
  897. .min-side .side-menu{
  898. padding-bottom:10px;
  899. }
  900. .side-fold {
  901. right:50px;
  902. bottom:20px;
  903. }
  904. .side-fold a{
  905. font-size:24px;
  906. }
  907. .min-side {
  908. padding-bottom:5px;
  909. }
  910. .min-side .side-fold{
  911. bottom:10px;
  912. }
  913. .min-side .side-fold a{
  914. font-size:18px;
  915. }
  916. .form-text{
  917. font-size:12px;
  918. }
  919. .btn-sm .badge{
  920. font-size:10px;
  921. padding:.2em .4em;
  922. top:0;
  923. }
  924. .custom-switch .custom-control-label::after{
  925. top:.25rem;
  926. }