blob: 1fd08a8fedd0f16d4c5fa3c88b8312db68f32019 [file] [log] [blame]
kumaran.m3b4814a2020-05-01 19:48:54 +05301/*
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.JSb772de02024-12-10 15:21:03 +053017*/
18@import "../../../assets/scss/variable.scss";
19@import "../../../assets/scss/mixins/mixin";
20.quotacheck {
SANDHYA.JS92379ec2025-06-13 17:29:35 +053021 box-shadow: none;
22 border-radius: 2px;
23 border-color: $gray-600;
SANDHYA.JSb772de02024-12-10 15:21:03 +053024}
25.form-check {
SANDHYA.JS92379ec2025-06-13 17:29:35 +053026 padding-left: 30px;
SANDHYA.JSb772de02024-12-10 15:21:03 +053027}
28.quotaCheck-label {
SANDHYA.JS92379ec2025-06-13 17:29:35 +053029 position: absolute;
30 left: 26px;
SANDHYA.JSb772de02024-12-10 15:21:03 +053031}
32.tooltip-icon {
SANDHYA.JS92379ec2025-06-13 17:29:35 +053033 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}