mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-25 22:46:31 -04:00
Fix stylelint once and for all (hopefully)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
.deleteButton {
|
||||
composes: button from "~Components/Link/Button.css";
|
||||
composes: button from '~Components/Link/Button.css';
|
||||
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.languageProfile {
|
||||
composes: card from "~Components/Card.css";
|
||||
composes: card from '~Components/Card.css';
|
||||
|
||||
width: 300px;
|
||||
}
|
||||
@@ -18,7 +18,7 @@
|
||||
}
|
||||
|
||||
.cloneButton {
|
||||
composes: button from "~Components/Link/IconButton.css";
|
||||
composes: button from '~Components/Link/IconButton.css';
|
||||
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
}
|
||||
|
||||
.addLanguageProfile {
|
||||
composes: languageProfile from "~./LanguageProfile.css";
|
||||
composes: languageProfile from '~./LanguageProfile.css';
|
||||
|
||||
background-color: $cardAlternateBackgroundColor;
|
||||
color: $gray;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.qualityProfile {
|
||||
composes: card from "~Components/Card.css";
|
||||
composes: card from '~Components/Card.css';
|
||||
|
||||
width: 300px;
|
||||
}
|
||||
@@ -18,7 +18,7 @@
|
||||
}
|
||||
|
||||
.cloneButton {
|
||||
composes: button from "~Components/Link/IconButton.css";
|
||||
composes: button from '~Components/Link/IconButton.css';
|
||||
|
||||
height: 36px;
|
||||
}
|
||||
@@ -31,7 +31,7 @@
|
||||
}
|
||||
|
||||
.tooltipLabel {
|
||||
composes: label from "~Components/Label.css";
|
||||
composes: label from '~Components/Label.css';
|
||||
|
||||
margin: 0;
|
||||
border: none;
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
}
|
||||
|
||||
.checkInput {
|
||||
composes: input from "~Components/Form/CheckInput.css";
|
||||
composes: input from '~Components/Form/CheckInput.css';
|
||||
|
||||
margin-top: 5px;
|
||||
}
|
||||
@@ -45,7 +45,7 @@
|
||||
}
|
||||
|
||||
.createGroupButton {
|
||||
composes: buton from "~Components/Link/IconButton.css";
|
||||
composes: buton from '~Components/Link/IconButton.css';
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
@@ -16,18 +16,18 @@
|
||||
}
|
||||
|
||||
.checkInputContainer {
|
||||
composes: checkInputContainer from "~./QualityProfileItem.css";
|
||||
composes: checkInputContainer from '~./QualityProfileItem.css';
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.checkInput {
|
||||
composes: checkInput from "~./QualityProfileItem.css";
|
||||
composes: checkInput from '~./QualityProfileItem.css';
|
||||
}
|
||||
|
||||
.nameInput {
|
||||
composes: input from "~Components/Form/TextInput.css";
|
||||
composes: input from '~Components/Form/TextInput.css';
|
||||
|
||||
margin-top: 4px;
|
||||
margin-right: 10px;
|
||||
@@ -71,7 +71,7 @@
|
||||
}
|
||||
|
||||
.deleteGroupButton {
|
||||
composes: buton from "~Components/Link/IconButton.css";
|
||||
composes: buton from '~Components/Link/IconButton.css';
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.editGroupsButton {
|
||||
composes: button from "~Components/Link/Button.css";
|
||||
composes: button from '~Components/Link/Button.css';
|
||||
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
}
|
||||
|
||||
.addQualityProfile {
|
||||
composes: qualityProfile from "~./QualityProfile.css";
|
||||
composes: qualityProfile from '~./QualityProfile.css';
|
||||
|
||||
background-color: $cardAlternateBackgroundColor;
|
||||
color: $gray;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.deleteButton {
|
||||
composes: button from "~Components/Link/Button.css";
|
||||
composes: button from '~Components/Link/Button.css';
|
||||
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.releaseProfile {
|
||||
composes: card from "~Components/Card.css";
|
||||
composes: card from '~Components/Card.css';
|
||||
|
||||
width: 290px;
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
}
|
||||
|
||||
.addReleaseProfile {
|
||||
composes: releaseProfile from "~./ReleaseProfile.css";
|
||||
composes: releaseProfile from '~./ReleaseProfile.css';
|
||||
|
||||
background-color: $cardAlternateBackgroundColor;
|
||||
color: $gray;
|
||||
|
||||
Reference in New Issue
Block a user