mirror of
https://github.com/apache/druid.git
synced 2025-02-17 07:25:02 +00:00
* Update some dev dependencies, prettify, tslint-fix * Sort tsconfig keys for easy comparison * Set noImplicitThis * Slightly more accurate types * Bump Jest and related * Bump react to latest on v16 * Bump node-sass, sass-loader for node14 support * Remove node-sass-chokidar (unused) * More unused dependencies * Fix blueprint imports * Webpack 5 * Update webpack config for 'process' usage * Update playwright-chromium * Emit esnext modules for tree shaking * Enable source maps in development * Dedupe * Bump babel and things * npm audit fix * Add .editorconfig file to match prettier settings * Update licenses (tslib is 0BSD as of 1.11.2) https://github.com/microsoft/tslib/pull/96 * Require node >= 10 * Use Node 10 to run e2e tests * Use 'ws' transport mode for dev server (will be default in next version) * Remove an 'any' * No sourcemaps in prod * Exclude .editorconfig from license checks * Try nvm for setting node version
43 lines
1.3 KiB
SCSS
43 lines
1.3 KiB
SCSS
/*
|
|
* 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.
|
|
*/
|
|
|
|
@import './blueprint-overrides/common/colors';
|
|
@import './blueprint-overrides/common/variables';
|
|
|
|
$header-bar-height: 50px;
|
|
$view-control-bar-height: 30px;
|
|
$standard-padding: 15px;
|
|
$thin-padding: 10px;
|
|
|
|
// various style variables
|
|
|
|
$druid-brand: #2ceefb;
|
|
$druid-brand2: #00b6bf;
|
|
$druid-brand-background: #1c1c26;
|
|
|
|
@mixin card-like {
|
|
background: $white;
|
|
border-radius: $pt-border-radius;
|
|
box-shadow: $pt-elevation-shadow-1;
|
|
|
|
.bp3-dark & {
|
|
background: $dark-gray3;
|
|
box-shadow: $pt-dark-elevation-shadow-1;
|
|
}
|
|
}
|