-
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.
Merge branch 'main' into task/GH-101-header-redesign
- Loading branch information
Showing
8 changed files
with
60 additions
and
33 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
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: 43 additions & 0 deletions
43
taccsite_cms/static/site_cms/css/src/_imports/tools/x-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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
Overlay | ||
Colored boxes that appear atop a large image (like a banner). | ||
%x-overlay--curtain - A full size transluscent curtain over the background | ||
%x-overlay--callout - A transluscent box surrounding the content | ||
Styleguide Tools.ExtendsAndMixins.Overlay | ||
*/ | ||
|
||
.x-overlay--curtain { | ||
--color-text: inherit; | ||
--color-bkgd-rgb: var(--global-color-primary--normal); | ||
|
||
color: var(--color-text); | ||
|
||
@supports (-webkit-backdrop-filter: none) { | ||
& { | ||
background-color: rgba(var(--color-bkgd-rgb), 0.65); | ||
-webkit-backdrop-filter: blur(6px); | ||
} | ||
} | ||
@supports (backdrop-filter: none) { | ||
& { | ||
background-color: rgba(var(--color-bkgd-rgb), 0.65); | ||
backdrop-filter: blur(6px); | ||
} | ||
} | ||
@supports not (backdrop-filter: none) and not (backdrop-filter: none) { | ||
& { | ||
background-color: rgba(var(--color-bkgd-rgb), 0.95); | ||
} | ||
} | ||
} | ||
|
||
.x-overlay--callout { | ||
--color-text: inherit; | ||
--color-bkgd-rgb: var(--global-color-primary--normal); | ||
|
||
color: var(--color-text); | ||
background-color: rgba(var(--color-bkgd-rgb), 0.90); | ||
} |
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
Submodule taccsite_custom
updated
14 files