| 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 { |
| SANDHYA.JS | 92379ec | 2025-06-13 17:29:35 +0530 | [diff] [blame^] | 21 | box-shadow: none; |
| 22 | border-radius: 2px; |
| 23 | border-color: $gray-600; |
| SANDHYA.JS | b772de0 | 2024-12-10 15:21:03 +0530 | [diff] [blame] | 24 | } |
| 25 | .form-check { |
| SANDHYA.JS | 92379ec | 2025-06-13 17:29:35 +0530 | [diff] [blame^] | 26 | padding-left: 30px; |
| SANDHYA.JS | b772de0 | 2024-12-10 15:21:03 +0530 | [diff] [blame] | 27 | } |
| 28 | .quotaCheck-label { |
| SANDHYA.JS | 92379ec | 2025-06-13 17:29:35 +0530 | [diff] [blame^] | 29 | position: absolute; |
| 30 | left: 26px; |
| SANDHYA.JS | b772de0 | 2024-12-10 15:21:03 +0530 | [diff] [blame] | 31 | } |
| 32 | .tooltip-icon { |
| SANDHYA.JS | 92379ec | 2025-06-13 17:29:35 +0530 | [diff] [blame^] | 33 | position: relative; |
| 34 | margin-left: 5px; |
| 35 | cursor: pointer; |
| 36 | } |
| 37 | .tooltip-icon .tooltip-text { |
| 38 | visibility: hidden; |
| 39 | width: 200px; |
| 40 | background-color: #fff; |
| 41 | color: #555; |
| 42 | text-align: center; |
| 43 | padding: 5px 10px; |
| 44 | border-radius: 4px; |
| 45 | @include border(all, 1, solid, $gray-300); |
| 46 | z-index: 1; |
| 47 | bottom: 125%; |
| 48 | left: 50%; |
| 49 | transform: translateX(-50%); |
| 50 | opacity: 0; |
| 51 | transition: opacity 0.3s; |
| 52 | } |
| 53 | .tooltip-icon:hover .tooltip-text { |
| 54 | visibility: visible; |
| 55 | opacity: 1; |
| 56 | } |
| 57 | .chip-input-container { |
| 58 | display: flex; |
| 59 | align-items: center; |
| 60 | flex-wrap: wrap; |
| 61 | border: 1px solid #e9ecef; |
| 62 | padding: 5px; |
| 63 | border-radius: 5px; |
| 64 | min-height: 38px; |
| 65 | width: 100%; |
| 66 | position: relative; |
| 67 | box-sizing: border-box; |
| 68 | } |
| 69 | .chip-input-container:focus-within { |
| 70 | border: 1px solid #afb5c1; |
| 71 | background-color: #f2f4f5; |
| 72 | } |
| 73 | .chips-wrapper { |
| 74 | display: flex; |
| 75 | align-items: center; |
| 76 | flex-wrap: wrap; |
| 77 | gap: 5px; |
| 78 | width: 100%; |
| 79 | } |
| 80 | .chip { |
| 81 | background: #007bff; |
| 82 | color: white; |
| 83 | padding: 5px 10px; |
| 84 | border-radius: 15px; |
| 85 | font-size: 14px; |
| 86 | display: flex; |
| 87 | align-items: center; |
| 88 | height: 28px; |
| 89 | white-space: nowrap; |
| 90 | } |
| 91 | .chip button { |
| 92 | background: none; |
| 93 | border: none; |
| 94 | color: white; |
| 95 | margin-left: 5px; |
| 96 | cursor: pointer; |
| 97 | font-size: 14px; |
| 98 | } |
| 99 | .chip-input { |
| 100 | border: none; |
| 101 | outline: none; |
| 102 | flex: 1; |
| 103 | min-width: 100px; |
| 104 | height: 28px; |
| 105 | padding: 4px; |
| 106 | background: transparent; |
| 107 | } |