app-form-json.less 847 字节
Newer Older
sq3536's avatar
sq3536 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
.app-form-json{
  .btn-secondary {
    color: black;
    background-color: transparent;
    border-color: transparent;
  }
  .form-control {
    display: block;
    height: calc(1.4em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
  }
  h3, .h3 {
    font-size: 14px;
    font-weight: 700;
    margin-top: 5px;
  }
  .row{
    > div {
      > div{
        display: flex;
      }
    }
  }
  .nav{
    display: block;
    > li{
      border-radius: 5px;
      padding: 5px;
      cursor: pointer;
      >
      a:hover{
        text-decoration: none;
      }
    }
    .active{
      background-color:#357AB3;
      > 
      a{
        color: #fff;
      }
      a:hover{
        color: #fff;
      }
    }
  }
  .control-label{
    min-width: 100px;
    display: inline-block;
  }
}