2016-05-11 19:31:17 +00:00
|
|
|
.toolbar__play-button {
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
|
|
|
@extend %toolbar-button;
|
2020-04-06 14:54:39 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-04-29 22:34:37 +00:00
|
|
|
padding: 0 0 0 #{3 / $base-font-size}rem;
|
2016-09-13 20:42:06 +00:00
|
|
|
&--selected {
|
|
|
|
@extend %toolbar-button--selected;
|
|
|
|
}
|
2016-09-24 04:46:06 +00:00
|
|
|
&:disabled {
|
|
|
|
cursor: auto;
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-09-24 04:46:06 +00:00
|
|
|
fill: getThemifyVariable('button-border-color');
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background-color: getThemifyVariable('toolbar-button-background-color');
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-09-24 04:46:06 +00:00
|
|
|
fill: getThemifyVariable('button-border-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-14 15:55:53 +00:00
|
|
|
}
|
|
|
|
margin-right: #{15 / $base-font-size}rem;
|
2020-04-06 14:54:39 +00:00
|
|
|
span {
|
|
|
|
padding-left: #{4 / $base-font-size}rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-04-09 20:51:25 +00:00
|
|
|
width: #{20 / $base-font-size}rem;
|
|
|
|
height: #{20 / $base-font-size}rem;
|
2016-06-21 03:04:41 +00:00
|
|
|
}
|
2016-05-12 21:22:54 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 00:28:18 +00:00
|
|
|
.toolbar__play-sketch-button {
|
|
|
|
@extend %hidden-element;
|
|
|
|
}
|
|
|
|
|
2016-05-12 21:22:54 +00:00
|
|
|
.toolbar__stop-button {
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
|
|
|
@extend %toolbar-button;
|
2020-04-06 14:54:39 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2016-09-28 17:15:50 +00:00
|
|
|
margin-right: #{15 / $base-font-size}rem;
|
2020-04-29 22:34:37 +00:00
|
|
|
padding: 0;
|
2016-09-13 20:42:06 +00:00
|
|
|
&--selected {
|
|
|
|
@extend %toolbar-button--selected;
|
|
|
|
}
|
2016-06-08 20:35:59 +00:00
|
|
|
}
|
2020-04-06 14:54:39 +00:00
|
|
|
span {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-04-09 20:51:25 +00:00
|
|
|
width: #{20 / $base-font-size}rem;
|
|
|
|
height: #{20 / $base-font-size}rem;
|
2020-04-06 14:54:39 +00:00
|
|
|
}
|
2016-05-11 19:31:17 +00:00
|
|
|
}
|
|
|
|
|
2016-06-17 17:37:29 +00:00
|
|
|
.toolbar__preferences-button {
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
|
|
|
@extend %toolbar-button;
|
2020-04-06 14:54:39 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-04-29 22:34:37 +00:00
|
|
|
padding: 0;
|
2016-09-13 20:42:06 +00:00
|
|
|
&--selected {
|
|
|
|
@extend %toolbar-button--selected;
|
|
|
|
}
|
2016-06-17 17:37:29 +00:00
|
|
|
}
|
2016-09-14 15:55:53 +00:00
|
|
|
margin-left: auto;
|
2017-02-17 22:07:53 +00:00
|
|
|
& span {
|
|
|
|
padding-left: #{1 / $base-font-size}rem;
|
2020-04-06 14:54:39 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-04-09 20:51:25 +00:00
|
|
|
width: #{20 / $base-font-size}rem;
|
|
|
|
height: #{20 / $base-font-size}rem;
|
2017-02-17 22:07:53 +00:00
|
|
|
}
|
2016-06-17 17:37:29 +00:00
|
|
|
}
|
|
|
|
|
2016-05-11 19:31:17 +00:00
|
|
|
.toolbar__logo {
|
|
|
|
margin-right: #{30 / $base-font-size}rem;
|
2016-10-18 02:57:29 +00:00
|
|
|
@include themify() {
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-10-18 02:57:29 +00:00
|
|
|
fill: getThemifyVariable('logo-color');
|
|
|
|
}
|
|
|
|
}
|
2016-05-11 19:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar {
|
2020-04-21 21:49:02 +00:00
|
|
|
padding: #{10 / $base-font-size}rem #{20 / $base-font-size}rem;
|
2016-05-11 19:31:17 +00:00
|
|
|
display: flex;
|
2016-06-16 20:07:38 +00:00
|
|
|
align-items: center;
|
2020-04-21 21:49:02 +00:00
|
|
|
@include themify() {
|
|
|
|
border-bottom: 1px dashed map-get($theme-map, 'nav-border-color');
|
|
|
|
}
|
2016-06-16 20:07:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar__project-name-container {
|
2016-09-14 22:38:57 +00:00
|
|
|
@include themify() {
|
2016-09-22 03:39:50 +00:00
|
|
|
border-color: getThemifyVariable('inactive-text-color');
|
2016-09-14 22:38:57 +00:00
|
|
|
}
|
2016-06-16 20:07:38 +00:00
|
|
|
margin-left: #{10 / $base-font-size}rem;
|
|
|
|
padding-left: #{10 / $base-font-size}rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar__project-name {
|
2016-09-22 03:39:50 +00:00
|
|
|
@include themify() {
|
2020-04-27 20:48:55 +00:00
|
|
|
color: getThemifyVariable('secondary-text-color');
|
2016-09-22 03:39:50 +00:00
|
|
|
&:hover {
|
2020-04-27 20:48:55 +00:00
|
|
|
color: getThemifyVariable('logo-color');
|
2016-10-26 21:40:10 +00:00
|
|
|
& .toolbar__edit-name-button path {
|
2020-04-27 20:48:55 +00:00
|
|
|
fill: getThemifyVariable('logo-color');
|
2016-10-26 21:40:10 +00:00
|
|
|
}
|
2016-09-22 03:39:50 +00:00
|
|
|
}
|
2016-06-16 20:07:38 +00:00
|
|
|
}
|
2016-09-22 03:39:50 +00:00
|
|
|
cursor: pointer;
|
2020-01-08 17:33:36 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2016-08-15 16:42:13 +00:00
|
|
|
|
|
|
|
.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 20:35:59 +00:00
|
|
|
}
|
2016-07-15 20:47:12 +00:00
|
|
|
|
2016-07-15 15:54:47 +00:00
|
|
|
.toolbar__project-owner {
|
|
|
|
margin-left: #{5 / $base-font-size}rem;
|
2017-02-19 18:33:14 +00:00
|
|
|
@include themify() {
|
2020-04-21 21:49:02 +00:00
|
|
|
color: getThemifyVariable('secondary-text-color');
|
2017-02-19 18:33:14 +00:00
|
|
|
}
|
2016-07-15 15:54:47 +00:00
|
|
|
}
|
2016-09-28 17:15:50 +00:00
|
|
|
|
|
|
|
.toolbar__autorefresh-label {
|
|
|
|
@include themify() {
|
2020-04-21 21:49:02 +00:00
|
|
|
color: getThemifyVariable('secondary-text-color');
|
2017-05-03 15:46:12 +00:00
|
|
|
}
|
|
|
|
margin-left: #{5 / $base-font-size}rem;
|
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
2016-10-26 21:40:10 +00:00
|
|
|
.toolbar__edit-name-button {
|
2016-10-26 21:49:42 +00:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2020-04-29 22:34:37 +00:00
|
|
|
width: #{18 / $base-font-size}rem;
|
2016-10-26 21:49:42 +00:00
|
|
|
height: #{18 / $base-font-size}rem;
|
2016-10-26 21:40:10 +00:00
|
|
|
@include themify() {
|
2017-03-16 04:22:08 +00:00
|
|
|
& path {
|
2020-04-27 20:48:55 +00:00
|
|
|
fill: getThemifyVariable('secondary-text-color');
|
2016-10-26 21:40:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|