github.com/sl1pm4t/consul@v1.4.5-0.20190325224627-74c31c540f9c/ui/styles/_forms.scss (about) 1 .form-group { 2 .form-control { 3 @include transition(border-color .2s ease-in-out); 4 @include transition(box-shadow .2s ease-in-out); 5 @include transition(border-color .2s ease-in-out); 6 7 &.form-control-mini { 8 font-size: 12px; 9 } 10 } 11 12 &.valid { 13 .form-control { 14 border-color: $green-faded; 15 box-shadow: 0 0 5px $green-faded; 16 } 17 } 18 19 &.validate { 20 &.success { 21 .form-control { 22 border-color: $green-faded; 23 box-shadow: 0 0 5px $green-faded; 24 } 25 } 26 27 &.error { 28 .form-control { 29 border-color: $red-faded; 30 box-shadow: 0 0 5px $red-faded; 31 } 32 } 33 } 34 35 .input-group-addon { 36 background-color: $gray-background; 37 } 38 } 39 40 textarea.form-control { 41 font-family: monospace; 42 height: 130px; 43 -webkit-transform: translateZ(0); 44 } 45 46 .form-checkbox { 47 text-transform: uppercase; 48 font-weight: 600; 49 font-size: 12px; 50 color: $gray; 51 margin-left: 20px; 52 53 input { 54 margin-right: 5px; 55 } 56 }