2016-05-11 19:31:17 +00:00
|
|
|
.toolbar__play-button {
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
|
|
|
@extend %toolbar-button;
|
|
|
|
&--selected {
|
|
|
|
@extend %toolbar-button--selected;
|
|
|
|
}
|
2016-09-24 04:46:06 +00:00
|
|
|
&:disabled {
|
|
|
|
cursor: auto;
|
|
|
|
& g {
|
|
|
|
fill: getThemifyVariable('button-border-color');
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background-color: getThemifyVariable('toolbar-button-background-color');
|
|
|
|
& g {
|
|
|
|
fill: getThemifyVariable('button-border-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-14 15:55:53 +00:00
|
|
|
}
|
|
|
|
margin-right: #{15 / $base-font-size}rem;
|
|
|
|
& span {
|
2017-02-17 22:07:53 +00:00
|
|
|
padding-left: #{3 / $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;
|
2016-09-28 17:15:50 +00:00
|
|
|
margin-right: #{15 / $base-font-size}rem;
|
2016-09-13 20:42:06 +00:00
|
|
|
&--selected {
|
|
|
|
@extend %toolbar-button--selected;
|
|
|
|
}
|
2016-06-08 20:35:59 +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;
|
2017-02-17 22:07:53 +00:00
|
|
|
line-height: #{52 / $base-font-size}rem;
|
2016-09-13 20:42:06 +00:00
|
|
|
&--selected {
|
|
|
|
@extend %toolbar-button--selected;
|
2017-02-17 22:07:53 +00:00
|
|
|
line-height: #{52 / $base-font-size}rem;
|
2016-09-13 20:42:06 +00:00
|
|
|
}
|
2016-06-17 17:37:29 +00:00
|
|
|
}
|
2017-02-17 22:07:53 +00:00
|
|
|
line-height: #{52 / $base-font-size}rem;
|
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;
|
|
|
|
}
|
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() {
|
|
|
|
& g {
|
|
|
|
fill: getThemifyVariable('logo-color');
|
|
|
|
}
|
|
|
|
}
|
2016-05-11 19:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar {
|
2016-12-19 22:52:21 +00:00
|
|
|
padding: #{20 / $base-font-size}rem #{34 / $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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
height: 70%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar__project-name {
|
2016-09-22 03:39:50 +00:00
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('inactive-text-color');
|
|
|
|
&:hover {
|
|
|
|
color: getThemifyVariable('primary-text-color');
|
2016-10-26 21:40:10 +00:00
|
|
|
& .toolbar__edit-name-button path {
|
|
|
|
fill: getThemifyVariable('primary-text-color');
|
|
|
|
}
|
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;
|
2017-03-16 04:22:08 +00:00
|
|
|
line-height: #{18 / $base-font-size}rem;
|
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() {
|
|
|
|
color: getThemifyVariable('inactive-text-color');
|
|
|
|
}
|
2016-07-15 15:54:47 +00:00
|
|
|
}
|
2016-09-28 17:15:50 +00:00
|
|
|
|
|
|
|
.toolbar__autorefresh-label {
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('inactive-text-color');
|
|
|
|
}
|
|
|
|
margin-left: #{5 / $base-font-size}rem;
|
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
}
|
2016-10-26 21:40:10 +00:00
|
|
|
|
2017-05-03 15:46:12 +00:00
|
|
|
.toolbar__serve-secure {
|
|
|
|
margin-left: #{20 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar__serve-secure-label {
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('inactive-text-color');
|
|
|
|
}
|
|
|
|
margin-left: #{5 / $base-font-size}rem;
|
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar__serve-secure-help {
|
|
|
|
display: inline-block;
|
2017-05-10 20:12:24 +00:00
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2017-05-03 15:46:12 +00:00
|
|
|
& svg {
|
2017-05-10 20:12:24 +00:00
|
|
|
width: #{10 / $base-font-size}rem;
|
|
|
|
height: #{10 / $base-font-size}rem;
|
2017-05-03 15:46:12 +00:00
|
|
|
}
|
|
|
|
@include themify() {
|
|
|
|
& path {
|
|
|
|
fill: getThemifyVariable('inactive-text-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
height: #{18 / $base-font-size}rem;
|
|
|
|
margin-left: #{-4 / $base-font-size}rem;
|
|
|
|
& svg {
|
|
|
|
width: #{18 / $base-font-size}rem;
|
|
|
|
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 {
|
2016-10-26 21:40:10 +00:00
|
|
|
fill: getThemifyVariable('inactive-text-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|