mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-13 17:21:14 -05:00
964459fb17
Placeholder text go away
590 lines
13 KiB
SCSS
590 lines
13 KiB
SCSS
@import "../../colors";
|
|
@import "../../frameless";
|
|
|
|
/* stage size constants */
|
|
$player-width: 482px;
|
|
$player-height: 406px;
|
|
$stage-width: 480px;
|
|
|
|
/* override view padding for share banner */
|
|
#view {
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.gui {
|
|
position: absolute;
|
|
top: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.page-has-admin-panel {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.page-has-admin-panel.admin-panel-open {
|
|
padding-left: 250px;
|
|
}
|
|
|
|
.preview {
|
|
|
|
.inner {
|
|
margin: 0 auto;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
max-width: 90%;
|
|
}
|
|
|
|
@media #{$intermediate} {
|
|
width: 90%;
|
|
min-width: 640px;
|
|
}
|
|
}
|
|
|
|
.project-admin-panel {
|
|
margin-top: 51px;
|
|
border: 0;
|
|
padding: 1rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.project-admin-panel.admin-panel-open {
|
|
padding: 0;
|
|
width: 250px;
|
|
}
|
|
|
|
.admin-iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
margin: 0;
|
|
border: 0;
|
|
width: 250px;
|
|
height: 100%;
|
|
}
|
|
|
|
.admin-iframe.modal-open,
|
|
.project-admin-panel.admin-panel-open.modal-open {
|
|
background-color: transparent;
|
|
width: 100%;
|
|
}
|
|
|
|
.project-title {
|
|
font-size: 1.75rem;
|
|
font-weight: 500;
|
|
|
|
&.has-error {
|
|
.validation-message {
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
&.no-edit {
|
|
/* titles of projects you don't own should not
|
|
show the full title if this is too long */
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.project-header {
|
|
margin-right: 2rem;
|
|
min-width: 0;
|
|
flex-grow: 1;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
flex-wrap: nowrap;
|
|
|
|
.inplace-input {
|
|
height: calc(3rem - 4px);
|
|
}
|
|
|
|
@media #{$medium-and-smaller} {
|
|
flex-direction: row;
|
|
}
|
|
|
|
@media #{$small} {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
img {
|
|
|
|
&.avatar {
|
|
border: 0;
|
|
border-radius: 5px;
|
|
width: 3rem;
|
|
height: 3rem;
|
|
|
|
&.remix {
|
|
margin-right: .5em;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.title {
|
|
margin-left: 1rem;
|
|
min-width: 0;
|
|
text-align: left;
|
|
font-size: .8rem;
|
|
flex-grow: 1;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
min-width: 100%;
|
|
}
|
|
}
|
|
|
|
.validation-message {
|
|
$arrow-border-width: 1rem;
|
|
display: block;
|
|
position: absolute;
|
|
z-index: 1;
|
|
margin-top: $arrow-border-width;
|
|
border: 1px solid $active-gray;
|
|
border-radius: 5px;
|
|
background-color: $ui-orange;
|
|
padding: 1rem;
|
|
max-width: 18.75rem;
|
|
min-height: 1rem;
|
|
overflow: visible;
|
|
color: $type-white;
|
|
font-size: 1rem;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
margin-top: calc($arrow-border-width / 2);
|
|
width: 100%;
|
|
}
|
|
|
|
&:before {
|
|
display: block;
|
|
position: absolute;
|
|
top: -.5rem;
|
|
left: calc(50% - calc(#{$arrow-border-width} / 2));
|
|
|
|
transform: rotate(135deg);
|
|
|
|
border-bottom: 1px solid $active-gray;
|
|
border-left: 1px solid $active-gray;
|
|
border-radius: 5px;
|
|
|
|
background-color: $ui-orange;
|
|
width: $arrow-border-width;
|
|
height: $arrow-border-width;
|
|
|
|
content: "";
|
|
|
|
@media #{$medium-and-smaller} {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.row {
|
|
|
|
&.has-error {
|
|
.inplace-input,
|
|
.inplace-textarea {
|
|
border: 1px solid $ui-orange;
|
|
}
|
|
}
|
|
|
|
.col-sm-9 {
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.project-buttons {
|
|
font-weight: bold;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.button {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.inplace-textarea::placeholder {
|
|
padding: 0;
|
|
text-align: start;
|
|
}
|
|
|
|
.comments-container {
|
|
padding-right: 1.5rem;
|
|
min-width: 65%;
|
|
max-width: 100%;
|
|
flex: 1;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.comment, .comment-top-row, .comment-bottom-row {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.comment-bubble {
|
|
text-align: left;
|
|
}
|
|
|
|
.comments-turned-off {
|
|
border: 1px solid $ui-blue-25percent;
|
|
border-radius: .5rem;
|
|
background: $ui-blue-10percent;
|
|
padding: 1.5rem 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.comments-allowed-input {
|
|
margin-right: 3px;
|
|
}
|
|
}
|
|
|
|
.remix-button,
|
|
.see-inside-button {
|
|
margin-top: 0;
|
|
border-radius: .25rem;
|
|
padding-top: .6875rem;
|
|
padding-right: .9375rem;
|
|
padding-bottom: .6875rem;
|
|
padding-left: .875rem;
|
|
height: 2.5rem;
|
|
font-size: .875rem;
|
|
|
|
&:before {
|
|
display: inline-block;
|
|
margin-top: -2px;
|
|
margin-right: .4375rem;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: contain;
|
|
width: 1.125rem;
|
|
height: 1.125rem;
|
|
vertical-align: middle;
|
|
content: "";
|
|
}
|
|
}
|
|
|
|
.remix-button {
|
|
background-color: $ui-aqua;
|
|
|
|
&:before {
|
|
background-image: url("/svgs/project/remix-white.svg");
|
|
}
|
|
}
|
|
|
|
.remix-button.remixing {
|
|
opacity: .6;
|
|
|
|
&:before {
|
|
animation-name: remix-intro, remix-spin;
|
|
animation-duration: .25s, .75s;
|
|
animation-timing-function: cubic-bezier(.3, -3, .6, 3), ease-out;
|
|
animation-delay: 0s, .25s;
|
|
animation-iteration-count: 1, infinite;
|
|
animation-direction: normal;
|
|
width: 1.25rem;
|
|
height: 1.25rem;
|
|
-webkit-animation-name: intro, spin;
|
|
-webkit-animation-duration: .25s, .75s;
|
|
-webkit-animation-iteration-count: 1, infinite;
|
|
-webkit-animation-delay: 0s, .25s;
|
|
-webkit-animation-timing-function: cubic-bezier(.3, -3, .6, 3), ease-out;
|
|
transform-origin: center;
|
|
}
|
|
@keyframes remix-intro {
|
|
0% {
|
|
transform: scale(0);
|
|
opacity: 0;
|
|
-webkit-transform: scale(0);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
-webkit-transform: scale(1);
|
|
}
|
|
}
|
|
|
|
@keyframes remix-spin {
|
|
0% {
|
|
transform: rotate(0);
|
|
-webkit-transform: rotate(0);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(359deg);
|
|
-webkit-transform: rotate(359deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
.see-inside-button {
|
|
|
|
&:before {
|
|
background-image: url("/svgs/project/see-inside-white.svg");
|
|
}
|
|
}
|
|
|
|
.preview-row {
|
|
margin-top: 1rem;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
flex-wrap: nowrap;
|
|
|
|
&.force-row {
|
|
@media #{$medium-and-smaller} {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
}
|
|
|
|
.guiPlayer {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: $player-width;
|
|
|
|
$alert-bg: rgba(255, 255, 255, .85);
|
|
.project-info-alert {
|
|
position: absolute;
|
|
z-index: 100;
|
|
margin: 60px 15px;
|
|
border-radius: .25rem;
|
|
background: $alert-bg;
|
|
padding: .75rem;
|
|
text-align: center;
|
|
font-size: .95rem;
|
|
}
|
|
|
|
@media #{$small} {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.force-center {
|
|
@media #{$medium-and-smaller} {
|
|
align-self: center;
|
|
}
|
|
}
|
|
|
|
.project-notes {
|
|
margin-left: 1rem;
|
|
height: $player-height;
|
|
align-items: flex-start;
|
|
flex: 1;
|
|
flex-flow: column;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
margin-top: 1rem;
|
|
margin-left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
> .description-block:first-child {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
|
|
.remix-credit {
|
|
margin-bottom: 1rem;
|
|
border: 1px solid $ui-blue-10percent;
|
|
border-radius: 8px;
|
|
background-color: $ui-blue-10percent;
|
|
padding: .5rem;
|
|
width: calc(100% - 1rem);
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
.credit-text {
|
|
font-size: .875rem;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.description-block {
|
|
display: flex;
|
|
width: 100%;
|
|
min-height: 0;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
flex: 1;
|
|
}
|
|
|
|
.project-textlabel {
|
|
margin: 0 0 .5rem 0;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.project-description {
|
|
margin-bottom: .75rem;
|
|
border: 1px solid $ui-blue-10percent;
|
|
border-radius: 8px;
|
|
background-color: $ui-blue-10percent;
|
|
padding: .5rem;
|
|
width: calc(100% - (1rem + 2px));
|
|
overflow: auto;
|
|
white-space: pre-line;
|
|
font-size: 1rem;
|
|
// flex-grow
|
|
flex: 1;
|
|
}
|
|
|
|
.project-description.last {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.project-description-form {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.project-description-edit {
|
|
display: flex;
|
|
margin-bottom: .75rem;
|
|
border: 1px solid $ui-blue-10percent;
|
|
border-radius: 8px;
|
|
background-color: $ui-blue-10percent;
|
|
padding: .5rem;
|
|
width: 100%;
|
|
white-space: pre-line;
|
|
// flex-grow
|
|
flex: 1;
|
|
|
|
&.last {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&.textarea-row {
|
|
border: 0;
|
|
background-color: inherit;
|
|
padding: 0;
|
|
}
|
|
|
|
&.has-error {
|
|
.validation-message {
|
|
transform: translate(26rem, 0);
|
|
}
|
|
}
|
|
|
|
& > .grow {
|
|
display: flex;
|
|
flex: 1;
|
|
}
|
|
|
|
::-webkit-input-placeholder { /* Chrome <=56, Safari < 10 */
|
|
transition: opacity .25s;
|
|
opacity: 1;
|
|
-webkit-transition: opacity .25s;
|
|
}
|
|
:-moz-placeholder { /* FF 4-18 */
|
|
transition: opacity .25s;
|
|
opacity: 1;
|
|
-moz-transition: opacity .25s;
|
|
}
|
|
::-moz-placeholder { /* FF 19-51 */
|
|
transition: opacity .25s;
|
|
opacity: 1;
|
|
-moz-transition: opacity .25s;
|
|
}
|
|
:-ms-input-placeholder { /* IE 10+ */
|
|
transition: opacity .25s;
|
|
opacity: 1;
|
|
-ms-transition: opacity .25s;
|
|
}
|
|
::placeholder { /* Modern Browsers */
|
|
transition: opacity .25s;
|
|
opacity: 1;
|
|
}
|
|
|
|
*:focus::-webkit-input-placeholder { opacity: 0; } /* Chrome <=56, Safari < 10 */
|
|
*:focus:-moz-placeholder { opacity: 0; } /* FF 4-18 */
|
|
*:focus::-moz-placeholder { opacity: 0; } /* FF 19-50 */
|
|
*:focus:-ms-input-placeholder { opacity: 0; } /* IE 10+ */
|
|
*:focus::placeholder { opacity: 0; } /* Modern Browsers */
|
|
}
|
|
|
|
|
|
.comments-header {
|
|
padding: 0 0 1rem 0;
|
|
justify-content: space-between;
|
|
|
|
h4 {
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
|
|
.project-lower-container {
|
|
margin-top: 1rem;
|
|
background-color: $ui-blue-10percent;
|
|
padding: 1rem 0;
|
|
min-height: 12rem;
|
|
}
|
|
|
|
.create-comment {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.load-more-button {
|
|
margin-left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.extension-list {
|
|
justify-content: flex-start;
|
|
flex-direction: row;
|
|
|
|
@media #{$medium-and-smaller} {
|
|
justify-content: center;
|
|
}
|
|
|
|
}
|
|
|
|
.remix-list,
|
|
.studio-list {
|
|
flex-direction: column;
|
|
|
|
.list-title {
|
|
margin-left: 1rem;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.creator-image img {
|
|
max-width: 2rem;
|
|
max-height: 2rem;
|
|
}
|
|
|
|
.thumbnail-column {
|
|
display: inline-block;
|
|
width: 100%;
|
|
|
|
/* TODO: the following can be transferred to
|
|
src/components/thumbnailcolumn/thumbnailcolumn.scss
|
|
after testing */
|
|
@media #{$medium-and-smaller} {
|
|
flex-direction: row;
|
|
|
|
.thumbnail {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media #{$medium-and-smaller} {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
}
|