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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
@mixin disable-selection {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2016-08-04 17:49:36 +02:00
|
|
|
@mixin enable-selection {
|
|
|
|
-webkit-user-select: auto;
|
|
|
|
-khtml-user-select: auto;
|
|
|
|
-moz-user-select: auto;
|
|
|
|
-ms-user-select: auto;
|
|
|
|
user-select: auto;
|
|
|
|
}
|
|
|
|
|
2015-04-09 15:46:29 +02:00
|
|
|
@mixin component-border {
|
2015-07-13 12:26:29 +02:00
|
|
|
border: 1px solid $primary-border-color;
|
2015-07-12 00:43:45 +02:00
|
|
|
box-sizing: border-box;
|
2015-07-13 16:08:17 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin workspace-button {
|
2015-07-14 00:21:03 +02:00
|
|
|
@include disable-selection;
|
2015-07-13 16:08:17 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
2016-09-19 14:54:23 +02:00
|
|
|
color: $workspace-button-color !important;
|
2015-07-13 16:08:17 +02:00
|
|
|
background: $workspace-button-background;
|
2016-05-31 14:09:27 +02:00
|
|
|
border: 1px solid $form-input-border-color;
|
2015-07-13 16:08:17 +02:00
|
|
|
text-align: center;
|
|
|
|
margin:0;
|
|
|
|
text-decoration: none;
|
2015-07-14 00:21:03 +02:00
|
|
|
cursor:pointer;
|
2016-09-19 14:54:23 +02:00
|
|
|
|
2017-09-26 23:51:08 +02:00
|
|
|
&.disabled, &:disabled {
|
2015-07-13 16:08:17 +02:00
|
|
|
cursor: default;
|
2016-09-19 14:54:23 +02:00
|
|
|
color: $workspace-button-color-disabled !important;
|
2015-07-13 16:08:17 +02:00
|
|
|
}
|
2016-08-04 17:49:36 +02:00
|
|
|
&:hover, &:focus {
|
2015-07-14 00:21:03 +02:00
|
|
|
text-decoration: none;
|
2016-08-04 17:49:36 +02:00
|
|
|
}
|
2017-09-26 23:51:08 +02:00
|
|
|
&:not(.disabled):not(:disabled):hover, {
|
2016-09-19 14:54:23 +02:00
|
|
|
color: $workspace-button-color-hover !important;
|
2015-07-13 16:08:17 +02:00
|
|
|
background: $workspace-button-background-hover;
|
|
|
|
}
|
2017-09-26 23:51:08 +02:00
|
|
|
&:not(.disabled):not(:disabled):focus {
|
2016-09-19 14:54:23 +02:00
|
|
|
color: $workspace-button-color-focus !important;
|
2015-07-13 16:08:17 +02:00
|
|
|
}
|
2017-09-26 23:51:08 +02:00
|
|
|
&:not(.disabled):not(:disabled):active {
|
2016-09-19 14:54:23 +02:00
|
|
|
color: $workspace-button-color-active !important;
|
2015-07-13 16:08:17 +02:00
|
|
|
background: $workspace-button-background-active;
|
2015-09-23 23:49:48 +02:00
|
|
|
text-decoration: none;
|
2015-07-13 16:08:17 +02:00
|
|
|
}
|
2018-01-10 11:02:35 +01:00
|
|
|
// &.selected:not(.disabled):not(:disabled) {
|
|
|
|
// color: $workspace-button-color-selected !important;
|
|
|
|
// background: $workspace-button-background-active;
|
|
|
|
// background: #9f9;
|
|
|
|
// }
|
2016-01-13 00:55:18 +01:00
|
|
|
.button-group &:not(:first-child) {
|
|
|
|
border-left: none;
|
2016-09-19 14:54:23 +02:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
.button-group &:not(:last-child) {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
2016-01-13 00:55:18 +01:00
|
|
|
}
|
2017-04-28 21:49:01 +02:00
|
|
|
.button-group-vertical & {
|
|
|
|
display: block;
|
|
|
|
min-width: 22px;
|
|
|
|
}
|
|
|
|
.button-group-vertical &:not(:first-child) {
|
|
|
|
border-top: none;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
|
|
|
.button-group-vertical &:not(:last-child) {
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
2016-01-31 23:27:14 +01:00
|
|
|
|
2017-12-20 15:37:34 +01:00
|
|
|
.button-row &:not(:first-child) {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
2016-01-31 23:27:14 +01:00
|
|
|
&:focus {
|
|
|
|
outline: 1px solid $workspace-button-color-focus-outline;
|
|
|
|
}
|
2017-10-07 01:18:20 +02:00
|
|
|
|
|
|
|
&.primary {
|
|
|
|
border-color: $editor-button-background-primary;
|
|
|
|
color: $editor-button-color-primary !important;
|
|
|
|
background: $editor-button-background-primary;
|
|
|
|
&.disabled, &.ui-state-disabled {
|
|
|
|
background: none;
|
|
|
|
color: $editor-button-color !important;
|
|
|
|
border-color: $form-input-border-color;
|
|
|
|
}
|
|
|
|
&:not(.disabled):not(.ui-button-disabled):hover {
|
|
|
|
border-color: $editor-button-background-primary-hover;
|
|
|
|
background: $editor-button-background-primary-hover;
|
|
|
|
color: $editor-button-color-primary !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
2017-04-28 21:49:01 +02:00
|
|
|
.button-group-vertical {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2016-10-25 22:15:06 +02:00
|
|
|
.button-group:not(:last-child) {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-18 11:28:22 +01:00
|
|
|
@mixin workspace-button-toggle {
|
|
|
|
@include workspace-button;
|
2016-09-19 14:54:23 +02:00
|
|
|
color: $workspace-button-toggle-color !important;
|
2016-08-13 00:00:28 +02:00
|
|
|
background:$workspace-button-background-active;
|
2016-08-13 01:33:41 +02:00
|
|
|
margin-bottom: 1px;
|
2016-02-18 11:28:22 +01:00
|
|
|
&.selected:not(.disabled) {
|
2016-09-19 14:54:23 +02:00
|
|
|
color: $workspace-button-toggle-color-selected !important;
|
2016-02-18 11:28:22 +01:00
|
|
|
background: $workspace-button-background;
|
2016-08-13 00:00:28 +02:00
|
|
|
border-bottom-width: 2px;
|
|
|
|
border-bottom-color: $form-input-border-selected-color;
|
2016-08-13 01:33:41 +02:00
|
|
|
margin-bottom: 0;
|
2016-10-25 22:15:06 +02:00
|
|
|
cursor: default;
|
2016-02-18 11:28:22 +01:00
|
|
|
}
|
2016-09-19 14:54:23 +02:00
|
|
|
&.disabled {
|
|
|
|
color: $workspace-button-toggle-color-disabled !important;
|
|
|
|
}
|
2016-02-18 11:28:22 +01:00
|
|
|
}
|
2017-01-30 00:01:31 +01:00
|
|
|
@mixin editor-button {
|
|
|
|
@include workspace-button;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 6px 14px;
|
|
|
|
margin-right: 8px;
|
|
|
|
color: $editor-button-color !important;
|
|
|
|
background: $editor-button-background;
|
|
|
|
|
2017-10-07 01:18:20 +02:00
|
|
|
// &.primary {
|
|
|
|
// border-color: $editor-button-background-primary;
|
|
|
|
// color: $editor-button-color-primary !important;
|
|
|
|
// background: $editor-button-background-primary;
|
|
|
|
// &.disabled, &.ui-state-disabled {
|
|
|
|
// background: none;
|
|
|
|
// color: $editor-button-color !important;
|
|
|
|
// border-color: $form-input-border-color;
|
|
|
|
// }
|
|
|
|
// &:not(.disabled):not(.ui-button-disabled):hover {
|
|
|
|
// border-color: $editor-button-background-primary-hover;
|
|
|
|
// background: $editor-button-background-primary-hover;
|
|
|
|
// color: $editor-button-color-primary !important;
|
|
|
|
// }
|
|
|
|
// }
|
2017-01-30 00:01:31 +01:00
|
|
|
&:not(.disabled):hover {
|
|
|
|
//color: $editor-button-color;
|
|
|
|
}
|
|
|
|
&.disabled {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
&.disabled:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2016-02-18 11:28:22 +01:00
|
|
|
|
2017-01-30 00:01:31 +01:00
|
|
|
&.leftButton {
|
|
|
|
float: left;
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
&:not(.leftButton):not(:last-child) {
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
&.ui-state-disabled {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2016-01-13 00:55:18 +01:00
|
|
|
|
2015-07-14 16:59:56 +02:00
|
|
|
@mixin component-footer {
|
|
|
|
border-top: 1px solid $primary-border-color;
|
|
|
|
background: #f3f3f3;
|
|
|
|
text-align: right;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 25px;
|
|
|
|
line-height: 23px;
|
|
|
|
padding: 0 10px;
|
2016-10-25 22:15:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
.button-group:not(:last-child) {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2015-07-14 16:59:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin component-footer-button {
|
|
|
|
@include workspace-button;
|
|
|
|
font-size: 11px;
|
|
|
|
line-height: 17px;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2015-09-23 23:49:48 +02:00
|
|
|
&.text-button {
|
|
|
|
width: auto;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
2015-07-14 16:59:56 +02:00
|
|
|
}
|
2016-10-25 22:15:06 +02:00
|
|
|
@mixin component-footer-button-toggle {
|
|
|
|
@include workspace-button-toggle;
|
|
|
|
font-size: 11px;
|
|
|
|
line-height: 17px;
|
|
|
|
height: 18px;
|
|
|
|
&.text-button {
|
|
|
|
width: auto;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
2015-07-18 16:33:31 +02:00
|
|
|
|
|
|
|
@mixin component-shadow {
|
|
|
|
border: 1px solid $secondary-border-color;
|
|
|
|
box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
|
|
|
|
|
|
|
|
}
|
2016-11-07 22:25:09 +01:00
|
|
|
|
|
|
|
@mixin shade {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
background: $shade-color;
|
2017-08-04 23:20:58 +02:00
|
|
|
z-index: 5;
|
2016-11-07 22:25:09 +01:00
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
.component-shade {
|
|
|
|
@include shade
|
|
|
|
}
|