2018-09-18 11:39:26 -04:00
|
|
|
/*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you 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.
|
|
|
|
*/
|
|
|
|
|
2023-03-16 15:44:24 -04:00
|
|
|
@import 'normalize.css/normalize';
|
|
|
|
@import 'fontsource-open-sans/index.css';
|
2020-09-21 20:30:25 -04:00
|
|
|
@import './blueprint-overrides';
|
2023-03-16 15:44:24 -04:00
|
|
|
@import '@blueprintjs/core/src/blueprint';
|
|
|
|
@import '@blueprintjs/datetime/src/blueprint-datetime';
|
|
|
|
@import '@blueprintjs/popover2/src/blueprint-popover2';
|
2023-06-06 01:18:05 -04:00
|
|
|
@import '@blueprintjs/select/src/blueprint-select';
|
2023-03-16 15:44:24 -04:00
|
|
|
@import 'react-splitter-layout/lib/index';
|
2022-05-03 15:08:08 -04:00
|
|
|
@import './react-table/react-table-base-styles';
|
|
|
|
@import './react-table/react-table-extra';
|
2012-12-05 18:39:59 -05:00
|
|
|
|
2019-01-31 20:26:41 -05:00
|
|
|
html,
|
|
|
|
body {
|
2019-09-03 15:13:57 -04:00
|
|
|
position: fixed;
|
2019-01-31 20:26:41 -05:00
|
|
|
height: 100%;
|
2019-09-03 15:13:57 -04:00
|
|
|
width: 100%;
|
2019-01-31 20:26:41 -05:00
|
|
|
overflow: hidden;
|
|
|
|
font-size: 13px;
|
2021-10-26 00:53:38 -04:00
|
|
|
overscroll-behavior-x: none;
|
2012-12-05 18:39:59 -05:00
|
|
|
}
|
|
|
|
|
2019-01-31 20:26:41 -05:00
|
|
|
body {
|
2020-10-21 01:11:29 -04:00
|
|
|
background: $light-gray4;
|
|
|
|
|
2022-04-04 13:34:22 -04:00
|
|
|
&.#{$bp-ns}-dark {
|
2020-10-21 01:11:29 -04:00
|
|
|
background: $dark-gray2;
|
2019-01-31 20:26:41 -05:00
|
|
|
}
|
2012-12-05 18:39:59 -05:00
|
|
|
|
2019-01-31 20:26:41 -05:00
|
|
|
&.mouse-mode {
|
|
|
|
*:focus {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
}
|
2012-12-05 18:39:59 -05:00
|
|
|
}
|
|
|
|
|
2019-01-31 20:26:41 -05:00
|
|
|
.app-container {
|
2019-04-01 16:10:48 -04:00
|
|
|
position: absolute;
|
2019-01-31 20:26:41 -05:00
|
|
|
height: 100%;
|
2019-04-01 16:10:48 -04:00
|
|
|
width: 100%;
|
2020-09-11 22:42:50 -04:00
|
|
|
|
|
|
|
.console-application {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2012-12-05 18:39:59 -05:00
|
|
|
}
|