mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-01 03:17:47 -05:00
ad3f50ac10
This reverts commit 5b7127a271
.
# Conflicts:
# src/views/preview/subactions.jsx
118 lines
2.8 KiB
SCSS
118 lines
2.8 KiB
SCSS
@import "../../colors";
|
|
@import "../../frameless";
|
|
|
|
.subactions {
|
|
justify-content: flex-end;
|
|
align-items: flex-start;
|
|
flex: 1;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
margin-top: 1rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.share-date {
|
|
margin-right: .75rem;
|
|
vertical-align: middle;
|
|
line-height: 2rem;
|
|
color: $type-gray;
|
|
font-size: .875rem;
|
|
|
|
@media #{$small} {
|
|
margin-top: .5rem;
|
|
width: 100%;
|
|
order: 100;
|
|
}
|
|
|
|
.copyleft {
|
|
display: inline-block;
|
|
transform: scale(-1, 1);
|
|
margin: 0;
|
|
text-align: right;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
.action-buttons {
|
|
display: flex;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
color: $type-white;
|
|
font-size: .8rem;
|
|
font-weight: 500;
|
|
justify-content: flex-end;
|
|
flex-wrap: wrap;
|
|
|
|
.action-button {
|
|
margin: 0 0 0 .5rem;
|
|
border-radius: 19px;
|
|
background-color: $ui-blue;
|
|
padding: 0 .75rem;
|
|
height: 2rem;
|
|
text-decoration: none;
|
|
line-height: .875rem;
|
|
font-size: .75rem;
|
|
font-weight: bold;
|
|
|
|
&:active {
|
|
filter: brightness(90%);
|
|
}
|
|
&.studio-button,
|
|
&.copy-link-button,
|
|
&.report-button {
|
|
&:before {
|
|
display: inline-block;
|
|
margin-right: .25rem;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
width: .875rem;
|
|
height: .875rem;
|
|
vertical-align: bottom;
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
&.studio-button {
|
|
&:before {
|
|
background-image: url("/svgs/project/studio-add-white.svg");
|
|
}
|
|
}
|
|
|
|
&.copy-link-button {
|
|
&:before {
|
|
background-image: url("/svgs/project/copy-link-white.svg");
|
|
}
|
|
}
|
|
|
|
&.report-button {
|
|
&:before {
|
|
background-image: url("/svgs/project/report-white.svg");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.subactions, .subactions .action-buttons {
|
|
@media #{$medium-and-smaller} {
|
|
margin: 0;
|
|
justify-content: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
& > div, .action-button {
|
|
@media #{$medium-and-smaller} {
|
|
padding: 0 1rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.studio-button-error {
|
|
top: auto;
|
|
transform: none;
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|