57 lines
1.4 KiB
SCSS
57 lines
1.4 KiB
SCSS
/**
|
|
* Copyright (c) 2015 Bosch Software Innovations GmbH and others.
|
|
*
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
* which accompanies this distribution, and is available at
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
*/
|
|
// scss-lint:disable ImportantRule, PropertySortOrder
|
|
@mixin popup-common {
|
|
|
|
//Color picker layout position adjustment
|
|
.rgb-vertical-layout {
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
//Discard icon in create/update popup
|
|
.discard-button-style {
|
|
margin-right: -2px !important;
|
|
width: 18px !important;
|
|
font-size: 18px !important;
|
|
}
|
|
|
|
//name ,key text field in create/update popup *
|
|
.target-tag-name,
|
|
.distribution-tag-name,
|
|
.dist-set-type-name,
|
|
.dist-set-type-key,
|
|
.type-name,
|
|
.type-key {
|
|
margin-left: 2px !important;
|
|
width: 138px;
|
|
border: 3px solid $lighter-green-color !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
//Description field in create/update popup *
|
|
.target-tag-desc,
|
|
.distribution-tag-desc,
|
|
.dist-set-type-desc,
|
|
.type-desc {
|
|
margin-top: 4px !important;
|
|
margin-left: 2px !important;
|
|
width: 138px;
|
|
border: 3px solid $lighter-green-color !important;
|
|
box-shadow: none !important;
|
|
height: 75px !important;
|
|
}
|
|
|
|
.v-window-fontsize .v-window-closebox,
|
|
.v-window-fontsize .v-window-maximizebox,
|
|
.v-window-fontsize .v-window-restorebox {
|
|
font-size: 16px;
|
|
}
|
|
|
|
}
|