| 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) |
| 17 | */ |
| 18 | @import '../../../assets/scss/mixins/mixin'; |
| 19 | @import '../../../assets/scss/variable'; |
| 20 | |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame] | 21 | .close { |
| 22 | opacity: 1; |
| 23 | background-color: transparent; |
| 24 | border: 0; |
| 25 | position: absolute; |
| 26 | right: 10px; |
| 27 | top: 2px; |
| 28 | font-size: 1.31rem; |
| 29 | } |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 30 | .navbar{ |
| 31 | @include box-shadow(0px, 0px, 12px, 0px, rgba($black,0.14)); |
| 32 | @include border(all, 0, solid, $gray-80); |
| 33 | .osm-logo{ |
| 34 | cursor: pointer; |
| 35 | } |
| 36 | .custom-dropdown-menu { |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame] | 37 | background-color: white !important; |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 38 | .dropdown-item{ |
| 39 | &.project-item{ |
| 40 | @include flexbox(flex, space-between, row, null, center, null); |
| SANDHYA.JS | 1b17c43 | 2023-04-26 17:54:57 +0530 | [diff] [blame] | 41 | @include padding-value(10, 5, 10, 5); |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 42 | } |
| 43 | &:active, &:hover, &.active{ |
| 44 | @include background(null, $theme-bg-color, null, null, null); |
| 45 | color: $primary; |
| 46 | } |
| 47 | &.activeProject{ |
| 48 | cursor: default; |
| 49 | } |
| 50 | } |
| 51 | .custom-divider{ |
| 52 | @include wh-value(null, 0); |
| 53 | @include border(top, 2, solid, $primary); |
| 54 | overflow: hidden; |
| 55 | } |
| 56 | } |
| 57 | .osm-version{ |
| 58 | @include background(null, $theme-bg-color, null, null, null); |
| 59 | color: $primary; |
| 60 | cursor: default; |
| 61 | } |
| 62 | } |