mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
Fix stylelint once and for all (hopefully)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
.cell {
|
||||
composes: cell from "~./TableRowCell.css";
|
||||
composes: cell from '~./TableRowCell.css';
|
||||
|
||||
width: 180px;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
.cell {
|
||||
composes: cell from "~./TableRowCell.css";
|
||||
composes: link from "~Components/Link/Link.css";
|
||||
composes: cell from '~./TableRowCell.css';
|
||||
composes: link from '~Components/Link/Link.css';
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
.selectCell {
|
||||
composes: cell from "~Components/Table/Cells/TableRowCell.css";
|
||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
.input {
|
||||
composes: input from "~Components/Form/CheckInput.css";
|
||||
composes: input from '~Components/Form/CheckInput.css';
|
||||
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
.cell {
|
||||
@add-mixin truncate;
|
||||
composes: cell from "~Components/Table/Cells/TableRowCell.css";
|
||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||
|
||||
flex-grow: 0;
|
||||
flex-shrink: 1;
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
.cell {
|
||||
composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
|
||||
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
|
||||
|
||||
flex: 0 0 36px;
|
||||
}
|
||||
|
||||
.input {
|
||||
composes: input from "~Components/Form/CheckInput.css";
|
||||
composes: input from '~Components/Form/CheckInput.css';
|
||||
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
}
|
||||
|
||||
.loading {
|
||||
composes: loading from "~Components/Loading/LoadingIndicator.css";
|
||||
composes: loading from '~Components/Loading/LoadingIndicator.css';
|
||||
|
||||
margin: 0;
|
||||
margin-left: 5px;
|
||||
@@ -54,7 +54,7 @@
|
||||
}
|
||||
|
||||
.pageSelect {
|
||||
composes: select from "~Components/Form/SelectInput.css";
|
||||
composes: select from '~Components/Form/SelectInput.css';
|
||||
|
||||
padding: 0 2px;
|
||||
height: 25px;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
.row {
|
||||
composes: link from "~Components/Link/Link.css";
|
||||
composes: row from "~./TableRow.css";
|
||||
composes: link from '~Components/Link/Link.css';
|
||||
composes: row from '~./TableRow.css';
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
.selectAllHeaderCell {
|
||||
composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
|
||||
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
|
||||
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
.input {
|
||||
composes: input from "~Components/Form/CheckInput.css";
|
||||
composes: input from '~Components/Form/CheckInput.css';
|
||||
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
.selectAllHeaderCell {
|
||||
composes: headerCell from "~Components/Table/TableHeaderCell.css";
|
||||
composes: headerCell from '~Components/Table/TableHeaderCell.css';
|
||||
|
||||
flex: 0 0 36px;
|
||||
}
|
||||
|
||||
.input {
|
||||
composes: input from "~Components/Form/CheckInput.css";
|
||||
composes: input from '~Components/Form/CheckInput.css';
|
||||
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user