main.css 16 KB

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