-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Endret en del av dolly komponenter og ikoner til å benytte designbibl…
…ioteket istedenfor egne varianter Fikset på breddevisningen dersom man har veldig høy oppløsning Fikset kalenderkomponent til at kalender ikon ikke absorberer klikk, men heller åpner datepicker
- Loading branch information
Showing
23 changed files
with
373 additions
and
369 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
45 changes: 24 additions & 21 deletions
45
...tend/src/main/js/src/components/bestillingsveileder/stegVelger/Navigation/Navigation.less
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 |
---|---|---|
@@ -1,31 +1,34 @@ | ||
@import (reference) '@/styles/variables.less'; | ||
|
||
.step-navknapper-wrapper { | ||
background-color: @color-bg-grey; | ||
border-top: 1px solid @color-bg-grey-border; | ||
position: fixed; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
z-index: 2; | ||
background-color: @color-bg-grey; | ||
border-top: 1px solid @color-bg-grey-border; | ||
position: fixed; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
z-index: 2; | ||
} | ||
|
||
.step-navknapper { | ||
max-width: @page-max-width; | ||
margin: 0 auto; | ||
display: flex; | ||
flex-direction: row; | ||
padding: 10px 20px; | ||
max-width: 960px; | ||
@media screen and (min-width: 2000px) { | ||
max-width: 65vh; | ||
} | ||
margin: 0 auto; | ||
display: flex; | ||
flex-direction: row; | ||
padding: 10px 20px; | ||
|
||
> button { | ||
margin-right: 10px; | ||
} | ||
> button { | ||
margin-right: 10px; | ||
} | ||
|
||
&--right { | ||
margin-left: auto; | ||
&--right { | ||
margin-left: auto; | ||
|
||
:not(:last-child) { | ||
margin-right: 5px; | ||
} | ||
} | ||
:not(:last-child) { | ||
margin-right: 5px; | ||
} | ||
} | ||
} |
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
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
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
43 changes: 22 additions & 21 deletions
43
apps/dolly-frontend/src/main/js/src/components/ui/icon/IconItem/IconItem.less
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 |
---|---|---|
@@ -1,29 +1,30 @@ | ||
@import (reference) '@/styles/variables.less'; | ||
|
||
.icon-item { | ||
background-color: #e9ecef; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
min-width: 50px; | ||
margin-right: 10px; | ||
&--designsystem-man { | ||
background-color: #d1f3fc; | ||
} | ||
background-color: #e9ecef; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
min-width: 50px; | ||
margin-right: 10px; | ||
|
||
&--designsystem-woman { | ||
background-color: #f5e9fc; | ||
} | ||
&--man { | ||
background-color: #d1f3fc; | ||
} | ||
|
||
&--designsystem-unknown { | ||
background-color: #e9ecef; | ||
} | ||
&--woman { | ||
background-color: #f5e9fc; | ||
} | ||
|
||
&--designsystem-group { | ||
background-color: @color-faded-blue; | ||
} | ||
&--unknown { | ||
background-color: #e9ecef; | ||
} | ||
|
||
&--designsystem-org { | ||
background-color: @navOransjeLighten60; | ||
} | ||
&--group { | ||
background-color: @color-faded-blue; | ||
} | ||
|
||
&--org { | ||
background-color: @navOransjeLighten60; | ||
} | ||
} |
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.