| 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 | 2657011 | 2024-07-05 21:35:46 +0530 | [diff] [blame] | 17 | */ |
| 18 | @import "../../../assets/scss/mixins/mixin"; |
| 19 | @import "../../../assets/scss/variable"; |
| 20 | |
| 21 | .custom-file-upload { |
| 22 | display: flex; |
| 23 | position: relative; |
| 24 | cursor: pointer; |
| 25 | overflow: hidden; |
| 26 | padding: 8px 12px; |
| 27 | color: $primary; |
| 28 | border: 1px solid; |
| 29 | border: 1px solid; |
| 30 | border-color: #054c8c; |
| 31 | border-radius: 4px; |
| 32 | width: 100%; |
| 33 | } |
| 34 | |
| 35 | .custom-file-upload input[type="file"] { |
| 36 | position: absolute; |
| 37 | left: 0; |
| 38 | top: 0; |
| 39 | opacity: 0; |
| 40 | cursor: pointer; |
| 41 | } |
| 42 | |
| 43 | .custom-file-upload span { |
| 44 | color: $primary; |
| 45 | width: 100%; |
| 46 | align-items: center; |
| 47 | } |