github.com/replicatedhq/ship@v0.55.0/web/init/src/scss/components/forms/select.scss (about)

     1  .Select {
     2    position: relative;
     3    width: 100%;
     4    background: #ffffff;
     5    border: 1px solid #C4C8CA;
     6    border-radius: 4px;
     7    font-size: 14px;
     8    color: #323232;
     9    line-height: normal;
    10    outline: none;
    11    height: 40px;
    12    cursor: pointer;
    13  }
    14  .Select.no-selection {
    15    color: #9B9B9B;
    16  }
    17  .Select.is-disabled {
    18    cursor: not-allowed;
    19    background-color: #F8F8F8;
    20    border-color: #DFDFDF;
    21    color: #717171;
    22  }