-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix/insights-css
# Conflicts: # frontend/__snapshots__/scenes-app-insights--retention--webkit.png # frontend/src/exporter/ExportedInsight/ExportedInsight.scss # frontend/src/exporter/Exporter.scss # frontend/src/lib/components/Cards/CardMeta.scss # frontend/src/lib/components/Cards/InsightCard/InsightCard.scss # frontend/src/queries/nodes/InsightViz/EditorFilters.scss # frontend/src/scenes/funnels/FunnelBarChart/FunnelBarChart.scss # frontend/src/scenes/insights/Insight.scss # frontend/src/scenes/insights/views/InsightsTable/InsightsTable.scss
- Loading branch information
Showing
197 changed files
with
2,817 additions
and
567 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
frontend/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
module.exports = { | ||
extends: 'stylelint-config-standard-scss', // TODO: Enable separately, as the diff will be significant | ||
// TODO: Enable separately, as the diff will be significant "plugins": ["stylelint-order"], | ||
rules: { | ||
'no-descending-specificity': null, | ||
'number-max-precision': 5, | ||
'value-keyword-case': [ | ||
'lower', | ||
{ | ||
// CSS Color Module Level 3 says currentColor, Level 4 candidate says currentcolor | ||
// Sticking to Level 3 for now | ||
camelCaseSvgKeywords: true, | ||
}, | ||
], | ||
// Sadly Safari only started supporting the range syntax of media queries in 2023, so let's switch to that | ||
// ('context' value) in 2024, once support is better https://caniuse.com/?search=range%20context | ||
'media-feature-range-notation': 'prefix', | ||
'selector-class-pattern': [ | ||
'^[A-Za-z0-9_-]+(__[A-Za-z0-9_-]+)?(--[A-Za-z0-9-]+)?$', | ||
{ | ||
message: 'Expected class selector to match Block__Element--Modifier or plain snake-case', | ||
}, | ||
], | ||
'selector-id-pattern': [ | ||
'^[A-Za-z0-9_-]+(__[A-Za-z0-9_-]+)?(--[A-Za-z0-9_-]+)?$', | ||
{ | ||
message: 'Expected id selector to match Block__Element--Modifier or plain kebak-case', | ||
}, | ||
], | ||
'keyframes-name-pattern': [ | ||
'^[A-Za-z0-9_-]+__[A-Za-z0-9_-]+$', | ||
{ | ||
message: 'Expected keyframe name to match Block__Animation', | ||
}, | ||
], | ||
'scss/dollar-variable-pattern': [ | ||
'^[A-Za-z_]+[A-Za-z0-9_-]+$', | ||
{ | ||
message: 'Expected variable to match kebab-case or snake_case', | ||
}, | ||
], | ||
'scss/operator-no-newline-after': null, // Doesn't always play well with prettier | ||
'scss/at-extend-no-missing-placeholder': null, | ||
'scss/comment-no-empty': null, | ||
// "order/order": ["dollar-variables", "custom-properties", "declarations", "rules", "at-rules"], | ||
// "order/properties-order": ["width", "height"], | ||
}, | ||
} |
Binary file modified
BIN
+9 Bytes
(100%)
frontend/__snapshots__/lemon-ui-lemon-segmented-button--default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+9 Bytes
(100%)
frontend/__snapshots__/lemon-ui-lemon-segmented-button--full-width.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-266 Bytes
(100%)
frontend/__snapshots__/scenes-app-notebooks--recordings-playlist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ | |
right: 0; | ||
top: 0; | ||
z-index: 2; | ||
|
||
svg { | ||
font-size: 0.75rem; | ||
margin: 0.25rem; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.