diff --git a/components/blocks/codeTile.module.css b/components/blocks/codeTile.module.css index 299ac7cc0..62ea25407 100644 --- a/components/blocks/codeTile.module.css +++ b/components/blocks/codeTile.module.css @@ -2,29 +2,25 @@ @apply border-t border-t-white focus:outline-none focus-visible:outline-none; @apply text-gray-90 !important; } - .Container button { @apply hidden; } - .Container section { @apply m-0; } - .Container section pre { - @apply m-0 p-0 pb-7 text-sm tracking-tight overflow-x-auto bg-white; + @apply m-0 p-0 pl-4 pb-7 text-sm tracking-tight overflow-x-auto bg-white; @apply text-gray-80; + mask-image: none; + -webkit-mask-image: none; } - :global(.dark) .Container { @apply border-t-gray-100; } - :global(.dark) .Container section pre { @apply bg-gray-100; @apply text-gray-40; } - .Container h1, .Container h2, .Container h3, @@ -34,26 +30,18 @@ .Container p { @apply m-0 mt-4 mb-1 leading-relaxed font-bold; } - .Container p { @apply text-xs mt-0 tracking-tight; } - -/* Size modifiers */ .Full { @apply col-span-full; } - .Half { @apply col-span-full sm:col-span-3; } - .TwoThirds { @apply col-span-full md:col-span-3 lg:col-span-4; } - .Third { @apply col-span-full md:col-span-3 lg:col-span-2; } - -/* Syntax highlighting is now handled globally via styles/syntax-highlighting.scss */ diff --git a/content/develop/tutorials/databases/mssql.md b/content/develop/tutorials/databases/mssql.md index 5f884770e..a598f6bad 100644 --- a/content/develop/tutorials/databases/mssql.md +++ b/content/develop/tutorials/databases/mssql.md @@ -143,10 +143,9 @@ Replace `x.x.x` ☝️ with the version of pyodbc you want installed on Cloud. -At this time, Streamlit Community Cloud does not support Azure Active Directory authentication. We will update this tutorial when we add support for Azure Active Directory. +At this time, Streamlit Community Cloud does not support the`ActiveDirectoryInteractive` authentication type (which uses MFA),as Community Cloud cannot serve an MFA pop-up. However, other Microsoft Entra (formerly Azure Active Directory) authentication types such as `ActiveDirectoryServicePrincipal` and `ActiveDirectoryPassword` are supported. - ## Write your Streamlit app Copy the code below to your Streamlit app and run it. Make sure to adapt `query` to use the name of your table.