Skip to content

Commit

Permalink
Copy CSS files to installation folder
Browse files Browse the repository at this point in the history
  • Loading branch information
nileane authored and github-actions[bot] committed May 15, 2024
1 parent 440eec9 commit c0069f3
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3519,6 +3519,18 @@ div[tabindex="-1"] + div[tabindex="-1"] > .status__wrapper > .status-reply.statu
box-shadow: 0 -10px 0 10px #191b22;
border-radius: 15px 15px 0 0;
}
@media (prefers-color-scheme: light) {
.app-body.theme-system .ui::after {
box-shadow: 0 -10px 0 10px #f3f5f7;
border-radius: 15px 15px 0 0;
}
}
@media (prefers-color-scheme: dark) {
.app-body.theme-system .ui::after {
box-shadow: 0 -10px 0 10px #191b22;
border-radius: 15px 15px 0 0;
}
}
}
.app-body:not(.layout-multiple-columns) .column-header__collapsible { /* Remove margin between column settings and column header */
margin-top: 1px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3519,6 +3519,18 @@ div[tabindex="-1"] + div[tabindex="-1"] > .status__wrapper > .status-reply.statu
box-shadow: 0 -10px 0 10px #191b22;
border-radius: 15px 15px 0 0;
}
@media (prefers-color-scheme: light) {
.app-body.theme-system .ui::after {
box-shadow: 0 -10px 0 10px #f3f5f7;
border-radius: 15px 15px 0 0;
}
}
@media (prefers-color-scheme: dark) {
.app-body.theme-system .ui::after {
box-shadow: 0 -10px 0 10px #191b22;
border-radius: 15px 15px 0 0;
}
}
}
.app-body:not(.layout-multiple-columns) .column-header__collapsible { /* Remove margin between column settings and column header */
margin-top: 1px;
Expand Down
12 changes: 12 additions & 0 deletions mastodon/app/javascript/styles/tangerineui/tangerineui.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3519,6 +3519,18 @@ div[tabindex="-1"] + div[tabindex="-1"] > .status__wrapper > .status-reply.statu
box-shadow: 0 -10px 0 10px #191b22;
border-radius: 15px 15px 0 0;
}
@media (prefers-color-scheme: light) {
.app-body.theme-system .ui::after {
box-shadow: 0 -10px 0 10px #f3f5f7;
border-radius: 15px 15px 0 0;
}
}
@media (prefers-color-scheme: dark) {
.app-body.theme-system .ui::after {
box-shadow: 0 -10px 0 10px #191b22;
border-radius: 15px 15px 0 0;
}
}
}
.app-body:not(.layout-multiple-columns) .column-header__collapsible { /* Remove margin between column settings and column header */
margin-top: 1px;
Expand Down

0 comments on commit c0069f3

Please sign in to comment.