p5.js-web-editor/client/styles/components/_toolbar.scss

83 lines
1.4 KiB
SCSS
Raw Normal View History

.toolbar__play-button {
@include themify() {
@extend %toolbar-button;
&--selected {
@extend %toolbar-button--selected;
}
2016-09-14 17:55:53 +02:00
}
margin-right: #{15 / $base-font-size}rem;
& span {
padding-left: #{2 / $base-font-size}rem;
2016-06-21 05:04:41 +02:00
}
2016-05-12 23:22:54 +02:00
}
2016-08-16 02:28:18 +02:00
.toolbar__play-sketch-button {
@extend %hidden-element;
}
2016-05-12 23:22:54 +02:00
.toolbar__stop-button {
@include themify() {
@extend %toolbar-button;
&--selected {
@extend %toolbar-button--selected;
}
2016-06-08 22:35:59 +02:00
}
}
2016-06-17 19:37:29 +02:00
.toolbar__preferences-button {
@include themify() {
@extend %toolbar-button;
&--selected {
@extend %toolbar-button--selected;
}
2016-06-17 19:37:29 +02:00
}
2016-09-14 17:55:53 +02:00
line-height: #{50 / $base-font-size}rem;
margin-left: auto;
2016-06-17 19:37:29 +02:00
}
.toolbar__logo {
margin-right: #{30 / $base-font-size}rem;
}
.toolbar {
padding: #{20 / $base-font-size}rem #{60 / $base-font-size}rem;
display: flex;
align-items: center;
}
.toolbar__project-name-container {
border-left: 2px dashed;
margin-left: #{10 / $base-font-size}rem;
padding-left: #{10 / $base-font-size}rem;
height: 70%;
display: flex;
align-items: center;
}
.toolbar__project-name {
2016-07-12 04:00:11 +02:00
color: $light-inactive-text-color;
cursor: pointer;
&:hover {
color: $light-primary-text-color;
}
&:focus {
2016-07-12 04:00:11 +02:00
color: $light-inactive-text-color;
}
.toolbar__project-name-container--editing & {
display: none;
}
}
.toolbar__project-name-input {
display: none;
border: 0px;
.toolbar__project-name-container--editing & {
display: block;
}
2016-06-08 22:35:59 +02:00
}
2016-07-15 22:47:12 +02:00
2016-07-15 17:54:47 +02:00
.toolbar__project-owner {
margin-left: #{5 / $base-font-size}rem;
}