-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2593f7
commit 1362a5c
Showing
9 changed files
with
727 additions
and
347 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
{ | ||
"tabWidth": 2, | ||
"useTabs": true | ||
"useTabs": true, | ||
"overrides": [ | ||
{ | ||
"files": "*.css", | ||
"options": { | ||
"printWidth": 500 | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,14 +1,2 @@ | ||
/*! | ||
Copyright 2023 Adobe. All rights reserved. | ||
This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. You may obtain a copy | ||
of the License at http://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 REPRESENTATIONS | ||
OF ANY KIND, either express or implied. See the License for the specific language | ||
governing permissions and limitations under the License. | ||
*/ | ||
|
||
@import "basebutton.css"; | ||
@import "overlay.css"; |
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,51 +1,74 @@ | ||
/*! | ||
Copyright 2023 Adobe. All rights reserved. | ||
This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. You may obtain a copy | ||
of the License at http://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 REPRESENTATIONS | ||
OF ANY KIND, either express or implied. See the License for the specific language | ||
governing permissions and limitations under the License. | ||
*/ | ||
|
||
/* TODO: replace legacy animation variables with core tokens when available */ | ||
|
||
/** @note used in modal, popover, quickaction, tooltip, underlay */ | ||
%spectrum-overlay { | ||
pointer-events: none; | ||
visibility: hidden; | ||
opacity: 0%; | ||
transition: transform var(--mod-overlay-animation-duration, var(--spectrum-animation-duration-100, 130ms)) ease-in-out, | ||
opacity var(--mod-overlay-animation-duration, var(--spectrum-animation-duration-100, 130ms)) ease-in-out, | ||
visibility 0ms linear var(--mod-overlay-animation-duration, var(--spectrum-animation-duration-100, 130ms)); | ||
transition: transform | ||
var( | ||
--mod-overlay-animation-duration, | ||
var(--spectrum-animation-duration-100, 130ms) | ||
) | ||
ease-in-out, | ||
opacity | ||
var( | ||
--mod-overlay-animation-duration, | ||
var(--spectrum-animation-duration-100, 130ms) | ||
) | ||
ease-in-out, | ||
visibility 0ms linear | ||
var( | ||
--mod-overlay-animation-duration, | ||
var(--spectrum-animation-duration-100, 130ms) | ||
); | ||
} | ||
|
||
/** @note used in modal, popover, quickaction, tooltip, underlay */ | ||
%spectrum-overlay--open { | ||
pointer-events: auto; | ||
visibility: visible; | ||
opacity: 100%; | ||
transition-delay: var(--mod-overlay-animation-duration-opened, var(--spectrum-animation-duration-0, 0ms)); | ||
transition-delay: var( | ||
--mod-overlay-animation-duration-opened, | ||
var(--spectrum-animation-duration-0, 0ms) | ||
); | ||
} | ||
|
||
/** @note currently unused */ | ||
%spectrum-overlay--bottom--open { | ||
transform: translateY(var(--mod-overlay-animation-distance, var(--spectrum-overlay-animation-distance, 6px))); | ||
transform: translateY( | ||
var( | ||
--mod-overlay-animation-distance, | ||
var(--spectrum-overlay-animation-distance, 6px) | ||
) | ||
); | ||
} | ||
|
||
/** @note currently unused */ | ||
%spectrum-overlay--top--open { | ||
transform: translateY(calc(-1 * var(--mod-overlay-animation-distance, var(--spectrum-overlay-animation-distance, 6px)))); | ||
transform: translateY( | ||
calc( | ||
-1 * var(--mod-overlay-animation-distance, var(--spectrum-overlay-animation-distance, 6px)) | ||
) | ||
); | ||
} | ||
|
||
/** @note used in quickaction */ | ||
%spectrum-overlay--right--open { | ||
transform: translateX(var(--mod-overlay-animation-distance, var(--spectrum-overlay-animation-distance, 6px))); | ||
transform: translateX( | ||
var( | ||
--mod-overlay-animation-distance, | ||
var(--spectrum-overlay-animation-distance, 6px) | ||
) | ||
); | ||
} | ||
|
||
/** @note used in quickaction */ | ||
%spectrum-overlay--left--open { | ||
transform: translateX(calc(-1 * var(--mod-overlay-animation-distance, var(--spectrum-overlay-animation-distance, 6px)))); | ||
transform: translateX( | ||
calc( | ||
-1 * var(--mod-overlay-animation-distance, var(--spectrum-overlay-animation-distance, 6px)) | ||
) | ||
); | ||
} |
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.