node-red/editor/sass/mixins.scss

112 lines
2.8 KiB
SCSS
Raw Normal View History

2015-04-09 15:46:29 +02:00
/**
* Copyright 2015 IBM Corp.
*
* 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;
}
@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;
color: $workspace-button-color;
2015-07-13 16:08:17 +02:00
background: $workspace-button-background;
border: 1px solid $secondary-border-color;
text-align: center;
margin:0;
text-decoration: none;
2015-07-14 00:21:03 +02:00
cursor:pointer;
2015-07-13 16:08:17 +02:00
&.disabled {
cursor: default;
color: $workspace-button-color-disabled;
}
&:not(.disabled):hover {
2015-07-14 00:21:03 +02:00
text-decoration: none;
2015-07-13 16:08:17 +02:00
color: $workspace-button-color-hover;
background: $workspace-button-background-hover;
}
&:not(.disabled):focus {
color: $workspace-button-color-focus;
text-decoration: none;
2015-07-13 16:08:17 +02:00
}
&:not(.disabled):active {
color: $workspace-button-color-active;
background: $workspace-button-background-active;
text-decoration: none;
2015-07-13 16:08:17 +02:00
}
2016-01-13 00:03:33 +01:00
&.selected:not(.disabled) {
color: $workspace-button-color-selected;
2016-01-13 00:03:33 +01:00
background: $workspace-button-background-active;
cursor: default;
}
.button-group &:not(:first-child) {
border-left: none;
}
2015-04-09 15:46:29 +02:00
}
@mixin workspace-button-toggle {
@include workspace-button;
color: $workspace-button-color-selected;
background: $workspace-button-background-active;
&.selected:not(.disabled) {
color: $workspace-button-color;
background: $workspace-button-background;
}
}
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;
}
@mixin component-footer-button {
@include workspace-button;
font-size: 11px;
line-height: 17px;
width: 18px;
height: 18px;
&.text-button {
width: auto;
padding: 0 5px;
}
2015-07-14 16:59:56 +02:00
}
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);
}