Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 1 | .input-options { |
| 2 | display: flex; |
| 3 | border: 1px solid $light-gray; |
| 4 | border-radius: 2px; |
| 5 | height: 30px; |
| 6 | &:hover { |
| 7 | border-color: $gray; |
| 8 | } |
| 9 | .input-options-select { |
| 10 | float: left; |
| 11 | border: none; |
| 12 | transition-property: width; |
| 13 | transition-duration: 300ms; |
| 14 | padding-top:0px; |
| 15 | padding-bottom: 0px; |
| 16 | height:28px; |
| 17 | } |
| 18 | |
| 19 | .input-options-other{ |
| 20 | float: left; |
| 21 | height: 30px; |
| 22 | border: none; |
| 23 | padding-top:0px; |
| 24 | padding-bottom: 0px; |
| 25 | height:28px; |
| 26 | } |
| 27 | .input-options-separator { |
| 28 | width: 1px; |
| 29 | height: 24px; |
| 30 | margin-top: 2px; |
| 31 | margin-bottom: 2px; |
| 32 | border:1px solid $light-gray; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | .input-options.has-error { |
| 37 | border-color: #A94442; |
| 38 | } |
| 39 | |