| /* |
| Copyright 2020 TATA ELXSI |
| |
| Licensed under the Apache License, Version 2.0 (the 'License'); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in) |
| */ |
| @use "sass:math"; |
| @import "/src/assets/scss/mixins/mixin.scss"; |
| @import "/src/assets/scss/variable.scss"; |
| .btn.active { |
| color: $gray-900; |
| background-color: $paleblue; |
| border-color: $paleblue; |
| } |
| .btn-light:hover { |
| color: $gray-900; |
| background-color: $paleblue; |
| border-color: $paleblue; |
| } |
| select.form-control { |
| background-color: $white !important; |
| padding: 0.375rem 1.75rem 0.375rem 0.75rem; |
| @include flexbox(inline-block, null, null, null, null, null); |
| vertical-align: middle; |
| background: $white |
| url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") |
| no-repeat right 0.75rem center; |
| background-size: 8px 10px; |
| @include border(all, 1, solid, $gray-200); |
| @include roundedCorners(2); |
| -webkit-appearance: none; |
| -moz-appearance: none; |
| appearance: none; |
| &::-ms-expand { |
| visibility: hidden; |
| } |
| } |