-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(board-view) : #MAG-233/234 add zoom levels for board view (#50)
* feat(zoom) #MAG-234 : add zoom component for board view * feat(board): #MAG-233 adapt board CSS for zoom levels --------- Co-authored-by: rseuret <[email protected]>
- Loading branch information
1 parent
a2f535c
commit 70ff611
Showing
27 changed files
with
471 additions
and
85 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 |
---|---|---|
|
@@ -98,4 +98,4 @@ | |
overflow: hidden; | ||
} | ||
|
||
} | ||
} |
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 |
---|---|---|
|
@@ -64,6 +64,7 @@ | |
&-content { | ||
line-height: 18px; | ||
margin-left: 40px; | ||
white-space: initial !important; | ||
} | ||
|
||
} | ||
} |
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
52 changes: 52 additions & 0 deletions
52
src/main/resources/public/sass/global/components/directives/_zoom.scss
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,52 @@ | ||
.zoom{ | ||
background-color: $magneto-grey; | ||
opacity: 75%; | ||
display: flex; | ||
color: $magneto-white; | ||
position: fixed; | ||
border-radius: 32px; | ||
padding: 8px; | ||
right: 45%; | ||
bottom: 1em; | ||
z-index: 2; | ||
|
||
&-plus{ | ||
font-size: 32px; | ||
padding-left: 1em; | ||
margin-top: 3px; | ||
&-disabled{ | ||
color: $magneto-light-grey; | ||
} | ||
} | ||
&-minus{ | ||
padding-right: 1em; | ||
font-size: 32px; | ||
margin-top: 3px; | ||
&-disabled{ | ||
color: $magneto-light-grey; | ||
} | ||
} | ||
&-label{ | ||
margin: 0 1em ; | ||
} | ||
|
||
&-line1 { | ||
content: ""; | ||
position: absolute; | ||
top: 50%; | ||
left: 20%; | ||
width: 40px; | ||
height: 1px; | ||
background-color: #ffffff; | ||
} | ||
|
||
&-line2 { | ||
content: ""; | ||
position: absolute; | ||
top: 50%; | ||
left: 62%; | ||
width: 40px; | ||
height: 1px; | ||
background-color: #ffffff; | ||
} | ||
} |
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.