Fixed: Wrapping of naming tokens with alternate separators

(cherry picked from commit 80630bf97f5bb3b49d4824dc039d2edfc74e4797)

Closes #9743
Closes #9836
pull/9471/merge
Stevie Robinson 3 months ago committed by Bogdan
parent f38545f852
commit 86a17e7984

@ -17,7 +17,7 @@
} }
.small { .small {
width: 480px; width: 490px;
} }
.large { .large {
@ -26,8 +26,8 @@
.token { .token {
flex: 0 0 50%; flex: 0 0 50%;
padding: 6px 16px; padding: 6px;
background-color: var(--popoverTitleBorderColor); background-color: var(--popoverTitleBackgroundColor);
font-family: $monoSpaceFontFamily; font-family: $monoSpaceFontFamily;
} }
@ -37,8 +37,8 @@
align-self: stretch; align-self: stretch;
justify-content: space-between; justify-content: space-between;
flex: 0 0 50%; flex: 0 0 50%;
padding: 6px 16px; padding: 6px;
background-color: var(--popoverTitleBackgroundColor); background-color: var(--popoverBodyBackgroundColor);
.footNote { .footNote {
padding: 2px; padding: 2px;

@ -11,7 +11,7 @@
"lint": "eslint --config frontend/.eslintrc.js --ignore-path frontend/.eslintignore frontend/", "lint": "eslint --config frontend/.eslintrc.js --ignore-path frontend/.eslintignore frontend/",
"lint-fix": "yarn lint --fix", "lint-fix": "yarn lint --fix",
"stylelint-linux": "stylelint $(find frontend -name '*.css') --config frontend/.stylelintrc", "stylelint-linux": "stylelint $(find frontend -name '*.css') --config frontend/.stylelintrc",
"stylelint-windows": "stylelint frontend/**/*.css --config frontend/.stylelintrc" "stylelint-windows": "stylelint \"frontend/**/*.css\" --config frontend/.stylelintrc"
}, },
"repository": "https://github.com/Radarr/Radarr", "repository": "https://github.com/Radarr/Radarr",
"author": "Team Radarr", "author": "Team Radarr",

Loading…
Cancel
Save