Skip to content

Commit

Permalink
chore: updated styling for configuration files (#23781)
Browse files Browse the repository at this point in the history
  • Loading branch information
amehta265 committed Sep 12, 2022
1 parent 405e7f7 commit f07a49b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/frontend-shared/src/components/Collapsible.vue
Expand Up @@ -25,6 +25,8 @@
:aria-hidden="!isOpen"
:class="{
'overflow-auto': isOpen && overflow,
'border rounded rounded-t-none bg-light-50 border-gray-100 mb-4 w-full block': isOpen && fileRow,
'overflow-hidden': !isOpen && fileRow
}"
>
<slot
Expand All @@ -45,12 +47,14 @@ const props = withDefaults(defineProps<{
lazy?: boolean
disable?: boolean
overflow?: boolean
fileRow?: boolean
}>(), {
initiallyOpen: false,
maxHeight: '500px',
lazy: false,
disable: false,
overflow: true,
fileRow: false,
})
const [isOpen, toggle] = useToggle(props.initiallyOpen)
Expand Down
8 changes: 4 additions & 4 deletions packages/launchpad/src/components/code/FileRow.vue
@@ -1,15 +1,15 @@
<template>
<Collapsible
class="border rounded bg-light-50 border-gray-100 mb-4 w-full block
overflow-hidden hocus-default"
class="rounded bg-light-50 border-gray-100 mb-4 w-full block"
max-height="500px"
:initially-open="statusInfo.initiallyOpen"
:data-cy="status"
:file-row="true"
>
<template #target="{open}">
<ListRowHeader
:class="{ 'border-b border-b-gray-100 rounded-b-none': open }"
class="cursor-pointer font-medium"
:class="{ 'rounded-b-none mb-0.1em default-ring': open, 'overflow-hidden': !open }"
class="border hocus-default cursor-pointer font-medium"
:description="description"
:icon="statusInfo.icon"
>
Expand Down

4 comments on commit f07a49b

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f07a49b Sep 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.8.0/linux-x64/develop-f07a49b861f296d836a22324178734a416bb2024/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f07a49b Sep 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.8.0/linux-arm64/develop-f07a49b861f296d836a22324178734a416bb2024/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f07a49b Sep 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.8.0/darwin-arm64/develop-f07a49b861f296d836a22324178734a416bb2024/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f07a49b Sep 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.8.0/darwin-x64/develop-f07a49b861f296d836a22324178734a416bb2024/cypress.tgz

Please sign in to comment.