| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2020 TATA ELXSI |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the 'License'); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | |
| 16 | Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in) |
| SANDHYA.JS | b772de0 | 2024-12-10 15:21:03 +0530 | [diff] [blame] | 17 | */ |
| 18 | @import "../../../assets/scss/variable.scss"; |
| 19 | @import "../../../assets/scss/mixins/mixin"; |
| 20 | .quotacheck { |
| 21 | box-shadow: none; |
| 22 | border-radius: 2px; |
| 23 | border-color: $gray-600; |
| 24 | } |
| 25 | .form-check { |
| 26 | padding-left: 30px; |
| 27 | } |
| 28 | .quotaCheck-label { |
| 29 | position: absolute; |
| 30 | left: 26px; |
| 31 | } |
| 32 | .tooltip-icon { |
| 33 | position: relative; |
| 34 | margin-left: 5px; |
| 35 | cursor: pointer; |
| 36 | } |
| 37 | |
| 38 | .tooltip-icon .tooltip-text { |
| 39 | visibility: hidden; |
| 40 | width: 200px; |
| 41 | background-color: #fff; |
| 42 | color: #555; |
| 43 | text-align: center; |
| 44 | padding: 5px 10px; |
| 45 | border-radius: 4px; |
| 46 | @include border(all, 1, solid, $gray-300); |
| 47 | z-index: 1; |
| 48 | bottom: 125%; |
| 49 | left: 50%; |
| 50 | transform: translateX(-50%); |
| 51 | opacity: 0; |
| 52 | transition: opacity 0.3s; |
| 53 | } |
| 54 | |
| 55 | .tooltip-icon:hover .tooltip-text { |
| 56 | visibility: visible; |
| 57 | opacity: 1; |
| 58 | } |
| 59 | |