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-09-23 23:49:48 +02:00
|
|
|
.ui-widget {
|
|
|
|
font-size: 14px !important;
|
|
|
|
font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif !important;
|
|
|
|
}
|
2016-08-25 17:47:30 +02:00
|
|
|
.ui-widget input, .ui-widget div[contenteditable="true"], .ui-widget select, .ui-widget textarea, .ui-widget button {
|
2015-09-23 23:49:48 +02:00
|
|
|
font-size: 14px !important;
|
|
|
|
font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif !important;
|
|
|
|
}
|
2016-08-25 17:47:30 +02:00
|
|
|
.ui-widget input, .ui-widget div[contenteditable="true"] {
|
2015-12-29 23:15:41 +01:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-09-23 23:49:48 +02:00
|
|
|
|
2015-04-09 15:46:29 +02:00
|
|
|
/* jQuery Theme overrides */
|
|
|
|
.ui-tabs .ui-tabs-panel {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog {
|
|
|
|
border-radius: 1px;
|
|
|
|
background: #fff;
|
|
|
|
padding: 0;
|
2015-07-18 16:33:31 +02:00
|
|
|
@include component-shadow;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-content {
|
|
|
|
padding: 25px 25px 10px 25px;
|
|
|
|
}
|
2015-09-23 23:49:48 +02:00
|
|
|
.ui-dialog .ui-dialog-title {
|
|
|
|
width: auto;
|
|
|
|
}
|
2015-04-09 15:46:29 +02:00
|
|
|
.ui-dialog .ui-dialog-titlebar {
|
|
|
|
padding: 10px;
|
2015-07-13 12:26:29 +02:00
|
|
|
background: #f3f3f3;
|
2015-04-09 15:46:29 +02:00
|
|
|
border: none;
|
2015-07-13 12:26:29 +02:00
|
|
|
border-bottom: 1px solid #999;
|
2015-04-09 15:46:29 +02:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
.ui-corner-all {
|
2015-07-13 12:26:29 +02:00
|
|
|
border-radius: 1px;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
|
|
|
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
|
|
|
background: #f3f3f3;
|
|
|
|
}
|
|
|
|
.ui-dialog-no-close .ui-dialog-titlebar-close {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-09-23 23:49:48 +02:00
|
|
|
|
|
|
|
.ui-dialog-buttonset {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
|
|
|
float: none;
|
|
|
|
}
|
2016-05-03 22:36:22 +02:00
|
|
|
|
|
|
|
.ui-dialog-buttonset button {
|
|
|
|
@include workspace-button;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 6px 14px;
|
|
|
|
margin-right: 8px;
|
2017-12-04 12:42:44 +01:00
|
|
|
border-radius: 2px;
|
2016-06-14 15:28:25 +02:00
|
|
|
color: $editor-button-color;
|
|
|
|
background: $editor-button-background;
|
|
|
|
|
2016-05-03 22:36:22 +02:00
|
|
|
&.leftButton {
|
|
|
|
float: left;
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
|
|
|
&:not(.leftButton):not(:last-child) {
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
2016-06-14 15:28:25 +02:00
|
|
|
&.primary {
|
|
|
|
border-color: $editor-button-background-primary;
|
2016-09-19 14:54:23 +02:00
|
|
|
color: $editor-button-color-primary !important;
|
2016-06-14 15:28:25 +02:00
|
|
|
background: $editor-button-background-primary;
|
|
|
|
&:not(.disabled):hover {
|
|
|
|
border-color: $editor-button-background-primary-hover;
|
|
|
|
background: $editor-button-background-primary-hover;
|
|
|
|
color: $editor-button-color-primary !important;
|
2016-05-03 22:36:22 +02:00
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
&.disabled {
|
|
|
|
border-color: $form-input-border-color;
|
|
|
|
color: $workspace-button-color-disabled !important;
|
|
|
|
background: $editor-button-background;
|
|
|
|
}
|
2016-05-03 22:36:22 +02:00
|
|
|
}
|
2016-06-14 15:28:25 +02:00
|
|
|
&.disabled {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
&.disabled {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
&.disabled:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2016-05-03 22:36:22 +02:00
|
|
|
.ui-button-text {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-23 23:49:48 +02:00
|
|
|
.ui-dialog .ui-dialog-buttonpane {
|
|
|
|
padding: .3em 1em .5em 1em;
|
|
|
|
}
|
2016-02-14 12:52:33 +01:00
|
|
|
|
|
|
|
.ui-spinner {
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0;
|
|
|
|
border: 1px solid $form-input-border-color;
|
|
|
|
}
|
|
|
|
.ui-spinner input {
|
|
|
|
margin: 0 17px 0 0;
|
|
|
|
padding: 6px;
|
|
|
|
border: none;
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
border-bottom-right-radius: 0px;
|
|
|
|
|
|
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
2017-12-19 01:56:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
.ui-widget-overlay {
|
|
|
|
@include shade;
|
|
|
|
z-index: 100;
|
|
|
|
opacity: 1;
|
|
|
|
}
|