2016-05-11 19:31:17 +00:00
|
|
|
.toolbar__play-button {
|
|
|
|
@extend %toolbar-button;
|
2016-05-12 21:22:54 +00:00
|
|
|
margin-right: #{15 / $base-font-size}rem;
|
2016-06-09 23:30:59 +00:00
|
|
|
&--selected {
|
2016-06-10 19:14:55 +00:00
|
|
|
@extend %toolbar-button--selected;
|
2016-05-12 22:11:09 +00:00
|
|
|
}
|
2016-06-21 03:04:41 +00:00
|
|
|
& span {
|
|
|
|
padding-left: #{2 / $base-font-size}rem;
|
|
|
|
}
|
2016-05-12 21:22:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar__stop-button {
|
|
|
|
@extend %toolbar-button;
|
2016-06-09 23:30:59 +00:00
|
|
|
&--selected {
|
2016-06-10 19:14:55 +00:00
|
|
|
@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 {
|
|
|
|
@extend %toolbar-button;
|
2016-06-21 03:04:41 +00:00
|
|
|
line-height: #{50 / $base-font-size}rem;
|
2016-06-17 17:37:29 +00:00
|
|
|
margin-left: auto;
|
|
|
|
&--selected {
|
|
|
|
@extend %toolbar-button--selected;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 19:31:17 +00:00
|
|
|
.toolbar__logo {
|
|
|
|
margin-right: #{30 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar {
|
|
|
|
padding: #{20 / $base-font-size}rem #{60 / $base-font-size}rem;
|
|
|
|
display: flex;
|
2016-06-16 20:07:38 +00:00
|
|
|
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 02:00:11 +00:00
|
|
|
color: $light-inactive-text-color;
|
2016-06-16 20:07:38 +00:00
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
|
|
color: $light-primary-text-color;
|
|
|
|
}
|
|
|
|
&:focus {
|
2016-07-12 02:00:11 +00:00
|
|
|
color: $light-inactive-text-color;
|
2016-06-16 20:07:38 +00:00
|
|
|
}
|
2016-06-08 20:35:59 +00:00
|
|
|
}
|
2016-07-15 20:47:12 +00:00
|
|
|
|
|
|
|
.toolbar__button-label {
|
2016-07-15 21:00:40 +00:00
|
|
|
@extend %hidden-label
|
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;
|
|
|
|
}
|