Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/assets/builds/alchemy/admin.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions app/stylesheets/alchemy/admin/archive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ alchemy-uploader {
align-items: center;
justify-content: center;
background-color: var(--picture-thumbnail-background-color, transparent);
transition: all var(--transition-duration);

&:not(:has(alchemy-icon)) {
box-shadow: 0 0 1px 1px var(--border-color);
Expand Down Expand Up @@ -277,6 +278,8 @@ div#library_sidebar {

.alchemy-dialog #library_sidebar {
position: absolute;
top: 0;
height: calc(100% - var(--pagination-height));
padding: 0 var(--spacing-4);
}

Expand Down
8 changes: 5 additions & 3 deletions app/stylesheets/alchemy/admin/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,13 @@ body {
a {
color: inherit;
text-decoration: none;
transition: var(--transition-duration);
text-decoration-color: transparent;
text-decoration-thickness: 1px;
transition: all var(--transition-duration);

&:hover {
text-decoration: underline;
text-decoration-thickness: 1px;
text-decoration-line: underline;
text-decoration-color: inherit;
}

img {
Expand Down
1 change: 1 addition & 0 deletions app/stylesheets/alchemy/admin/elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ button.element-toggle {
box-shadow: none;
padding: 0;
margin: 0 0 0 auto;
transition: background-color var(--transition-duration);

&:hover {
&:not(:focus) {
Expand Down
8 changes: 8 additions & 0 deletions app/stylesheets/alchemy/admin/forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,14 @@ form {

a[href] {
color: var(--hint-text-link-color);
text-decoration-line: underline;
text-decoration-color: inherit;
text-decoration-thickness: 1px;

&:hover {
color: inherit;
text-decoration-color: transparent;
}
}
}

Expand Down
7 changes: 4 additions & 3 deletions app/stylesheets/alchemy/admin/notices.scss
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,13 @@ alchemy-message {
}

a[href] {
text-decoration: underline;
color: var(--hint-text-link-color);
text-decoration-color: inherit;
text-decoration-thickness: 1px;
color: inherit;

&:hover {
color: inherit;
text-decoration: none;
text-decoration-color: transparent;
}
}

Expand Down
4 changes: 3 additions & 1 deletion app/stylesheets/alchemy/admin/resource_info.scss
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,11 @@
a {
color: var(--text-color);
font-weight: var(--font-weight_bold);
text-decoration-color: transparent;

&:hover {
color: var(--text-link-color);
text-decoration-color: var(--text-link-color);
color: inherit;
}
}
}
9 changes: 8 additions & 1 deletion app/stylesheets/alchemy/admin/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,14 @@ p {
white-space: normal;

a {
color: var(--text-link-color);
color: inherit;
text-decoration-line: underline;
text-decoration-color: var(--text-link-color);
text-decoration-thickness: 1px;

&:hover {
text-decoration-color: transparent;
}
}
}

Expand Down