Skip to content

Commit

Permalink
Merge branch 'master' into fix-camelcase-notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius authored Jan 29, 2024
2 parents 2986bed + 180086b commit cfdd72b
Show file tree
Hide file tree
Showing 14 changed files with 566 additions and 351 deletions.
36 changes: 0 additions & 36 deletions client/src/components/templateSelector/TemplateSelector.css

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
@import "/src/styles/bootstrap/_custom_bootstrap_variables.scss";

.templateLabel {
.templateCardImage {
height: 108px;
}

.templateCardName {
display: flex;
height: 74px;

& p {
display: -webkit-box;
line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
}

.templateCardDescription,
.templateCardSsh {
display: none;
background-color: $rk-green-highlight;
}

&:hover,
input:focus-visible + & {
.templateCardImage,
.templateCardName {
display: none;
}

.templateCardDescription,
.templateCardSsh {
display: flex;
}
}

input:focus-visible + & {
box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0)
var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width)
var(--bs-focus-ring-color);
}
}

.templateCard {
max-height: 182px;
}
Loading

0 comments on commit cfdd72b

Please sign in to comment.