chore: import upstream snapshot with attribution
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
Flake8 Lint / flake8 (push) Has been cancelled
Spell check CI / Spell_Check (push) Has been cancelled
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
Flake8 Lint / flake8 (push) Has been cancelled
Spell check CI / Spell_Check (push) Has been cancelled
This commit is contained in:
Vendored
+93
@@ -0,0 +1,93 @@
|
||||
.title {
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
.sd-card-header {
|
||||
font-weight:700;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
|
||||
.bd-page-width {
|
||||
max-width: 100rem;
|
||||
}
|
||||
|
||||
.bd-sidebar-primary {
|
||||
flex: 0 0 20%;
|
||||
}
|
||||
|
||||
.bd-main .bd-content .bd-article-container {
|
||||
max-width: 70em;
|
||||
}
|
||||
|
||||
/* Background color for feature announcement */
|
||||
html[data-theme="light"] {
|
||||
--header-announcement-color: #3278e5;
|
||||
}
|
||||
|
||||
html[data-theme="dark"] {
|
||||
--header-announcement-color: #67d6ed;
|
||||
}
|
||||
|
||||
.bd-header-announcement {
|
||||
background: var(--header-announcement-color);
|
||||
}
|
||||
/* Background color for feature announcement */
|
||||
|
||||
/* Background color for warning announcement */
|
||||
/*html[data-theme="light"] {*/
|
||||
/* --header-announcement-color: #fff070;*/
|
||||
/*}*/
|
||||
|
||||
/*html[data-theme="dark"] {*/
|
||||
/* --header-announcement-color: #4d4d00;*/
|
||||
/*}*/
|
||||
|
||||
/*.bd-header-announcement {*/
|
||||
/* background: var(--header-announcement-color);*/
|
||||
/*}*/
|
||||
/* Background color for warning announcement */
|
||||
|
||||
/* (A) LIGHTBOX BACKGROUND */
|
||||
#lightbox {
|
||||
/* (A1) COVERS FULLSCREEN */
|
||||
position: fixed; z-index: 1060;
|
||||
top: 0; left: 0;
|
||||
width: 100%; height: 100%;
|
||||
|
||||
/* (A2) BACKGROUND */
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
|
||||
/* (A3) CENTER IMAGE ON SCREEN */
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-items: center;
|
||||
|
||||
/* (A4) HIDDEN BY DEFAULT */
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
|
||||
/* (A5) SHOW/HIDE ANIMATION */
|
||||
transition: opacity ease 0.4s;
|
||||
}
|
||||
/* (A6) TOGGLE VISIBILITY */
|
||||
#lightbox.show {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
/* (B) LIGHTBOX IMAGE */
|
||||
#lightbox img {
|
||||
/* (B1) DIMENSIONS */
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
/* (B2) IMAGE FIT */
|
||||
/* contain | cover | fill | scale-down */
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
border-radius: 50%;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
Vendored
+61
@@ -0,0 +1,61 @@
|
||||
// Get the head element
|
||||
let head = document.getElementsByTagName("head")[0];
|
||||
|
||||
// Create the script element
|
||||
let script = document.createElement("script");
|
||||
script.async = true;
|
||||
script.src = "https://www.googletagmanager.com/gtag/js?id=G-KZXK5PFBZY";
|
||||
|
||||
// Create another script element for the gtag code
|
||||
let script2 = document.createElement("script");
|
||||
script2.innerHTML = ` window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date());gtag('config', 'G-KZXK5PFBZY'); `;
|
||||
|
||||
// Insert the script elements after the head element
|
||||
head.insertAdjacentElement("afterbegin", script2);
|
||||
head.insertAdjacentElement("afterbegin", script);
|
||||
|
||||
// This is used to zoom in images when clicked on
|
||||
window.onload = () => {
|
||||
if (document.getElementById("lightbox") === null){
|
||||
// Append lightbox div to each page
|
||||
let div = document.createElement('div');
|
||||
div.innerHTML = '<div id="lightbox"></div>';
|
||||
document.body.appendChild(div);
|
||||
}
|
||||
|
||||
// (A) GET LIGHTBOX & ALL .ZOOMD IMAGES
|
||||
let all = document.getElementsByClassName("bd-article")[0].getElementsByTagName("img"),
|
||||
lightbox = document.getElementById("lightbox");
|
||||
|
||||
// (B) CLICK TO SHOW IMAGE IN LIGHTBOX
|
||||
// * SIMPLY CLONE INTO LIGHTBOX & SHOW
|
||||
if (all.length>0) { for (let i of all) {
|
||||
// skip if class contains avatar or img_ev3q(Open on github button)
|
||||
if (i.classList.contains("avatar") || i.classList.contains("img_ev3q")) {
|
||||
continue;
|
||||
}
|
||||
i.onclick = () => {
|
||||
let clone = i.cloneNode();
|
||||
clone.className = "";
|
||||
lightbox.innerHTML = "";
|
||||
lightbox.appendChild(clone);
|
||||
lightbox.className = "show";
|
||||
};
|
||||
}}
|
||||
|
||||
// (C) CLICK TO CLOSE LIGHTBOX
|
||||
lightbox.onclick = () => {
|
||||
lightbox.className = "";
|
||||
};
|
||||
};
|
||||
|
||||
if (window.location.pathname === "/promptflow/" || window.location.pathname === "/promptflow/index.html") {
|
||||
// This is used to control homepage background
|
||||
let observer = new MutationObserver(function(mutations) {
|
||||
const dark = document.documentElement.dataset.theme == 'dark';
|
||||
document.body.style.backgroundSize = "100%";
|
||||
document.body.style.backgroundPositionY = "bottom";
|
||||
document.body.style.backgroundRepeat = "no-repeat"
|
||||
})
|
||||
observer.observe(document.documentElement, {attributes: true, attributeFilter: ['data-theme']});
|
||||
}
|
||||
Vendored
+47
@@ -0,0 +1,47 @@
|
||||
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_699_15212)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M237 39.0408V461.693C237 469.397 228.655 474.208 221.988 470.346L151.918 429.764C130.306 417.247 117 394.164 117 369.19V148.892C117 123.917 130.306 100.834 151.918 88.3177L237 39.0408Z" fill="url(#paint0_linear_699_15212)"/>
|
||||
<path d="M395.075 127.51L237 39V167.541L283.451 192.041L395.075 127.51Z" fill="url(#paint1_linear_699_15212)"/>
|
||||
<path d="M395.075 127.51L237 39V167.541L283.451 192.041L395.075 127.51Z" fill="url(#paint2_linear_699_15212)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.5 231.426C255.5 217.184 263.073 204.017 275.382 196.854L395 127.248V216.101C395 241.03 381.742 264.078 360.193 276.611L270.528 328.76C263.861 332.637 255.5 327.828 255.5 320.116L255.5 231.426Z" fill="url(#paint3_linear_699_15212)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_699_15212" x1="196.286" y1="183.041" x2="270.786" y2="92.5087" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3272ED"/>
|
||||
<stop offset="1" stop-color="#AF7BD6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_699_15212" x1="457.98" y1="131.313" x2="260.351" y2="133.014" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA7ED0"/>
|
||||
<stop offset="0.05" stop-color="#B77BD4"/>
|
||||
<stop offset="0.11" stop-color="#9079DA"/>
|
||||
<stop offset="0.18" stop-color="#6E77DF"/>
|
||||
<stop offset="0.25" stop-color="#5175E3"/>
|
||||
<stop offset="0.33" stop-color="#3973E7"/>
|
||||
<stop offset="0.42" stop-color="#2772E9"/>
|
||||
<stop offset="0.54" stop-color="#1A71EB"/>
|
||||
<stop offset="0.813361" stop-color="#1371EC"/>
|
||||
<stop offset="1" stop-color="#064495"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_699_15212" x1="210.18" y1="4.19164" x2="307.181" y2="175.949" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#712575"/>
|
||||
<stop offset="0.09" stop-color="#9A2884"/>
|
||||
<stop offset="0.18" stop-color="#BF2C92"/>
|
||||
<stop offset="0.27" stop-color="#DA2E9C"/>
|
||||
<stop offset="0.34" stop-color="#EB30A2"/>
|
||||
<stop offset="0.4" stop-color="#F131A5"/>
|
||||
<stop offset="0.5" stop-color="#EC30A3"/>
|
||||
<stop offset="0.61" stop-color="#DF2F9E"/>
|
||||
<stop offset="0.72" stop-color="#C92D96"/>
|
||||
<stop offset="0.83" stop-color="#AA2A8A"/>
|
||||
<stop offset="0.95" stop-color="#83267C"/>
|
||||
<stop offset="1" stop-color="#712575"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_699_15212" x1="308" y1="260.041" x2="307.043" y2="133.204" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1D5CD6"/>
|
||||
<stop offset="1" stop-color="#787BE5"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_699_15212">
|
||||
<rect width="512" height="512" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
Vendored
BIN
Binary file not shown.
|
After Width: | Height: | Size: 975 B |
Reference in New Issue
Block a user