Skip to content

Commit

Permalink
fix: specs overflow horizontally and z-index issues (#15547)
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaSachs authored Mar 17, 2021
1 parent ecccf54 commit e60a029
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
position: relative;
color: unset;
text-decoration: none;
display: inline-block;
display: block;
width: 100%;
&:hover {
background: opacify($color: $metal-05, $amount: 0.2);
Expand Down
5 changes: 4 additions & 1 deletion packages/runner-ct/src/SpecList/components/SearchSpec.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use '../../variables.scss' as *;

.specs-list-search-input-container {
display: flex;
justify-content: flex-start;
Expand All @@ -8,7 +10,8 @@
padding: 8px;
box-sizing: border-box;
background-color: white;
z-index: 10;
box-shadow: $shadow-xs;
z-index: 1;

input {
width: 100%;
Expand Down
1 change: 1 addition & 0 deletions packages/runner-ct/src/app/RunnerCt.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ $box-shadow-closest: 0px 0px 5px rgba(0, 0, 0, 0.4);
height: 100%;
display: flex;
flex-direction: column;
z-index: 0;
}

.runner {
Expand Down

4 comments on commit e60a029

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on e60a029 Mar 17, 2021

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/6.8.0/circle-develop-e60a02912f9d92ae8bce9d03c2167f9a393482f6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on e60a029 Mar 17, 2021

Choose a reason for hiding this comment

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

AppVeyor has built the win32 ia32 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/6.8.0/appveyor-develop-e60a02912f9d92ae8bce9d03c2167f9a393482f6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on e60a029 Mar 17, 2021

Choose a reason for hiding this comment

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

AppVeyor has built the win32 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/6.8.0/appveyor-develop-e60a02912f9d92ae8bce9d03c2167f9a393482f6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on e60a029 Mar 17, 2021

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/6.8.0/circle-develop-e60a02912f9d92ae8bce9d03c2167f9a393482f6/cypress.tgz

Please sign in to comment.