2015-04-09 15:46:29 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2015-04-09 15:46:29 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
2015-07-13 12:26:29 +02:00
|
|
|
|
2015-04-09 15:46:29 +02:00
|
|
|
#workspace-toolbar {
|
|
|
|
display: none;
|
2015-07-30 12:03:37 +02:00
|
|
|
color: $workspace-button-color;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
2015-04-09 15:46:29 +02:00
|
|
|
position: absolute;
|
2015-07-13 12:26:29 +02:00
|
|
|
top: 35px;
|
2015-04-09 15:46:29 +02:00
|
|
|
left:0;
|
2015-09-23 23:49:48 +02:00
|
|
|
right: 0;
|
2015-04-09 15:46:29 +02:00
|
|
|
padding: 7px;
|
2015-07-13 16:08:17 +02:00
|
|
|
height: 40px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: #fff;
|
|
|
|
border-bottom: 1px solid $secondary-border-color;
|
2015-07-30 12:03:37 +02:00
|
|
|
white-space: nowrap;
|
2015-09-23 23:49:48 +02:00
|
|
|
transition: right 0.2s ease;
|
|
|
|
overflow: hidden;
|
2015-07-30 12:03:37 +02:00
|
|
|
|
|
|
|
.button {
|
|
|
|
@include workspace-button;
|
|
|
|
margin-right: 10px;
|
|
|
|
padding: 2px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-group {
|
|
|
|
@include disable-selection;
|
|
|
|
|
|
|
|
.button:first-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.spinner-group) {
|
|
|
|
.button:not(:first-child) {
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.button.active {
|
|
|
|
background: $workspace-button-background-active;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner-value {
|
|
|
|
width: 25px;
|
|
|
|
color: $workspace-button-color;
|
|
|
|
padding: 0 5px;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
border-top: 1px solid $secondary-border-color;
|
|
|
|
border-bottom: 1px solid $secondary-border-color;
|
|
|
|
margin: 0;
|
|
|
|
height: 24px;
|
|
|
|
font-size: 12px;
|
|
|
|
background: #f9f9f9;
|
|
|
|
line-height: 22px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2015-04-09 15:46:29 +02:00
|
|
|
|
|
|
|
}
|