Skip to content

Commit

Permalink
New element hidden style
Browse files Browse the repository at this point in the history
Show the status by using the same icon we use to show
if a page is not published and increase the contrast of
the element header while keeping the visual difference.
  • Loading branch information
tvdeyen committed Dec 11, 2023
1 parent 9d81323 commit e7ea816
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
20 changes: 8 additions & 12 deletions app/assets/stylesheets/alchemy/elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -136,22 +136,14 @@ alchemy-tinymce {
&.hidden {
display: block;
border-style: dashed;
opacity: 0.5;
transition: opacity $transition-duration;

> .element-header {
background-color: transparent;
background-image: linear-gradient(
45deg,
$light-gray 25%,
$medium-gray 25%,
$medium-gray 50%,
$light-gray 50%,
$light-gray 75%,
$medium-gray 75%,
$medium-gray 100%
);
background-size: 28.28px 28.28px;

.element-hidden-icon {
display: inline;
}
}

&:hover {
Expand Down Expand Up @@ -402,6 +394,10 @@ alchemy-tinymce {
}
}

.element-hidden-icon {
display: none;
}

.element-toolbar {
display: flex;
width: 100%;
Expand Down
4 changes: 4 additions & 0 deletions app/views/alchemy/admin/elements/_header.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
<%= sanitize(element.preview_text.presence || '&nbsp;') %>
</span>
</span>
<span class="element-hidden-icon">
<%= render_icon("cloud-off", size: "1x") %>
<%= Alchemy.t(:element_hidden) %>
</span>
<%= button_tag({
title: Alchemy.t(element.folded? ? :show_element_content : :hide_element_content),
class: "element-toggle"
Expand Down
1 change: 1 addition & 0 deletions config/locales/alchemy.en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,7 @@ en:
edit_tag: "Edit tag"
edit_selected_pictures: "Edit selected pictures"
element_editor_not_found: "Error within this Element"
element_hidden: "Hidden"
element_of_type: "Element"
element_saved: "Saved element."
enter_external_link: "Please enter the URL you want to link with"
Expand Down

0 comments on commit e7ea816

Please sign in to comment.