-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: bring v.0.14.0 of fundamental-styles
- Loading branch information
1 parent
5de5d4c
commit 4d2ebe9
Showing
10 changed files
with
906 additions
and
669 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
193 changes: 1 addition & 192 deletions
193
libs/core/src/lib/flexible-column-layout/flexible-column-layout.component.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 |
---|---|---|
@@ -1,193 +1,2 @@ | ||
/*! | ||
* Fundamental Library Styles v0.13.1-rc.5 | ||
* Copyright (c) 2020 SAP SE or an SAP affiliate company. | ||
* Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/master/LICENSE) | ||
*/ | ||
@charset "UTF-8"; | ||
@import '~fundamental-styles/dist/button'; | ||
.fd-flexible-column-layout { | ||
font-size: 0.875rem; | ||
font-size: var(--sapFontSize, 0.875rem); | ||
line-height: 1.4; | ||
line-height: var(--sapContent_LineHeight, 1.4); | ||
color: #32363a; | ||
color: var(--sapTextColor, #32363a); | ||
font-family: '72', '72full', Arial, Helvetica, sans-serif; | ||
font-family: var(--sapFontFamily, '72', '72full', Arial, Helvetica, sans-serif); | ||
font-weight: 400; | ||
-webkit-font-smoothing: antialiased; | ||
-webkit-box-sizing: border-box; | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
border: 0; | ||
display: -webkit-box; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-webkit-box-orient: horizontal; | ||
-webkit-box-direction: normal; | ||
-ms-flex-direction: row; | ||
flex-direction: row; | ||
} | ||
.fd-flexible-column-layout::after, | ||
.fd-flexible-column-layout::before { | ||
-webkit-box-sizing: inherit; | ||
box-sizing: inherit; | ||
font-size: inherit; | ||
} | ||
.fd-flexible-column-layout__separator { | ||
font-size: 0.875rem; | ||
font-size: var(--sapFontSize, 0.875rem); | ||
line-height: 1.4; | ||
line-height: var(--sapContent_LineHeight, 1.4); | ||
color: #32363a; | ||
color: var(--sapTextColor, #32363a); | ||
font-family: '72', '72full', Arial, Helvetica, sans-serif; | ||
font-family: var(--sapFontFamily, '72', '72full', Arial, Helvetica, sans-serif); | ||
font-weight: 400; | ||
-webkit-font-smoothing: antialiased; | ||
-webkit-box-sizing: border-box; | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
border: 0; | ||
display: -webkit-box; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-webkit-box-pack: center; | ||
-ms-flex-pack: center; | ||
justify-content: center; | ||
-webkit-box-align: center; | ||
-ms-flex-align: center; | ||
align-items: center; | ||
position: relative; | ||
width: 1rem; | ||
min-width: 1rem; | ||
background-color: #edeff0; | ||
background-color: var(--fdFlexibleColumnBackgroundSolid, var(--sapShell_Background, #edeff0)); | ||
} | ||
.fd-flexible-column-layout__separator::after, | ||
.fd-flexible-column-layout__separator::before { | ||
-webkit-box-sizing: inherit; | ||
box-sizing: inherit; | ||
font-size: inherit; | ||
} | ||
.fd-flexible-column-layout__separator::after, | ||
.fd-flexible-column-layout__separator::before { | ||
content: ''; | ||
display: block; | ||
width: 0.0625rem; | ||
height: 4rem; | ||
-webkit-transition: all 0.1s ease-in; | ||
transition: all 0.1s ease-in; | ||
position: absolute; | ||
left: 50%; | ||
-webkit-transform: translateX(-50%); | ||
transform: translateX(-50%); | ||
} | ||
.fd-flexible-column-layout__separator::before { | ||
bottom: calc(50% + 2rem / 2); | ||
background-image: -webkit-gradient(linear, left bottom, left top, from(#0854a0), to(transparent)); | ||
background-image: -webkit-gradient( | ||
linear, | ||
left bottom, | ||
left top, | ||
from(var(--fdFlexibleColumnLayoutToggleImageColor, var(--sapHighlightColor, #0854a0))), | ||
to(transparent) | ||
); | ||
background-image: linear-gradient(to top, #0854a0, transparent); | ||
background-image: linear-gradient( | ||
to top, | ||
var(--fdFlexibleColumnLayoutToggleImageColor, var(--sapHighlightColor, #0854a0)), | ||
transparent | ||
); | ||
} | ||
.fd-flexible-column-layout__separator::after { | ||
top: calc(50% + 2rem / 2); | ||
background-image: -webkit-gradient(linear, left top, left bottom, from(#0854a0), to(transparent)); | ||
background-image: -webkit-gradient( | ||
linear, | ||
left top, | ||
left bottom, | ||
from(var(--fdFlexibleColumnLayoutToggleImageColor, var(--sapHighlightColor, #0854a0))), | ||
to(transparent) | ||
); | ||
background-image: linear-gradient(to bottom, #0854a0, transparent); | ||
background-image: linear-gradient( | ||
to bottom, | ||
var(--fdFlexibleColumnLayoutToggleImageColor, var(--sapHighlightColor, #0854a0)), | ||
transparent | ||
); | ||
} | ||
.fd-flexible-column-layout__separator.is-hover::after, | ||
.fd-flexible-column-layout__separator.is-hover::before, | ||
.fd-flexible-column-layout__separator:hover::after, | ||
.fd-flexible-column-layout__separator:hover::before { | ||
height: 7rem; | ||
} | ||
.fd-flexible-column-layout .fd-flexible-column-layout__button { | ||
height: 2rem; | ||
width: 1.5rem; | ||
min-width: 1.5rem; | ||
-webkit-box-pack: center; | ||
-ms-flex-pack: center; | ||
justify-content: center; | ||
position: absolute; | ||
left: 50%; | ||
top: 50%; | ||
-webkit-transform: translate(-50%, -50%); | ||
transform: translate(-50%, -50%); | ||
} | ||
.fd-flexible-column-layout__column { | ||
font-size: 0.875rem; | ||
font-size: var(--sapFontSize, 0.875rem); | ||
line-height: 1.4; | ||
line-height: var(--sapContent_LineHeight, 1.4); | ||
color: #32363a; | ||
color: var(--sapTextColor, #32363a); | ||
font-family: '72', '72full', Arial, Helvetica, sans-serif; | ||
font-family: var(--sapFontFamily, '72', '72full', Arial, Helvetica, sans-serif); | ||
font-weight: 400; | ||
-webkit-font-smoothing: antialiased; | ||
-webkit-box-sizing: border-box; | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
border: 0; | ||
min-width: 20rem; | ||
border-left: none; | ||
border-left: var(--fdFlexibleColumnLayoutBorder, none); | ||
border-right: none; | ||
border-right: var(--fdFlexibleColumnLayoutBorder, none); | ||
} | ||
.fd-flexible-column-layout__column::after, | ||
.fd-flexible-column-layout__column::before { | ||
-webkit-box-sizing: inherit; | ||
box-sizing: inherit; | ||
font-size: inherit; | ||
} | ||
.fd-flexible-column-layout__column:first-child { | ||
margin-left: 0; | ||
border-left: none; | ||
} | ||
.fd-flexible-column-layout__column:last-child { | ||
margin-bottom: 0; | ||
margin-right: 0; | ||
border-right: none; | ||
} | ||
.fd-flexible-column-layout__column--hidden { | ||
border: none; | ||
min-width: 0; | ||
} | ||
.fd-flexible-column-layout--translucent .fd-flexible-column-layout__separator { | ||
background-color: #fff; | ||
background-color: var(--fdFlexibleColumnBackgroundTranslucent, var(--sapGroup_ContentBackground, #fff)); | ||
} | ||
.fd-flexible-column-layout--transparent .fd-flexible-column-layout__separator { | ||
background-color: transparent; | ||
background-color: var(--fdFlexibleColumnBackgroundTransparent, transparent); | ||
} | ||
|
||
.fd-flexible-column-layout__column { | ||
transition: width 560ms cubic-bezier(0.1, 0, 0.05, 1), visibility 560ms ease-in; | ||
} | ||
@import '~fundamental-styles/dist/flexible-column-layout'; |
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
Oops, something went wrong.