-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from catenax-ng/feature/CPLP-3576/StepperUpdates
feat(stepper): add tooltip in stepper
- v3.7.5
- v3.7.4
- v3.7.3
- v3.7.2
- v3.7.1
- v3.7.0
- v3.6.3
- v3.6.2
- v3.6.1
- v3.6.0
- v3.5.2
- v3.5.1
- v3.5.0
- v3.4.0
- v3.3.0
- v3.2.0
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.33
- v3.0.32
- v3.0.31
- v3.0.30
- v3.0.29
- v3.0.28
- v3.0.27
- v3.0.26
- v3.0.25
- v3.0.24
- v3.0.23
- v3.0.22
- v3.0.21
- v3.0.20
- v3.0.19
- v3.0.18
- v3.0.17
- v3.0.16
- v3.0.15
- v3.0.14
- v3.0.13
- v3.0.12
- v3.0.11
- v3.0.10
- v3.0.9
- v3.0.8
- v3.0.7
- v3.0.6
- v3.0.5
- v3.0.4
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0.0
- v2.1.45
- v2.1.44
- v2.1.42
- v2.1.41
- v2.1.40
- v2.1.39
- v2.1.38
- v2.1.37
- v2.1.36
- v2.1.35
- v2.1.34
- v2.1.33
- v2.1.32
- v2.1.31
- v2.1.30
- v2.1.29
- v2.1.28
- v2.1.27
- v2.1.26
- v2.1.25
- v2.1.24
- v2.1.23
- v2.1.22
- v2.1.21
- v2.1.20
- v2.1.19
- v2.1.18
- v2.1.17
- v2.1.16
- v2.1.15
Showing
6 changed files
with
308 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
/******************************************************************************** | ||
* Copyright (c) 2021, 2023 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
********************************************************************************/ | ||
|
||
.stepperMain { | ||
display: flex; | ||
|
||
.stepperStep { | ||
-webkit-flex: 1 0 0%; | ||
-ms-flex: 1 0 0%; | ||
flex: 1 0 0%; | ||
width: 100%; | ||
max-width: 100%; | ||
|
||
.stepHead { | ||
text-align: center; | ||
height: 100%; | ||
|
||
.hintStepMain { | ||
.hintStepMobile { | ||
display: none; | ||
} | ||
} | ||
|
||
.stepHeadline { | ||
width: 95px; | ||
margin: 0px auto 24px auto; | ||
min-height: 56px; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.stepperHint { | ||
display: flex; | ||
|
||
.hintStep { | ||
-webkit-flex: 1 0 0%; | ||
-ms-flex: 1 0 0%; | ||
flex: 1 0 0%; | ||
width: 100%; | ||
max-width: 100%; | ||
} | ||
} | ||
|
||
|
||
|
||
@media only screen and (max-width: 767px) { | ||
|
||
.stepperMain { | ||
display: inline-block; | ||
width: 100%; | ||
|
||
.stepperStep { | ||
margin-bottom: 12px; | ||
|
||
.stepHead { | ||
text-align: left; | ||
height: auto; | ||
|
||
.hintStepMain { | ||
display: flex; | ||
align-items: center; | ||
|
||
.hintStepMobile { | ||
display: inline-block; | ||
|
||
a { | ||
display: inline-flex; | ||
border-radius: 12px; | ||
padding: 6px 12px; | ||
background: var(--Interactive-Secondary, #EAF1FE); | ||
box-shadow: 0px 20px 40px 0px rgba(80, 80, 80, 0.30); | ||
margin-left: 10px; | ||
|
||
span { | ||
padding-bottom: 0; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.stepIcon { | ||
margin: 0; | ||
} | ||
|
||
.stepHeadline { | ||
width: 100%; | ||
margin: 10px auto 12px auto; | ||
min-height: auto; | ||
line-height: normal; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.stepperHint { | ||
display: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.