Skip to content

Commit

Permalink
Merge pull request mastodon#492 from ThibG/glitch-soc/fixes/port-scss
Browse files Browse the repository at this point in the history
Port SCSS changes from upstream
  • Loading branch information
ClearlyClaire authored May 21, 2018
2 parents 2f9bd86 + c53aacd commit 98ecadb
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 13 deletions.
13 changes: 11 additions & 2 deletions app/javascript/flavours/glitch/styles/accounts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,15 @@
z-index: 2;
position: relative;

&.empty img {
position: absolute;
opacity: 0.2;
height: 200px;
left: 0;
bottom: 0;
pointer-events: none;
}

@media screen and (max-width: 740px) {
border-radius: 0;
box-shadow: none;
Expand Down Expand Up @@ -445,8 +454,8 @@
font-size: 14px;
font-weight: 500;
text-align: center;
padding: 60px 0;
padding-top: 55px;
padding: 130px 0;
padding-top: 125px;
margin: 0 auto;
cursor: default;
}
Expand Down
49 changes: 39 additions & 10 deletions app/javascript/flavours/glitch/styles/admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,22 @@
}
}

.flavour-screen {
display: block;
margin: 10px auto;
max-width: 100%;
}

.flavour-description {
display: block;
font-size: 16px;
margin: 10px 0;

& > p {
margin: 10px 0;
}
}

.report-accounts {
display: flex;
flex-wrap: wrap;
Expand Down Expand Up @@ -484,19 +500,12 @@
}

a.name-tag,
.name-tag {
display: flex;
align-items: center;
.name-tag,
a.inline-name-tag,
.inline-name-tag {
text-decoration: none;
color: $secondary-text-color;

.avatar {
display: block;
margin: 0;
margin-right: 5px;
border-radius: 50%;
}

.username {
font-weight: 500;
}
Expand All @@ -514,6 +523,26 @@ a.name-tag,
}
}

a.name-tag,
.name-tag {
display: flex;
align-items: center;

.avatar {
display: block;
margin: 0;
margin-right: 5px;
border-radius: 50%;
}

&.suspended {
.avatar {
filter: grayscale(100%);
opacity: 0.8;
}
}
}

.speech-bubble {
margin-bottom: 20px;
border-left: 4px solid $ui-highlight-color;
Expand Down
10 changes: 9 additions & 1 deletion app/javascript/flavours/glitch/styles/footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
font-size: 12px;
color: $darker-text-color;

.domain {
.footer__domain {
font-weight: 500;

a {
Expand All @@ -26,5 +26,13 @@
text-decoration: none;
}
}

img {
margin: 0 4px;
position: relative;
bottom: -1px;
height: 18px;
vertical-align: top;
}
}
}
11 changes: 11 additions & 0 deletions app/javascript/flavours/glitch/styles/tables.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
@keyframes Swag {
0% { background-position: 0% 0%; }
50% { background-position: 100% 0%; }
100% { background-position: 200% 0%; }
}

.table {
width: 100%;
max-width: 100%;
Expand Down Expand Up @@ -187,6 +193,11 @@ a.table-action-link {

strong {
font-weight: 700;
background: linear-gradient(to right, orange , yellow, green, cyan, blue, violet,orange , yellow, green, cyan, blue, violet);
background-size: 200% 100%;
background-clip: text;
color: transparent;
animation: Swag 2s linear 0s infinite;
}
}
}

0 comments on commit 98ecadb

Please sign in to comment.