main.css 15 KB

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