1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Double instead of single quotes in CSS

This commit is contained in:
Mark McDowall
2019-07-21 17:41:52 -07:00
parent a018770a18
commit dc8f81b536
152 changed files with 321 additions and 320 deletions
@@ -14,7 +14,7 @@
}
.importButton {
composes: button from '~Components/Link/SpinnerButton.css';
composes: button from "~Components/Link/SpinnerButton.css";
height: 35px;
}
@@ -26,7 +26,7 @@
}
.loading {
composes: loading from '~Components/Loading/LoadingIndicator.css';
composes: loading from "~Components/Loading/LoadingIndicator.css";
margin: 0 10px 0 12px;
text-align: left;
@@ -1,11 +1,11 @@
.folder {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 1 0 200px;
}
.monitor {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 200px;
min-width: 185px;
@@ -13,28 +13,28 @@
.qualityProfile,
.languageProfile {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 250px;
min-width: 170px;
}
.seriesType {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 200px;
min-width: 120px;
}
.seasonFolder {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 150px;
min-width: 120px;
}
.series {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 400px;
min-width: 300px;
@@ -1,16 +1,16 @@
.selectInput {
composes: input from '~Components/Form/CheckInput.css';
composes: input from "~Components/Form/CheckInput.css";
}
.folder {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 1 0 200px;
line-height: 36px;
}
.monitor {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 200px;
min-width: 185px;
@@ -18,35 +18,35 @@
.qualityProfile,
.languageProfile {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 250px;
min-width: 170px;
}
.seriesType {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 200px;
min-width: 120px;
}
.seasonFolder {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 150px;
min-width: 120px;
}
.series {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 400px;
min-width: 300px;
}
.hideLanguageProfile {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
display: none;
}
@@ -1,3 +1,3 @@
.input {
composes: input from '~Components/Form/CheckInput.css';
composes: input from "~Components/Form/CheckInput.css";
}
@@ -1,5 +1,5 @@
.button {
composes: link from '~Components/Link/Link.css';
composes: link from "~Components/Link/Link.css";
display: flex;
align-items: center;
@@ -61,7 +61,7 @@
}
.searchInput {
composes: input from '~Components/Form/TextInput.css';
composes: input from "~Components/Form/TextInput.css";
border-radius: 0;
}