mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 10:40:07 -04:00
[dev] Replace sass-lint with stylelint (#86177)
Co-authored-by: Tyler Smalley <tylersmalley@me.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Dave Snider <dave.snider@gmail.com>
This commit is contained in:
parent
d2de5d0383
commit
51ba94d3e5
151 changed files with 1070 additions and 1077 deletions
|
@ -4,5 +4,5 @@ set -euo pipefail
|
||||||
|
|
||||||
source "$(dirname "${0}")/../util.sh"
|
source "$(dirname "${0}")/../util.sh"
|
||||||
|
|
||||||
checks-reporter-with-killswitch "Lint: sasslint" \
|
checks-reporter-with-killswitch "Lint: stylelint" \
|
||||||
node scripts/sasslint
|
node scripts/stylelint
|
2
.prettierignore
Normal file
2
.prettierignore
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# use stylelint
|
||||||
|
*.scss
|
|
@ -1,87 +0,0 @@
|
||||||
files:
|
|
||||||
include:
|
|
||||||
- 'src/legacy/core_plugins/metrics/**/*.s+(a|c)ss'
|
|
||||||
- 'src/plugins/index_pattern_management/**/*.s+(a|c)ss'
|
|
||||||
- 'src/plugins/timelion/**/*.s+(a|c)ss'
|
|
||||||
- 'src/plugins/vis_type_vislib/**/*.s+(a|c)ss'
|
|
||||||
- 'src/plugins/vis_type_vega/**/*.s+(a|c)ss'
|
|
||||||
- 'src/plugins/vis_type_xy/**/*.s+(a|c)ss'
|
|
||||||
- 'src/plugins/visualizations/public/wizard/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/plugins/canvas/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/plugins/triggers_actions_ui/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/plugins/lens/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/plugins/cross_cluster_replication/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/legacy/plugins/maps/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/plugins/maps/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/plugins/spaces/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/plugins/security/**/*.s+(a|c)ss'
|
|
||||||
- 'x-pack/plugins/monitoring/**/*.s+(a|c)ss'
|
|
||||||
ignore:
|
|
||||||
- 'x-pack/plugins/canvas/shareable_runtime/**/*.s+(a|c)ss'
|
|
||||||
rules:
|
|
||||||
quotes:
|
|
||||||
- 2
|
|
||||||
- style: 'single'
|
|
||||||
# } else { style on one line, like our JS
|
|
||||||
brace-style:
|
|
||||||
- 2
|
|
||||||
- style: '1tbs'
|
|
||||||
variable-name-format:
|
|
||||||
- 2
|
|
||||||
- convention: 'camelcase'
|
|
||||||
# Needs regex, right now we ignore
|
|
||||||
class-name-format: 0
|
|
||||||
# Order how you please
|
|
||||||
property-sort-order: 0
|
|
||||||
hex-notation:
|
|
||||||
- 2
|
|
||||||
- style: 'uppercase'
|
|
||||||
mixin-name-format:
|
|
||||||
- 2
|
|
||||||
- allow-leading-underscore: false
|
|
||||||
convention: 'camelcase'
|
|
||||||
# Use none instead of 0 for no border
|
|
||||||
border-zero:
|
|
||||||
- 2
|
|
||||||
- convention: 'none'
|
|
||||||
force-element-nesting: 0
|
|
||||||
# something { not something{
|
|
||||||
space-before-brace:
|
|
||||||
- 2
|
|
||||||
force-pseudo-nesting: 0
|
|
||||||
# 2 spaces for indentation
|
|
||||||
indentation: 2
|
|
||||||
function-name-format:
|
|
||||||
- 2
|
|
||||||
- allow-leading-underscore: false
|
|
||||||
convention: 'camelcase'
|
|
||||||
# This removes the need for ::hover
|
|
||||||
pseudo-element: 0
|
|
||||||
# ($var / 2) rather than ($var/2)
|
|
||||||
space-around-operator: 2
|
|
||||||
# We minify css, so this doesn't apply
|
|
||||||
no-css-comments: 0
|
|
||||||
# We use _ (underscores) for import path that don't directly compile
|
|
||||||
clean-import-paths: 0
|
|
||||||
# Allows input[type=search]
|
|
||||||
force-attribute-nesting: 0
|
|
||||||
no-qualifying-elements:
|
|
||||||
- 2
|
|
||||||
- # Allows input[type=search]
|
|
||||||
allow-element-with-attribute: 1
|
|
||||||
# Files can end without a newline
|
|
||||||
final-newline: 0
|
|
||||||
# We use some rare duplicate property values for browser variance
|
|
||||||
no-duplicate-properties:
|
|
||||||
- 2
|
|
||||||
- exclude:
|
|
||||||
- 'font-size'
|
|
||||||
- 'word-break'
|
|
||||||
# Put a line-break between sections of CSS, but allow quicky one-liners for legibility
|
|
||||||
empty-line-between-blocks:
|
|
||||||
- 2
|
|
||||||
- allow-single-line-rulesets: 1
|
|
||||||
# Warns are nice for deprecations and development
|
|
||||||
no-warn: 0
|
|
||||||
# Transition all is useful in certain situations and there's no recent info to suggest slowdown
|
|
||||||
no-transition-all: 0
|
|
3
.stylelintignore
Normal file
3
.stylelintignore
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
x-pack/plugins/canvas/shareable_runtime/**/*.s+(a|c)ss
|
||||||
|
build
|
||||||
|
target
|
84
.stylelintrc
Normal file
84
.stylelintrc
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
plugins:
|
||||||
|
- stylelint-scss
|
||||||
|
rules:
|
||||||
|
color-no-invalid-hex: true
|
||||||
|
function-calc-no-invalid: true
|
||||||
|
string-no-newline: true
|
||||||
|
unit-no-unknown: true
|
||||||
|
property-no-unknown:
|
||||||
|
- true
|
||||||
|
# Used in css modules
|
||||||
|
- ignoreProperties:
|
||||||
|
- composes
|
||||||
|
block-no-empty: true
|
||||||
|
selector-pseudo-class-no-unknown:
|
||||||
|
- true
|
||||||
|
# Used in css modules
|
||||||
|
- ignorePseudoClasses:
|
||||||
|
- local
|
||||||
|
- global
|
||||||
|
selector-pseudo-element-no-unknown: true
|
||||||
|
media-feature-name-no-unknown: true
|
||||||
|
at-rule-no-unknown:
|
||||||
|
- true
|
||||||
|
# Sass related mixins
|
||||||
|
- ignoreAtRules:
|
||||||
|
- include
|
||||||
|
- mixin
|
||||||
|
- if
|
||||||
|
- else
|
||||||
|
- each
|
||||||
|
- extend
|
||||||
|
- function
|
||||||
|
- return
|
||||||
|
- for
|
||||||
|
comment-no-empty: true
|
||||||
|
no-duplicate-at-import-rules: true
|
||||||
|
no-duplicate-selectors: true
|
||||||
|
no-extra-semicolons: true
|
||||||
|
alpha-value-notation: number
|
||||||
|
color-named: never
|
||||||
|
length-zero-no-unit: true
|
||||||
|
no-eol-whitespace: true
|
||||||
|
max-empty-lines: 1
|
||||||
|
# no-descending-specificity: true
|
||||||
|
number-leading-zero: never
|
||||||
|
color-hex-case: upper
|
||||||
|
string-quotes: single
|
||||||
|
indentation: 2
|
||||||
|
declaration-block-no-duplicate-properties:
|
||||||
|
- true
|
||||||
|
# We use some rare duplicate property values for browser variance
|
||||||
|
- ignoreProperties:
|
||||||
|
- font-size
|
||||||
|
- word-break
|
||||||
|
- composes
|
||||||
|
- filter
|
||||||
|
- background
|
||||||
|
- width
|
||||||
|
- transition
|
||||||
|
- display
|
||||||
|
|
||||||
|
# ($var / 2) rather than ($var/2)
|
||||||
|
function-calc-no-unspaced-operator: true
|
||||||
|
|
||||||
|
# something { not something{
|
||||||
|
block-opening-brace-space-before: always
|
||||||
|
|
||||||
|
# TODO: # Allows input[type=search]
|
||||||
|
selector-no-qualifying-type:
|
||||||
|
- true
|
||||||
|
- ignore:
|
||||||
|
- attribute
|
||||||
|
|
||||||
|
# Put a line-break between sections of CSS, but allow quicky one-liners for legibility
|
||||||
|
block-closing-brace-newline-after:
|
||||||
|
- always-multi-line
|
||||||
|
- ignoreAtRules:
|
||||||
|
- if
|
||||||
|
- else
|
||||||
|
|
||||||
|
# camelCase mixin, function, and variable names
|
||||||
|
scss/at-mixin-pattern: "^[a-z][a-zA-Z0-9]+$"
|
||||||
|
scss/at-function-pattern: "^[a-z][a-zA-Z0-9]+$"
|
||||||
|
scss/dollar-variable-pattern: "^[a-z][a-zA-Z0-9]+$"
|
6
.teamcity/src/builds/Lint.kt
vendored
6
.teamcity/src/builds/Lint.kt
vendored
|
@ -6,18 +6,18 @@ import kibanaAgent
|
||||||
|
|
||||||
object Lint : BuildType({
|
object Lint : BuildType({
|
||||||
name = "Lint"
|
name = "Lint"
|
||||||
description = "Executes Linting, such as eslint and sasslint"
|
description = "Executes Linting, such as eslint and stylelint"
|
||||||
|
|
||||||
kibanaAgent(2)
|
kibanaAgent(2)
|
||||||
|
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
name = "Sasslint"
|
name = "Stylelint"
|
||||||
|
|
||||||
scriptContent =
|
scriptContent =
|
||||||
"""
|
"""
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
./.ci/teamcity/checks/sasslint.sh
|
./.ci/teamcity/checks/stylelint.sh
|
||||||
""".trimIndent()
|
""".trimIndent()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -51,9 +51,9 @@
|
||||||
"start": "node scripts/kibana --dev",
|
"start": "node scripts/kibana --dev",
|
||||||
"debug": "node --nolazy --inspect scripts/kibana --dev",
|
"debug": "node --nolazy --inspect scripts/kibana --dev",
|
||||||
"debug-break": "node --nolazy --inspect-brk scripts/kibana --dev",
|
"debug-break": "node --nolazy --inspect-brk scripts/kibana --dev",
|
||||||
"lint": "yarn run lint:es && yarn run lint:sass",
|
"lint": "yarn run lint:es && yarn run lint:style",
|
||||||
"lint:es": "node scripts/eslint",
|
"lint:es": "node scripts/eslint",
|
||||||
"lint:sass": "node scripts/sasslint",
|
"lint:style": "node scripts/stylelint",
|
||||||
"makelogs": "node scripts/makelogs",
|
"makelogs": "node scripts/makelogs",
|
||||||
"kbn:watch": "node scripts/kibana --dev --logging.json=false",
|
"kbn:watch": "node scripts/kibana --dev --logging.json=false",
|
||||||
"build:types": "rm -rf ./target/types && tsc --p tsconfig.types.json",
|
"build:types": "rm -rf ./target/types && tsc --p tsconfig.types.json",
|
||||||
|
@ -793,7 +793,6 @@
|
||||||
"resize-observer-polyfill": "^1.5.0",
|
"resize-observer-polyfill": "^1.5.0",
|
||||||
"resolve": "^1.7.1",
|
"resolve": "^1.7.1",
|
||||||
"rxjs-marbles": "^5.0.6",
|
"rxjs-marbles": "^5.0.6",
|
||||||
"sass-lint": "^1.12.1",
|
|
||||||
"sass-loader": "^8.0.2",
|
"sass-loader": "^8.0.2",
|
||||||
"sass-resources-loader": "^2.0.1",
|
"sass-resources-loader": "^2.0.1",
|
||||||
"selenium-webdriver": "^4.0.0-alpha.7",
|
"selenium-webdriver": "^4.0.0-alpha.7",
|
||||||
|
@ -805,6 +804,8 @@
|
||||||
"string-replace-loader": "^2.2.0",
|
"string-replace-loader": "^2.2.0",
|
||||||
"strong-log-transformer": "^2.1.0",
|
"strong-log-transformer": "^2.1.0",
|
||||||
"style-loader": "^1.1.3",
|
"style-loader": "^1.1.3",
|
||||||
|
"stylelint": "13.8.0",
|
||||||
|
"stylelint-scss": "^3.18.0",
|
||||||
"superagent": "^3.8.2",
|
"superagent": "^3.8.2",
|
||||||
"supertest": "^3.1.0",
|
"supertest": "^3.1.0",
|
||||||
"supertest-as-promised": "^4.0.2",
|
"supertest-as-promised": "^4.0.2",
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
body {
|
body {
|
||||||
|
/* stylelint-disable-next-line color-named */
|
||||||
color: green;
|
color: green;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
p {
|
p {
|
||||||
|
/* stylelint-disable-next-line color-named */
|
||||||
background-color: rebeccapurple;
|
background-color: rebeccapurple;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@import "./other_styles.scss";
|
@import './other_styles.scss';
|
||||||
|
|
||||||
body {
|
body {
|
||||||
width: $globalStyleConstant;
|
width: $globalStyleConstant;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -18,4 +18,4 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require('../src/setup_node_env');
|
require('../src/setup_node_env');
|
||||||
require('../src/dev/run_sasslint');
|
require('../src/dev/run_stylelint');
|
|
@ -1,4 +1,4 @@
|
||||||
@mixin flex-parent($grow: 1, $shrink: 1, $basis: auto, $direction: column) {
|
@mixin flexParent($grow: 1, $shrink: 1, $basis: auto, $direction: column) {
|
||||||
flex: $grow $shrink $basis;
|
flex: $grow $shrink $basis;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: $direction;
|
flex-direction: $direction;
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
height: $size;
|
height: $size;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
} @else {
|
} @else {
|
||||||
@warn("Direction unknown for kbnResizer");
|
@warn('Direction unknown for kbnResizer');
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: "";
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
import { run, combineErrors, createFlagError } from '@kbn/dev-utils';
|
import { run, combineErrors, createFlagError } from '@kbn/dev-utils';
|
||||||
import * as Eslint from './eslint';
|
import * as Eslint from './eslint';
|
||||||
import * as Sasslint from './sasslint';
|
import * as Stylelint from './stylelint';
|
||||||
import { getFilesForCommit, checkFileCasing } from './precommit_hook';
|
import { getFilesForCommit, checkFileCasing } from './precommit_hook';
|
||||||
|
|
||||||
run(
|
run(
|
||||||
|
@ -47,7 +47,7 @@ run(
|
||||||
errors.push(error);
|
errors.push(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const Linter of [Eslint, Sasslint]) {
|
for (const Linter of [Eslint, Stylelint]) {
|
||||||
const filesToLint = Linter.pickFilesToLint(log, files);
|
const filesToLint = Linter.pickFilesToLint(log, files);
|
||||||
if (filesToLint.length > 0) {
|
if (filesToLint.length > 0) {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -18,11 +18,19 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { resolve } from 'path';
|
import { resolve } from 'path';
|
||||||
|
import { buildCLI } from 'stylelint/lib/cli';
|
||||||
|
|
||||||
process.argv.push('--no-exit'); // don't exit after encountering a rule error
|
const options = buildCLI(process.argv.slice(2));
|
||||||
process.argv.push('--verbose'); // print results
|
|
||||||
|
const stylelintConfigPath = resolve(__dirname, '..', '..', '.stylelintrc');
|
||||||
|
const stylelintIgnorePath = resolve(__dirname, '..', '..', '.stylelintignore');
|
||||||
|
|
||||||
|
if (!options.input.length) {
|
||||||
|
process.argv.push('**/*.s+(a|c)ss');
|
||||||
|
}
|
||||||
process.argv.push('--max-warnings', '0'); // return nonzero exit code on any warnings
|
process.argv.push('--max-warnings', '0'); // return nonzero exit code on any warnings
|
||||||
process.argv.push('--config', resolve(__dirname, '..', '..', '.sass-lint.yml')); // configuration file
|
process.argv.push('--config', stylelintConfigPath); // configuration file
|
||||||
|
process.argv.push('--ignore-path', stylelintIgnorePath); // ignore file
|
||||||
|
|
||||||
// common-js is required so that logic before this executes before loading sass-lint
|
// common-js is required so that logic before this executes before loading sass-lint
|
||||||
require('sass-lint/bin/sass-lint');
|
require('stylelint/bin/stylelint');
|
|
@ -17,10 +17,16 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import sassLint from 'sass-lint';
|
import stylelint from 'stylelint';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
import { safeLoad } from 'js-yaml';
|
||||||
|
import fs from 'fs';
|
||||||
import { createFailError } from '@kbn/dev-utils';
|
import { createFailError } from '@kbn/dev-utils';
|
||||||
|
|
||||||
|
// load the include globs from .stylelintrc and convert them to regular expressions for filtering files
|
||||||
|
const stylelintPath = path.resolve(__dirname, '..', '..', '..', '.stylelintrc');
|
||||||
|
const styleLintConfig = safeLoad(fs.readFileSync(stylelintPath));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lints a list of files with eslint. eslint reports are written to the log
|
* Lints a list of files with eslint. eslint reports are written to the log
|
||||||
* and a FailError is thrown when linting errors occur.
|
* and a FailError is thrown when linting errors occur.
|
||||||
|
@ -29,28 +35,21 @@ import { createFailError } from '@kbn/dev-utils';
|
||||||
* @param {Array<File>} files
|
* @param {Array<File>} files
|
||||||
* @return {undefined}
|
* @return {undefined}
|
||||||
*/
|
*/
|
||||||
export function lintFiles(log, files) {
|
export async function lintFiles(log, files) {
|
||||||
const paths = files.map((file) => file.getRelativePath());
|
const paths = files.map((file) => file.getRelativePath());
|
||||||
|
|
||||||
const report = sassLint.lintFiles(
|
const options = {
|
||||||
paths.join(', '),
|
files: paths,
|
||||||
{},
|
config: styleLintConfig,
|
||||||
path.resolve(__dirname, '..', '..', '..', '.sass-lint.yml')
|
formatter: 'string',
|
||||||
);
|
ignorePath: path.resolve(__dirname, '..', '..', '..', '.stylelintignore'),
|
||||||
|
};
|
||||||
|
|
||||||
const failTypes = Object.keys(
|
const report = await stylelint.lint(options);
|
||||||
report.reduce((failTypes, reportEntry) => {
|
if (report.errored) {
|
||||||
if (reportEntry.warningCount > 0) failTypes.warning = true;
|
log.error(report.output);
|
||||||
if (reportEntry.errorCount > 0) failTypes.errors = true;
|
throw createFailError('[stylelint] errors');
|
||||||
return failTypes;
|
} else {
|
||||||
}, {})
|
log.success('[stylelint] %d files linted successfully', files.length);
|
||||||
);
|
|
||||||
|
|
||||||
if (!failTypes.length) {
|
|
||||||
log.success('[sasslint] %d files linted successfully', files.length);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
log.error(sassLint.format(report));
|
|
||||||
throw createFailError(`[sasslint] ${failTypes.join(' & ')}`);
|
|
||||||
}
|
}
|
|
@ -17,17 +17,9 @@
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import fs from 'fs';
|
|
||||||
import { safeLoad } from 'js-yaml';
|
|
||||||
import { makeRe } from 'minimatch';
|
import { makeRe } from 'minimatch';
|
||||||
import path from 'path';
|
|
||||||
|
|
||||||
// load the include globs from .sass-lint.yml and convert them to regular expressions for filtering files
|
const includeGlobs = ['**/*.s+(a|c)ss'];
|
||||||
const sassLintPath = path.resolve(__dirname, '..', '..', '..', '.sass-lint.yml');
|
|
||||||
const sassLintConfig = safeLoad(fs.readFileSync(sassLintPath));
|
|
||||||
const {
|
|
||||||
files: { include: includeGlobs },
|
|
||||||
} = sassLintConfig;
|
|
||||||
const includeRegex = includeGlobs.map((glob) => makeRe(glob));
|
const includeRegex = includeGlobs.map((glob) => makeRe(glob));
|
||||||
|
|
||||||
function matchesInclude(file) {
|
function matchesInclude(file) {
|
|
@ -29,11 +29,11 @@
|
||||||
|
|
||||||
&--unsaved .mgtAdvancedSettings__fieldTitle {
|
&--unsaved .mgtAdvancedSettings__fieldTitle {
|
||||||
// Simulates a left side border without shifting content
|
// Simulates a left side border without shifting content
|
||||||
box-shadow: -$euiSizeXS 0px $euiColorWarning;
|
box-shadow: -$euiSizeXS 0 $euiColorWarning;
|
||||||
}
|
}
|
||||||
&--invalid .mgtAdvancedSettings__fieldTitle {
|
&--invalid .mgtAdvancedSettings__fieldTitle {
|
||||||
// Simulates a left side border without shifting content
|
// Simulates a left side border without shifting content
|
||||||
box-shadow: -$euiSizeXS 0px $euiColorDanger;
|
box-shadow: -$euiSizeXS 0 $euiColorDanger;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include internetExplorerOnly {
|
@include internetExplorerOnly {
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
.mgtAdvancedSettingsForm__unsavedCountMessage {
|
.mgtAdvancedSettingsForm__unsavedCountMessage {
|
||||||
// Simulates a left side border without shifting content
|
// Simulates a left side border without shifting content
|
||||||
box-shadow: -$euiSizeXS 0px $euiColorWarning;
|
box-shadow: -$euiSizeXS 0 $euiColorWarning;
|
||||||
padding-left: $euiSizeS;
|
padding-left: $euiSizeS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,4 +17,3 @@
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// SASSTODO: Probably not the right file for this selector, but temporary until the files get re-organized
|
// SASSTODO: Probably not the right file for this selector, but temporary until the files get re-organized
|
||||||
.globalQueryBar {
|
.globalQueryBar {
|
||||||
padding: 0px $euiSizeS $euiSizeS $euiSizeS;
|
padding: 0 $euiSizeS $euiSizeS $euiSizeS;
|
||||||
}
|
}
|
||||||
|
|
||||||
.globalQueryBar:first-child {
|
.globalQueryBar:first-child {
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
.globalFilterItem-isDisabled {
|
.globalFilterItem-isDisabled {
|
||||||
color: $euiColorDarkShade;
|
color: $euiColorDarkShade;
|
||||||
background-color: transparentize($euiColorLightShade, 0.5);
|
background-color: transparentize($euiColorLightShade, .5);
|
||||||
text-decoration: line-through;
|
text-decoration: line-through;
|
||||||
font-weight: $euiFontWeightRegular;
|
font-weight: $euiFontWeightRegular;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/**
|
/**
|
||||||
* 1. Stack content vertically so the table can scroll when its constrained by a fixed container height.
|
* 1. Stack content vertically so the table can scroll when its constrained by a fixed container height.
|
||||||
*/
|
*/
|
||||||
|
// stylelint-disable selector-no-qualifying-type
|
||||||
doc-table {
|
doc-table {
|
||||||
@include euiScrollBar;
|
@include euiScrollBar;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
@ -18,12 +19,12 @@ doc-table {
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
z-index: $euiZLevel1;
|
z-index: $euiZLevel1;
|
||||||
opacity: 0.5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.kbnDocTable__container.loading {
|
.kbnDocTable__container.loading {
|
||||||
opacity: 0.5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.kbnDocTable {
|
.kbnDocTable {
|
||||||
|
@ -58,7 +59,7 @@ doc-table {
|
||||||
}
|
}
|
||||||
|
|
||||||
dt {
|
dt {
|
||||||
background-color: transparentize(shade($euiColorPrimary, 20%), 0.9);
|
background-color: transparentize(shade($euiColorPrimary, 20%), .9);
|
||||||
color: $euiTextColor;
|
color: $euiTextColor;
|
||||||
padding: ($euiSizeXS / 2) $euiSizeXS;
|
padding: ($euiSizeXS / 2) $euiSizeXS;
|
||||||
margin-right: $euiSizeXS;
|
margin-right: $euiSizeXS;
|
||||||
|
|
|
@ -22,4 +22,3 @@
|
||||||
border-top: none !important;
|
border-top: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,7 @@ discover-app {
|
||||||
|
|
||||||
// SASSTODO: the visualizing component should have an option or a modifier
|
// SASSTODO: the visualizing component should have an option or a modifier
|
||||||
.series > rect {
|
.series > rect {
|
||||||
fill-opacity: 0.5;
|
fill-opacity: .5;
|
||||||
stroke-width: 1;
|
stroke-width: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
color: $euiColorFullShade;
|
color: $euiColorFullShade;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
padding-top: $euiSizeXS * 0.5;
|
padding-top: $euiSizeXS * .5;
|
||||||
}
|
}
|
||||||
.kbnDocViewer__field {
|
.kbnDocViewer__field {
|
||||||
padding-top: $euiSizeS;
|
padding-top: $euiSizeS;
|
||||||
|
|
|
@ -94,7 +94,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.embPanel__optionsMenuButton {
|
.embPanel__optionsMenuButton {
|
||||||
background-color: transparentize($euiColorDarkestShade, 0.9);
|
background-color: transparentize($euiColorDarkestShade, .9);
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
|
|
||||||
|
@ -156,7 +156,6 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
text-align: center;
|
|
||||||
padding: $euiSizeS;
|
padding: $euiSizeS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -169,5 +168,6 @@
|
||||||
.embPanel__content[data-loading] {
|
.embPanel__content[data-loading] {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
filter: grayscale(100%);
|
filter: grayscale(100%);
|
||||||
|
/* stylelint-disable-next-line color-named */
|
||||||
filter: gray;
|
filter: gray;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
background: transparentize($euiColorEmptyShade, 0.3);
|
background: transparentize($euiColorEmptyShade, .3);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
@ -66,11 +66,6 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.homSolutionPanel__header {
|
|
||||||
color: $euiColorEmptyShade;
|
|
||||||
padding: $euiSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
.homSolutionPanel__icon {
|
.homSolutionPanel__icon {
|
||||||
background-color: $euiColorEmptyShade !important;
|
background-color: $euiColorEmptyShade !important;
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
|
@ -93,6 +88,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.homSolutionPanel__header {
|
.homSolutionPanel__header {
|
||||||
|
color: $euiColorEmptyShade;
|
||||||
|
padding: $euiSize;
|
||||||
background-color: $euiColorPrimary;
|
background-color: $euiColorPrimary;
|
||||||
background-image: url('data:image/png;base64,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'),
|
background-image: url('data:image/png;base64,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'),
|
||||||
url('data:image/png;base64,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');
|
url('data:image/png;base64,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');
|
||||||
|
|
|
@ -10,13 +10,13 @@
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@import "font-awesome/scss/variables";
|
@import 'font-awesome/scss/variables';
|
||||||
@import "font-awesome/scss/core";
|
@import 'font-awesome/scss/core';
|
||||||
@import "font-awesome/scss/icons";
|
@import 'font-awesome/scss/icons';
|
||||||
|
|
||||||
// new file icon
|
// new file icon
|
||||||
.#{$fa-css-prefix}-file-new-o:before { content: $fa-var-file-o; }
|
.#{$fa-css-prefix}-file-new-o:before { content: $fa-var-file-o; }
|
||||||
.#{$fa-css-prefix}-file-new-o:after { content: $fa-var-plus; position: relative; margin-left: -1.0em; font-size: 0.5em; }
|
.#{$fa-css-prefix}-file-new-o:after { content: $fa-var-plus; position: relative; margin-left: -1.0em; font-size: .5em; }
|
||||||
|
|
||||||
// alias for alert types - allows class="fa fa-{{alertType}}"
|
// alias for alert types - allows class="fa fa-{{alertType}}"
|
||||||
.fa-success:before { content: $fa-var-check; }
|
.fa-success:before { content: $fa-var-check; }
|
||||||
|
|
|
@ -36,7 +36,7 @@ paginate {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active a {
|
&.active a { // stylelint-disable-line selector-no-qualifying-type
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
font-weight: $euiFontWeightBold;
|
font-weight: $euiFontWeightBold;
|
||||||
color: $euiColorDarkShade;
|
color: $euiColorDarkShade;
|
||||||
|
@ -54,4 +54,3 @@ paginate {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ $kbnDefaultFontSize: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.kbnMarkdown__body {
|
.kbnMarkdown__body {
|
||||||
|
|
||||||
// Font size variables
|
// Font size variables
|
||||||
$kbnMarkdownFontSizeS: canvasToEm(12px);
|
$kbnMarkdownFontSizeS: canvasToEm(12px);
|
||||||
$kbnMarkdownFontSize: canvasToEm(14px);
|
$kbnMarkdownFontSize: canvasToEm(14px);
|
||||||
|
@ -171,19 +170,19 @@ $kbnDefaultFontSize: 14px;
|
||||||
|
|
||||||
hr::before {
|
hr::before {
|
||||||
display: table;
|
display: table;
|
||||||
content: "";
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
hr::after {
|
hr::after {
|
||||||
display: table;
|
display: table;
|
||||||
clear: both;
|
clear: both;
|
||||||
content: "";
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
// 6. Lists
|
// 6. Lists
|
||||||
ul,
|
ul,
|
||||||
ol {
|
ol {
|
||||||
padding-left: 0;
|
padding-left: $kbnMarkdownSizeL;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: $kbnMarkdownSize;
|
margin-bottom: $kbnMarkdownSize;
|
||||||
}
|
}
|
||||||
|
@ -215,11 +214,6 @@ $kbnDefaultFontSize: 14px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul,
|
|
||||||
ol {
|
|
||||||
padding-left: $kbnMarkdownSizeL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul ul,
|
ul ul,
|
||||||
ul ol,
|
ul ol,
|
||||||
ol ol,
|
ol ol,
|
||||||
|
@ -297,8 +291,8 @@ $kbnDefaultFontSize: 14px;
|
||||||
|
|
||||||
code::before,
|
code::before,
|
||||||
code::after {
|
code::after {
|
||||||
letter-spacing: -0.2em;
|
letter-spacing: -.2em;
|
||||||
content: "\00a0";
|
content: '\00a0';
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
// stylelint-disable selector-no-qualifying-type
|
||||||
// SASSTODO: Create these tooltip variables in EUI
|
// SASSTODO: Create these tooltip variables in EUI
|
||||||
// And/Or create a tooltip mixin
|
// And/Or create a tooltip mixin
|
||||||
$temp-euiTooltipBackground: tintOrShade($euiColorFullShade, 25%, 90%);
|
$tempEUITooltipBackground: tintOrShade($euiColorFullShade, 25%, 90%);
|
||||||
$temp-euiTooltipText: $euiColorGhost;
|
$tempEUITooltipText: $euiColorGhost;
|
||||||
|
|
||||||
// Converted leaflet icon sprite into background svg for custom coloring (dark mode)
|
// Converted leaflet icon sprite into background svg for custom coloring (dark mode)
|
||||||
$visMapLeafletSprite: "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 60' height='60' width='600'%3E%3Cg fill='#{hexToRGB($euiTextColor)}'%3E%3Cg%3E%3Cpath d='M18 36v6h6v-6h-6zm4 4h-2v-2h2v2z'/%3E%3Cpath d='M36 18v6h6v-6h-6zm4 4h-2v-2h2v2z'/%3E%3Cpath d='M23.142 39.145l-2.285-2.29 16-15.998 2.285 2.285z'/%3E%3C/g%3E%3Cpath d='M100 24.565l-2.096 14.83L83.07 42 76 28.773 86.463 18z'/%3E%3Cpath d='M140 20h20v20h-20z'/%3E%3Cpath d='M221 30c0 6.078-4.926 11-11 11s-11-4.922-11-11c0-6.074 4.926-11 11-11s11 4.926 11 11z'/%3E%3Cpath d='M270,19c-4.971,0-9,4.029-9,9c0,4.971,5.001,12,9,14c4.001-2,9-9.029,9-14C279,23.029,274.971,19,270,19z M270,31.5c-2.484,0-4.5-2.014-4.5-4.5c0-2.484,2.016-4.5,4.5-4.5c2.485,0,4.5,2.016,4.5,4.5C274.5,29.486,272.485,31.5,270,31.5z'/%3E%3Cg%3E%3Cpath d='M337,30.156v0.407v5.604c0,1.658-1.344,3-3,3h-10c-1.655,0-3-1.342-3-3v-10c0-1.657,1.345-3,3-3h6.345 l3.19-3.17H324c-3.313,0-6,2.687-6,6v10c0,3.313,2.687,6,6,6h10c3.314,0,6-2.687,6-6v-8.809L337,30.156'/%3E%3Cpath d='M338.72 24.637l-8.892 8.892H327V30.7l8.89-8.89z'/%3E%3Cpath d='M338.697 17.826h4v4h-4z' transform='rotate(-134.99 340.703 19.817)'/%3E%3C/g%3E%3Cg%3E%3Cpath d='M381 42h18V24h-18v18zm14-16h2v14h-2V26zm-4 0h2v14h-2V26zm-4 0h2v14h-2V26zm-4 0h2v14h-2V26z'/%3E%3Cpath d='M395 20v-4h-10v4h-6v2h22v-2h-6zm-2 0h-6v-2h6v2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A";
|
$visMapLeafletSprite: "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 60' height='60' width='600'%3E%3Cg fill='#{hexToRGB($euiTextColor)}'%3E%3Cg%3E%3Cpath d='M18 36v6h6v-6h-6zm4 4h-2v-2h2v2z'/%3E%3Cpath d='M36 18v6h6v-6h-6zm4 4h-2v-2h2v2z'/%3E%3Cpath d='M23.142 39.145l-2.285-2.29 16-15.998 2.285 2.285z'/%3E%3C/g%3E%3Cpath d='M100 24.565l-2.096 14.83L83.07 42 76 28.773 86.463 18z'/%3E%3Cpath d='M140 20h20v20h-20z'/%3E%3Cpath d='M221 30c0 6.078-4.926 11-11 11s-11-4.922-11-11c0-6.074 4.926-11 11-11s11 4.926 11 11z'/%3E%3Cpath d='M270,19c-4.971,0-9,4.029-9,9c0,4.971,5.001,12,9,14c4.001-2,9-9.029,9-14C279,23.029,274.971,19,270,19z M270,31.5c-2.484,0-4.5-2.014-4.5-4.5c0-2.484,2.016-4.5,4.5-4.5c2.485,0,4.5,2.016,4.5,4.5C274.5,29.486,272.485,31.5,270,31.5z'/%3E%3Cg%3E%3Cpath d='M337,30.156v0.407v5.604c0,1.658-1.344,3-3,3h-10c-1.655,0-3-1.342-3-3v-10c0-1.657,1.345-3,3-3h6.345 l3.19-3.17H324c-3.313,0-6,2.687-6,6v10c0,3.313,2.687,6,6,6h10c3.314,0,6-2.687,6-6v-8.809L337,30.156'/%3E%3Cpath d='M338.72 24.637l-8.892 8.892H327V30.7l8.89-8.89z'/%3E%3Cpath d='M338.697 17.826h4v4h-4z' transform='rotate(-134.99 340.703 19.817)'/%3E%3C/g%3E%3Cg%3E%3Cpath d='M381 42h18V24h-18v18zm14-16h2v14h-2V26zm-4 0h2v14h-2V26zm-4 0h2v14h-2V26zm-4 0h2v14h-2V26z'/%3E%3Cpath d='M395 20v-4h-10v4h-6v2h22v-2h-6zm-2 0h-6v-2h6v2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A";
|
||||||
|
@ -23,7 +24,7 @@ $visMapLeafletSprite: "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/s
|
||||||
.leaflet-clickable {
|
.leaflet-clickable {
|
||||||
&:hover {
|
&:hover {
|
||||||
stroke-width: $euiSizeS;
|
stroke-width: $euiSizeS;
|
||||||
stroke-opacity: 0.8;
|
stroke-opacity: .8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,8 +79,8 @@ $visMapLeafletSprite: "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/s
|
||||||
.leaflet-popup-content-wrapper {
|
.leaflet-popup-content-wrapper {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background: $temp-euiTooltipBackground;
|
background: $tempEUITooltipBackground;
|
||||||
color: $temp-euiTooltipText;
|
color: $tempEUITooltipText;
|
||||||
border-radius: $euiBorderRadius !important; // Override all positions the popup might be at
|
border-radius: $euiBorderRadius !important; // Override all positions the popup might be at
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,7 +147,7 @@ $visMapLeafletSprite: "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/s
|
||||||
|
|
||||||
img.leaflet-tile {
|
img.leaflet-tile {
|
||||||
@if (lightness($euiTextColor) < 50) {
|
@if (lightness($euiTextColor) < 50) {
|
||||||
filter: brightness(1.03) grayscale(0.73);
|
filter: brightness(1.03) grayscale(.73);
|
||||||
} @else {
|
} @else {
|
||||||
filter: invert(1) brightness(1.75) grayscale(1);
|
filter: invert(1) brightness(1.75) grayscale(1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
@import "top_nav_menu/index";
|
@import 'top_nav_menu/index';
|
||||||
|
|
|
@ -16,4 +16,3 @@ input[type='checkbox'],
|
||||||
opacity: .8;
|
opacity: .8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// sass-lint:disable-block no-qualifying-elements
|
select.form-control { // stylelint-disable-line selector-no-qualifying-type
|
||||||
select.form-control {
|
|
||||||
// Makes the select arrow similar to EUI's arrowDown icon
|
// Makes the select arrow similar to EUI's arrowDown icon
|
||||||
background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"%3E%3Cpath fill="#{hexToRGB($euiTextColor)}" d="M13.0688508,5.15725038 L8.38423975,9.76827428 C8.17054415,9.97861308 7.82999214,9.97914095 7.61576025,9.76827428 L2.93114915,5.15725038 C2.7181359,4.94758321 2.37277319,4.94758321 2.15975994,5.15725038 C1.94674669,5.36691756 1.94674669,5.70685522 2.15975994,5.9165224 L6.84437104,10.5275463 C7.48517424,11.1582836 8.51644979,11.1566851 9.15562896,10.5275463 L13.8402401,5.9165224 C14.0532533,5.70685522 14.0532533,5.36691756 13.8402401,5.15725038 C13.6272268,4.94758321 13.2818641,4.94758321 13.0688508,5.15725038 Z"/%3E%3C/svg%3E');
|
background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"%3E%3Cpath fill="#{hexToRGB($euiTextColor)}" d="M13.0688508,5.15725038 L8.38423975,9.76827428 C8.17054415,9.97861308 7.82999214,9.97914095 7.61576025,9.76827428 L2.93114915,5.15725038 C2.7181359,4.94758321 2.37277319,4.94758321 2.15975994,5.15725038 C1.94674669,5.36691756 1.94674669,5.70685522 2.15975994,5.9165224 L6.84437104,10.5275463 C7.48517424,11.1582836 8.51644979,11.1566851 9.15562896,10.5275463 L13.8402401,5.9165224 C14.0532533,5.70685522 14.0532533,5.36691756 13.8402401,5.15725038 C13.6272268,4.94758321 13.2818641,4.94758321 13.0688508,5.15725038 Z"/%3E%3C/svg%3E');
|
||||||
background-size: $euiSize;
|
background-size: $euiSize;
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
@import './timelion_interval/index';
|
@import './timelion_interval/index';
|
||||||
@import './saved_object_finder';
|
@import './saved_object_finder';
|
||||||
@import './form';
|
@import './form';
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
saved-object-finder {
|
saved-object-finder {
|
||||||
|
|
||||||
.timSearchBar {
|
.timSearchBar {
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
opacity: .5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.timCell__actions {
|
.timCell__actions {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: $euiSizeXS;
|
bottom: $euiSizeXS;
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
.visEditor__collapsibleSidebar {
|
.visEditor__collapsibleSidebar {
|
||||||
background: $euiColorLightestShade;
|
background: $euiColorLightestShade;
|
||||||
min-width: $vis-editor-sidebar-min-width;
|
min-width: $visEditorSidebarMinWidth;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
.visEditorSidebar {
|
.visEditorSidebar {
|
||||||
min-width: $vis-editor-sidebar-min-width;
|
min-width: $visEditorSidebarMinWidth;
|
||||||
|
|
||||||
// a hack for IE, issue: https://github.com/elastic/kibana/issues/66586
|
// a hack for IE, issue: https://github.com/elastic/kibana/issues/66586
|
||||||
> .visEditorSidebar__formWrapper {
|
> .visEditorSidebar__formWrapper {
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.visEditorSidebar__form {
|
.visEditorSidebar__form {
|
||||||
@include flex-parent(1, 1, auto);
|
@include flexParent(1, 1, auto);
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@include euiBreakpoint('l', 'xl') {
|
@include euiBreakpoint('l', 'xl') {
|
||||||
@include flex-parent(1, 1, 1px);
|
@include flexParent(1, 1, 1px);
|
||||||
@include euiScrollBar;
|
@include euiScrollBar;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
$vis-editor-sidebar-min-width: 350px;
|
$visEditorSidebarMinWidth: 350px;
|
||||||
|
|
||||||
// Main layout
|
// Main layout
|
||||||
@import './default';
|
@import './default';
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
.table-vis-container {
|
.table-vis-container {
|
||||||
kbn-agg-table-group > .table > tbody > tr > td {
|
kbn-agg-table-group > .table > tbody > tr > td {
|
||||||
border-top: 0px;
|
border-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination-other-pages {
|
.pagination-other-pages {
|
||||||
|
|
|
@ -38,5 +38,5 @@ kbn-agg-table-group {
|
||||||
}
|
}
|
||||||
|
|
||||||
.small {
|
.small {
|
||||||
font-size: 0.9em !important;
|
font-size: .9em !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,4 +2,3 @@
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,10 +8,10 @@
|
||||||
}
|
}
|
||||||
.tvbVisTimeSeriesDark {
|
.tvbVisTimeSeriesDark {
|
||||||
.echReactiveChart_unavailable {
|
.echReactiveChart_unavailable {
|
||||||
color: #dfe5ef;
|
color: #DFE5EF;
|
||||||
}
|
}
|
||||||
.echLegendItem {
|
.echLegendItem {
|
||||||
color: #dfe5ef;
|
color: #DFE5EF;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.tvbVisTimeSeriesLight {
|
.tvbVisTimeSeriesLight {
|
||||||
|
|
|
@ -29,5 +29,3 @@
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
|
|
||||||
|
|
||||||
.tvbVisTopN {
|
.tvbVisTopN {
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// stylelint-disable selector-no-qualifying-type
|
||||||
.vgaVis__wrapper {
|
.vgaVis__wrapper {
|
||||||
@include euiScrollBar;
|
@include euiScrollBar;
|
||||||
|
|
||||||
|
@ -109,7 +110,6 @@
|
||||||
color: makeHighContrastColor($euiColorDanger, $calculateBackgroundColor);
|
color: makeHighContrastColor($euiColorDanger, $calculateBackgroundColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Style tooltip popup (gets created dynamically at the top level if dashboard has a Vega vis)
|
// Style tooltip popup (gets created dynamically at the top level if dashboard has a Vega vis)
|
||||||
// Adapted from https://github.com/vega/vega-tooltip
|
// Adapted from https://github.com/vega/vega-tooltip
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
@import './alerts';
|
@import './alerts';
|
||||||
@import './layout/index';
|
@import './layout/index';
|
||||||
|
|
||||||
|
|
|
@ -25,123 +25,6 @@
|
||||||
// Numbers in here are brittle
|
// Numbers in here are brittle
|
||||||
//
|
//
|
||||||
|
|
||||||
.visWrapper {
|
|
||||||
display: flex;
|
|
||||||
flex: 1 1 100%;
|
|
||||||
flex-direction: row;
|
|
||||||
min-height: 0;
|
|
||||||
min-width: 0;
|
|
||||||
overflow: hidden;
|
|
||||||
padding: $euiSizeS 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visWrapper__column {
|
|
||||||
display: flex;
|
|
||||||
flex: 1 0 0;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 0;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visWrapper__splitCharts--column {
|
|
||||||
display: flex;
|
|
||||||
flex: 1 0 20px;
|
|
||||||
flex-direction: row;
|
|
||||||
min-height: 0;
|
|
||||||
min-width: 0;
|
|
||||||
|
|
||||||
.visWrapper__chart {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.visWrapper__splitCharts--row {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
flex: 1 1 100%;
|
|
||||||
min-height: 0;
|
|
||||||
min-width: 0;
|
|
||||||
|
|
||||||
.visWrapper__chart {
|
|
||||||
margin-left: 0;
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.visWrapper__chart {
|
|
||||||
display: flex;
|
|
||||||
flex: 1 0 0;
|
|
||||||
overflow: visible;
|
|
||||||
margin: 5px;
|
|
||||||
min-height: 0;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visWrapper__alerts {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
// General Axes
|
|
||||||
|
|
||||||
.visAxis__column--top .axis-div svg {
|
|
||||||
margin-bottom: -5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Y Axes
|
|
||||||
|
|
||||||
.visAxis--x,
|
|
||||||
.visAxis--y {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 0;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visAxis--x {
|
|
||||||
overflow: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visAxis__spacer--y {
|
|
||||||
min-height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visAxis__column--y {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
flex: 1 0 ($euiSizeXL + $euiSizeXS);
|
|
||||||
min-height: 0;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visAxis__splitTitles--y {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: $euiSizeM;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visAxis__splitTitles--x {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
min-height: 1px;
|
|
||||||
max-height: $euiSize;
|
|
||||||
min-width: $euiSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visAxis__splitAxes--x,
|
|
||||||
.visAxis__splitAxes--y {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: ($euiSize + $euiSizeXS);
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.visAxis__splitAxes--x {
|
|
||||||
flex-direction: row;
|
|
||||||
min-height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// STYLE
|
// STYLE
|
||||||
//
|
//
|
||||||
|
@ -155,6 +38,14 @@
|
||||||
// sass-lint:disable-block no-mergeable-selectors
|
// sass-lint:disable-block no-mergeable-selectors
|
||||||
// Keep SVG and non-renamable selectors separately
|
// Keep SVG and non-renamable selectors separately
|
||||||
.visWrapper {
|
.visWrapper {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 1 100%;
|
||||||
|
flex-direction: row;
|
||||||
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: $euiSizeS 0;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
@ -340,3 +231,110 @@
|
||||||
fill: $visHoverBackgroundColor;
|
fill: $visHoverBackgroundColor;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.visWrapper__column {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 0 0;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visWrapper__splitCharts--column {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 0 20px;
|
||||||
|
flex-direction: row;
|
||||||
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
|
|
||||||
|
.visWrapper__chart {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.visWrapper__splitCharts--row {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex: 1 1 100%;
|
||||||
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
|
|
||||||
|
.visWrapper__chart {
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.visWrapper__chart {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 0 0;
|
||||||
|
overflow: visible;
|
||||||
|
margin: 5px;
|
||||||
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visWrapper__alerts {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
// General Axes
|
||||||
|
|
||||||
|
.visAxis__column--top .axis-div svg {
|
||||||
|
margin-bottom: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Y Axes
|
||||||
|
|
||||||
|
.visAxis--x,
|
||||||
|
.visAxis--y {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visAxis--x {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visAxis__spacer--y {
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visAxis__column--y {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex: 1 0 ($euiSizeXL + $euiSizeXS);
|
||||||
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visAxis__splitTitles--y {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: $euiSizeM;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visAxis__splitTitles--x {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
min-height: 1px;
|
||||||
|
max-height: $euiSize;
|
||||||
|
min-width: $euiSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visAxis__splitAxes--x,
|
||||||
|
.visAxis__splitAxes--y {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: ($euiSize + $euiSizeXS);
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.visAxis__splitAxes--x {
|
||||||
|
flex-direction: row;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
transition: opacity 0.01s;
|
transition: opacity .01s;
|
||||||
|
|
||||||
// IE11 Hack
|
// IE11 Hack
|
||||||
//
|
//
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
|
|
||||||
// SASSTODO: Can't find exact usage
|
// SASSTODO: Can't find exact usage
|
||||||
.loading {
|
.loading {
|
||||||
opacity: 0.5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
|
|
||||||
// SASSTODO: Can't find exact usage
|
// SASSTODO: Can't find exact usage
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
opacity: 0.5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,11 @@
|
||||||
.visLegend__toggle {
|
.visLegend__toggle {
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
|
opacity: 0; /* 1 */
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
opacity: 1; /* 2 */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,21 +31,13 @@
|
||||||
* 3. Always show in editing mode
|
* 3. Always show in editing mode
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.embPanel_optionsMenuPopover[class*="-isOpen"],
|
.embPanel_optionsMenuPopover[class*='-isOpen'],
|
||||||
.embPanel:hover {
|
.embPanel:hover {
|
||||||
.visLegend__toggle {
|
.visLegend__toggle {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.embPanel .visLegend__toggle {
|
|
||||||
opacity: 0; /* 1 */
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
opacity: 1; /* 2 */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.embPanel--editing {
|
.embPanel--editing {
|
||||||
.visLegend__toggle {
|
.visLegend__toggle {
|
||||||
opacity: 1; /* 3 */
|
opacity: 1; /* 3 */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.visEditor {
|
.visEditor {
|
||||||
@include flex-parent();
|
@include flexParent();
|
||||||
|
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ a tilemap in an iframe: https://github.com/elastic/kibana/issues/16457 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.visEditor__content {
|
.visEditor__content {
|
||||||
@include flex-parent();
|
@include flexParent();
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ rename_coverage_file() {
|
||||||
if [[ -z "$CODE_COVERAGE" ]] ; then
|
if [[ -z "$CODE_COVERAGE" ]] ; then
|
||||||
# Lint
|
# Lint
|
||||||
./test/scripts/lint/eslint.sh
|
./test/scripts/lint/eslint.sh
|
||||||
./test/scripts/lint/sasslint.sh
|
./test/scripts/lint/stylelint.sh
|
||||||
|
|
||||||
# Test
|
# Test
|
||||||
./test/scripts/test/jest_integration.sh
|
./test/scripts/test/jest_integration.sh
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
source src/dev/ci_setup/setup_env.sh
|
|
||||||
|
|
||||||
checks-reporter-with-killswitch "Lint: sasslint" \
|
|
||||||
node scripts/sasslint
|
|
6
test/scripts/lint/stylelint.sh
Executable file
6
test/scripts/lint/stylelint.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source src/dev/ci_setup/setup_env.sh
|
||||||
|
|
||||||
|
checks-reporter-with-killswitch "Lint: stylelint" \
|
||||||
|
node scripts/stylelint
|
|
@ -24,7 +24,7 @@ def check() {
|
||||||
def lint() {
|
def lint() {
|
||||||
tasks([
|
tasks([
|
||||||
kibanaPipeline.scriptTask('Lint: eslint', 'test/scripts/lint/eslint.sh'),
|
kibanaPipeline.scriptTask('Lint: eslint', 'test/scripts/lint/eslint.sh'),
|
||||||
kibanaPipeline.scriptTask('Lint: sasslint', 'test/scripts/lint/sasslint.sh'),
|
kibanaPipeline.scriptTask('Lint: stylelint', 'test/scripts/lint/stylelint.sh'),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
body.canvas-isFullscreen { // sass-lint:disable-line no-qualifying-elements
|
/* stylelint-disable selector-no-qualifying-type */
|
||||||
|
body.canvas-isFullscreen {
|
||||||
// following two rules are for overriding the header bar padding
|
// following two rules are for overriding the header bar padding
|
||||||
&.euiBody--headerIsFixed {
|
&.euiBody--headerIsFixed {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
|
|
|
@ -7,4 +7,3 @@
|
||||||
background-color: $euiFormBackgroundColor;
|
background-color: $euiFormBackgroundColor;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
*/
|
*/
|
||||||
$canvasElementCardWidth: 210px;
|
$canvasElementCardWidth: 210px;
|
||||||
|
|
||||||
|
|
||||||
.canvas.canvasContainerWrapper {
|
.canvas.canvasContainerWrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
:global .kbnCanvas :local .bar {
|
:global .kbnCanvas :local .bar {
|
||||||
transition: bottom 0.25s;
|
transition: bottom .25s;
|
||||||
padding: $euiSizeM;
|
padding: $euiSizeM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
padding: $euiSizeS 0 ($euiSizeL * 2) 0;
|
padding: $euiSizeS 0 ($euiSizeL * 2) 0;
|
||||||
transition: bottom 0.25s;
|
transition: bottom .25s;
|
||||||
height: 172px;
|
height: 172px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
font-size: $euiFontSizeS;
|
font-size: $euiFontSizeS;
|
||||||
line-height: $euiLineHeight;
|
line-height: $euiLineHeight;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 0.85fr $euiSizeXL 1fr;
|
grid-template-columns: .85fr $euiSizeXL 1fr;
|
||||||
grid-gap: $euiSizeXS;
|
grid-gap: $euiSizeXS;
|
||||||
|
|
||||||
&__separator {
|
&__separator {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
&__imageContainer {
|
&__imageContainer {
|
||||||
max-height: 115px;
|
max-height: 115px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: #0076cc;
|
background-color: #0076CC;
|
||||||
|
|
||||||
@include euiBreakpoint('s', 'm', 'l', 'xl') {
|
@include euiBreakpoint('s', 'm', 'l', 'xl') {
|
||||||
max-height: none;
|
max-height: none;
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: $euiSize;
|
right: $euiSize;
|
||||||
top: $sideBarMobileHeight / 2;
|
top: $sideBarMobileHeight / 2;
|
||||||
transform: translateY(-50%) scale(0.9);
|
transform: translateY(-50%) scale(.9);
|
||||||
|
|
||||||
.euiButton {
|
.euiButton {
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
width: $sideBarWidth;
|
width: $sideBarWidth;
|
||||||
|
|
||||||
background-color: $euiColorLightestShade;
|
background-color: $euiColorLightestShade;
|
||||||
box-shadow: inset (-1 * $euiSizeXS) 0 $euiSizeS (-1 * $euiSizeXS) rgba($euiShadowColor, 0.25);
|
box-shadow: inset (-1 * $euiSizeXS) 0 $euiSizeS (-1 * $euiSizeXS) rgba($euiShadowColor, .25);
|
||||||
|
|
||||||
@include euiBreakpoint('xs', 's', 'm') {
|
@include euiBreakpoint('xs', 's', 'm') {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
@ -52,7 +52,7 @@ $euiSizeML: $euiSize * 1.25; // 20px - between medium and large ¯\_(ツ)_/¯
|
||||||
font-weight: $euiFontWeightMedium;
|
font-weight: $euiFontWeightMedium;
|
||||||
line-height: $euiFontSizeM;
|
line-height: $euiFontSizeM;
|
||||||
|
|
||||||
$activeBgColor: rgba($euiColorFullShade, 0.05);
|
$activeBgColor: rgba($euiColorFullShade, .05);
|
||||||
|
|
||||||
&--isActive {
|
&--isActive {
|
||||||
background-color: $activeBgColor;
|
background-color: $activeBgColor;
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
padding: 0 2px;
|
padding: 0 2px;
|
||||||
display: none;
|
display: none;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
box-shadow: 0 1px 3px rgba(black, 0.1);
|
box-shadow: 0 1px 3px $euiColorInk;
|
||||||
border: 1px solid $euiBorderColor;
|
border: 1px solid $euiBorderColor;
|
||||||
width: auto;
|
width: auto;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
* you may not use this file except in compliance with the Elastic License.
|
* you may not use this file except in compliance with the Elastic License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.wsLicenseBadge {
|
.wsLicenseBadge__text {
|
||||||
&__text {
|
color: $euiColorGhost;
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
text-shadow: 0 1px 2px rgba(black, 0.08);
|
text-shadow: 0 1px 2px rgba($euiColorInk, .08);
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-size: 1.125rem;
|
font-size: 1.125rem;
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: $euiColorEmptyShade;
|
color: $euiColorEmptyShade;
|
||||||
font-size: .875rem;
|
font-size: .875rem;
|
||||||
text-shadow: 0 1px 2px rgba(black, 0.08);
|
text-shadow: 0 1px 2px rgba($euiColorInk, .08);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__image {
|
&__image {
|
||||||
|
@ -105,8 +105,8 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
box-shadow: 0px 0px 12px rgba(black, 0.15);
|
box-shadow: 0 0 12px rgba($euiColorInk, .15);
|
||||||
background: white;
|
background: $euiColorGhost;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
min-width: 125px;
|
min-width: 125px;
|
||||||
|
@ -130,7 +130,7 @@
|
||||||
position:absolute;
|
position:absolute;
|
||||||
border-left: 6px solid transparent;
|
border-left: 6px solid transparent;
|
||||||
border-right: 6px solid transparent;
|
border-right: 6px solid transparent;
|
||||||
border-bottom: 6px solid white;
|
border-bottom: 6px solid $euiColorGhost;
|
||||||
top: -6px;
|
top: -6px;
|
||||||
left: 16px;
|
left: 16px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,16 +8,16 @@
|
||||||
// Custom Source display settings
|
// Custom Source display settings
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
@mixin source_name {
|
@mixin sourceName {
|
||||||
font-size: .6875em;
|
font-size: .6875em;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
letter-spacing: 0.06em;
|
letter-spacing: .06em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin example_result_box_shadow {
|
@mixin exampleResultBoxShadow {
|
||||||
box-shadow:
|
box-shadow:
|
||||||
0 1px 3px rgba(black, 0.1),
|
0 1px 3px rgba($euiColorInk, .1),
|
||||||
0 0 20px $euiColorLightestShade;
|
0 0 20px $euiColorLightestShade;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@
|
||||||
.example-standout-result {
|
.example-standout-result {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@include example_result_box_shadow;
|
@include exampleResultBoxShadow;
|
||||||
|
|
||||||
&__header,
|
&__header,
|
||||||
&__content {
|
&__content {
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
|
|
||||||
&__source-name {
|
&__source-name {
|
||||||
line-height: 34px;
|
line-height: 34px;
|
||||||
@include source_name;
|
@include sourceName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@
|
||||||
|
|
||||||
&__source-name {
|
&__source-name {
|
||||||
line-height: 1.75em;
|
line-height: 1.75em;
|
||||||
@include source_name;
|
@include sourceName;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
|
@ -171,7 +171,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.example-result-detail-card {
|
.example-result-detail-card {
|
||||||
@include example_result_box_shadow;
|
@include exampleResultBoxShadow;
|
||||||
|
|
||||||
&__header {
|
&__header {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
color: $euiColorFullShade;
|
color: $euiColorFullShade;
|
||||||
box-shadow:
|
box-shadow:
|
||||||
inset 0 0 0 1px $euiColorLightShade,
|
inset 0 0 0 1px $euiColorLightShade,
|
||||||
0 2px 4px rgba(black, .05);
|
0 2px 4px rgba($euiColorInk, .05);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
|
|
|
@ -13,13 +13,13 @@
|
||||||
&--error {
|
&--error {
|
||||||
font-weight: $euiFontWeightSemiBold;
|
font-weight: $euiFontWeightSemiBold;
|
||||||
color: $euiColorDanger;
|
color: $euiColorDanger;
|
||||||
background: rgba($euiColorDanger, 0.1);
|
background: rgba($euiColorDanger, .1);
|
||||||
|
|
||||||
&__label {
|
&__label {
|
||||||
margin-left: $euiSizeS * 1.75;
|
margin-left: $euiSizeS * 1.75;
|
||||||
font-weight: $euiFontWeightRegular;
|
font-weight: $euiFontWeightRegular;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
opacity: 0.7;
|
opacity: .7;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
* 1. Calculated px values come from the open/closed state of the global nav sidebar
|
* 1. Calculated px values come from the open/closed state of the global nav sidebar
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#graphBasic {
|
#graphBasic {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
.gphFieldEditor__badge--disabled,
|
.gphFieldEditor__badge--disabled,
|
||||||
.gphFieldEditor__badge--disabled:focus {
|
.gphFieldEditor__badge--disabled:focus {
|
||||||
opacity: 0.7;
|
opacity: .7;
|
||||||
text-decoration: line-through;
|
text-decoration: line-through;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,16 +13,16 @@
|
||||||
fill: $euiColorMediumShade;
|
fill: $euiColorMediumShade;
|
||||||
stroke: $euiColorMediumShade;
|
stroke: $euiColorMediumShade;
|
||||||
stroke-width: 2;
|
stroke-width: 2;
|
||||||
stroke-opacity: 0.5;
|
stroke-opacity: .5;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
stroke-opacity: 0.95;
|
stroke-opacity: .95;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--selected {
|
&--selected {
|
||||||
stroke: $euiColorDarkShade;
|
stroke: $euiColorDarkShade;
|
||||||
stroke-opacity: 0.95;
|
stroke-opacity: .95;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
fill: $euiColorMediumShade;
|
fill: $euiColorMediumShade;
|
||||||
&--selected {
|
&--selected {
|
||||||
stroke-width: $euiSizeXS;
|
stroke-width: $euiSizeXS;
|
||||||
stroke: transparentize($euiColorPrimary, 0.25);
|
stroke: transparentize($euiColorPrimary, .25);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
&--pickable {
|
&--pickable {
|
||||||
margin: $euiSizeXS;
|
margin: $euiSizeXS;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
opacity: 0.7;
|
opacity: .7;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--pickable:hover,
|
&--pickable:hover,
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
.gphVennDiagram__left {
|
.gphVennDiagram__left {
|
||||||
fill: $euiColorDanger;
|
fill: $euiColorDanger;
|
||||||
fill-opacity: 0.5;
|
fill-opacity: .5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gphVennDiagram__right {
|
.gphVennDiagram__right {
|
||||||
fill: $euiColorPrimary;
|
fill: $euiColorPrimary;
|
||||||
fill-opacity: 0.5;
|
fill-opacity: .5;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* [1] Will center vertically the empty search result
|
* [1] Will center vertically the empty search result
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.componentTemplatesListItem {
|
.componentTemplatesListItem {
|
||||||
background-color: white;
|
background-color: $euiColorGhost;
|
||||||
padding: $euiSizeM;
|
padding: $euiSizeM;
|
||||||
border-bottom: $euiBorderThin;
|
border-bottom: $euiBorderThin;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
&--selected {
|
&--selected {
|
||||||
&::before {
|
&::before {
|
||||||
content: '';
|
content: '';
|
||||||
background-color: rgba(255, 255, 255, 0.7);
|
background-color: rgba(255, 255, 255, .7);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
left: 0;
|
left: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -73,11 +73,10 @@
|
||||||
|
|
||||||
.mappingsEditor__createFieldWrapper {
|
.mappingsEditor__createFieldWrapper {
|
||||||
&--multiField {
|
&--multiField {
|
||||||
.mappingsEditor__createFieldContent {
|
|
||||||
padding-left: $euiSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mappingsEditor__createFieldContent {
|
.mappingsEditor__createFieldContent {
|
||||||
|
padding-left: $euiSize;
|
||||||
|
|
||||||
&::before, &::after {
|
&::before, &::after {
|
||||||
content: none;
|
content: none;
|
||||||
}
|
}
|
||||||
|
@ -110,6 +109,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// stylelint-disable selector-no-qualifying-type
|
||||||
ul.esUiTree {
|
ul.esUiTree {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.mappingsEditor__fieldsListItem__field--dim {
|
.mappingsEditor__fieldsListItem__field--dim {
|
||||||
opacity: 0.3;
|
opacity: .3;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: initial;
|
background-color: initial;
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
.indTable {
|
.indTable {
|
||||||
// The index table is a bespoke table and can't make use of EuiBasicTable's width settings
|
// The index table is a bespoke table and can't make use of EuiBasicTable's width settings
|
||||||
thead th.indTable__header--name {
|
thead th.indTable__header--name { // stylelint-disable-line selector-no-qualifying-type
|
||||||
width: 25%;
|
width: 25%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,3 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$dropZoneButtonHeight: 60px;
|
$dropZoneButtonHeight: 60px;
|
||||||
$dropZoneButtonOffsetY: $dropZoneButtonHeight * 0.5;
|
$dropZoneButtonOffsetY: $dropZoneButtonHeight * .5;
|
||||||
|
|
||||||
&__dropZoneButton {
|
&__dropZoneButton {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
$hideHeight: $euiScrollBarCorner * 1.25;
|
$hideHeight: $euiScrollBarCorner * 1.25;
|
||||||
mask-image: linear-gradient(
|
mask-image: linear-gradient(
|
||||||
to right,
|
to right,
|
||||||
transparentize(red, .9) 0%,
|
transparentize($euiColorDanger, .9) 0%,
|
||||||
transparentize(red, 0) $hideHeight,
|
transparentize($euiColorDanger, 0) $hideHeight,
|
||||||
transparentize(red, 0) calc(100% - #{$hideHeight}),
|
transparentize($euiColorDanger, 0) calc(100% - #{$hideHeight}),
|
||||||
transparentize(red, .9) 100%
|
transparentize($euiColorDanger, .9) 100%
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// Targeting img as this won't target normal EuiIcon's only the custom svgs's
|
// Targeting img as this won't target normal EuiIcon's only the custom svgs's
|
||||||
img.lnsChartSwitch__chartIcon { // sass-lint:disable-line no-qualifying-elements
|
img.lnsChartSwitch__chartIcon { // stylelint-disable-line selector-no-qualifying-type
|
||||||
// The large icons aren't square so max out the width to fill the height
|
// The large icons aren't square so max out the width to fill the height
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,5 +38,3 @@
|
||||||
margin-right: $euiSizeS;
|
margin-right: $euiSizeS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,3 @@
|
||||||
margin-top: $euiSizeS;
|
margin-top: $euiSizeS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,8 @@
|
||||||
@mixin mapOverlayIsTextOnly {
|
@mixin mapOverlayIsTextOnly {
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 2px $euiColorEmptyShade,
|
0 0 2px $euiColorEmptyShade,
|
||||||
// Multiple shadows helps turn it into an outline since
|
|
||||||
// text shadows have no spread value
|
|
||||||
0 0 1px $euiColorEmptyShade,
|
0 0 1px $euiColorEmptyShade,
|
||||||
0 0 1px $euiColorEmptyShade,
|
0 0 1px $euiColorEmptyShade,
|
||||||
0 0 1px $euiColorEmptyShade,
|
0 0 1px $euiColorEmptyShade,
|
||||||
0 0 1px $euiColorEmptyShade,
|
0 0 1px $euiColorEmptyShade 0 0 1px $euiColorEmptyShade 0 0 1px $euiColorEmptyShade;
|
||||||
0 0 1px $euiColorEmptyShade,
|
|
||||||
0 0 1px $euiColorEmptyShade;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,7 +45,6 @@
|
||||||
background-color: tintOrShade($euiColorLightShade, 60%, 20%);
|
background-color: tintOrShade($euiColorLightShade, 60%, 20%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.mapTocEntry-visible,
|
.mapTocEntry-visible,
|
||||||
.mapTocEntry-notVisible {
|
.mapTocEntry-notVisible {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
$mlColorCritical: #fe5050;
|
$mlColorCritical: #FE5050;
|
||||||
$mlColorMajor: #fba740;
|
$mlColorMajor: #FBA740;
|
||||||
$mlColorMinor: #fdec25;
|
$mlColorMinor: #FDEC25;
|
||||||
$mlColorWarning: #8bc8fb;
|
$mlColorWarning: #8BC8FB;
|
||||||
$mlColorUnknown: #c0c0c0;
|
$mlColorUnknown: #C0C0C0;
|
||||||
|
|
||||||
$mlColorCriticalText: makeHighContrastColor($mlColorCritical, $euiColorEmptyShade);
|
$mlColorCriticalText: makeHighContrastColor($mlColorCritical, $euiColorEmptyShade);
|
||||||
$mlColorMajorText: makeHighContrastColor($mlColorMajor, $euiColorEmptyShade);
|
$mlColorMajorText: makeHighContrastColor($mlColorMajor, $euiColorEmptyShade);
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
.detector-rules-icon {
|
.detector-rules-icon {
|
||||||
margin-left: $euiSizeXS;
|
margin-left: $euiSizeXS;
|
||||||
opacity: 0.5;
|
opacity: .5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
.anomaly-description-list {
|
.anomaly-description-list {
|
||||||
|
|
||||||
.euiDescriptionList__title {
|
.euiDescriptionList__title {
|
||||||
margin-top: 0px;
|
margin-top: 0;
|
||||||
flex-basis: 15%;
|
flex-basis: 15%;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.euiDescriptionList__description {
|
.euiDescriptionList__description {
|
||||||
margin-top: 0px;
|
margin-top: 0;
|
||||||
flex-basis: 85%;
|
flex-basis: 85%;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
|
@ -116,4 +116,3 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&__rowHighlighted {
|
&__rowHighlighted {
|
||||||
background-color: transparentize($euiColorGhost, 0.9);
|
background-color: transparentize($euiColorGhost, .9);
|
||||||
}
|
}
|
||||||
|
|
||||||
&--hidden {
|
&--hidden {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.ml-table-controls {
|
.ml-table-controls {
|
||||||
label {
|
label {
|
||||||
font-size: $euiFontSizeXS;
|
font-size: $euiFontSizeXS;
|
||||||
padding: 0px 0px $euiSizeXS $euiSizeXS;
|
padding: 0 0 $euiSizeXS $euiSizeXS;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ml-table-controls-element {
|
.ml-table-controls-element {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
color: $euiColorMediumShade;
|
color: $euiColorMediumShade;
|
||||||
display: block;
|
display: block;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
margin: $euiSizeXS 0px 0px 0px;
|
margin: $euiSizeXS 0 0 0;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
|
@ -3,4 +3,3 @@
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.filter-button {
|
.filter-button {
|
||||||
opacity: 0.3;
|
opacity: .3;
|
||||||
min-width: 14px;
|
min-width: 14px;
|
||||||
-webkit-transform: translateY(-1px);
|
-webkit-transform: translateY(-1px);
|
||||||
transform: translateY(-1px);
|
transform: translateY(-1px);
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
width: calc(100% - 34px); // SASSTODO: Calc proper value
|
width: calc(100% - 34px); // SASSTODO: Calc proper value
|
||||||
height: 22px;
|
height: 22px;
|
||||||
min-width: 70px;
|
min-width: 70px;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0;
|
||||||
color: $euiColorDarkShade;
|
color: $euiColorDarkShade;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
||||||
|
|
|
@ -7,31 +7,31 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.mlJobSelector__ganttBar {
|
.mlJobSelector__ganttBar {
|
||||||
background-color: #79adda;
|
background-color: #79ADDA;
|
||||||
height: $euiSizeM;
|
height: $euiSizeM;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mlJobSelector__ganttBarBackEdge {
|
.mlJobSelector__ganttBarBackEdge {
|
||||||
height: $euiSize;
|
height: $euiSize;
|
||||||
border-left: 1px solid #d6d6d6;
|
border-left: 1px solid #D6D6D6;
|
||||||
border-right: 1px solid #d6d6d6;
|
border-right: 1px solid #D6D6D6;
|
||||||
margin-bottom: -14px;
|
margin-bottom: -14px;
|
||||||
padding-top: $euiSizeS;
|
padding-top: $euiSizeS;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mlJobSelector__ganttBarDashed {
|
.mlJobSelector__ganttBarDashed {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border-top: 1px dashed #d6d6d6;
|
border-top: 1px dashed #D6D6D6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mlJobSelector__ganttBarRunning {
|
.mlJobSelector__ganttBarRunning {
|
||||||
background-image: linear-gradient(45deg,
|
background-image: linear-gradient(45deg,
|
||||||
rgba(255, 255, 255, 0.15) 25%,
|
rgba(255, 255, 255, .15) 25%,
|
||||||
transparent 25%,
|
transparent 25%,
|
||||||
transparent 50%,
|
transparent 50%,
|
||||||
rgba(255, 255, 255, 0.15) 50%,
|
rgba(255, 255, 255, .15) 50%,
|
||||||
rgba(255, 255, 255, 0.15) 75%,
|
rgba(255, 255, 255, .15) 75%,
|
||||||
transparent 75%,
|
transparent 75%,
|
||||||
transparent);
|
transparent);
|
||||||
background-size: $euiSizeXXL $euiSizeXXL;
|
background-size: $euiSizeXXL $euiSizeXXL;
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue