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

View File

@ -382,7 +382,7 @@
"selector-type-no-unknown": true, "selector-type-no-unknown": true,
"shorthand-property-no-redundant-values": true, "shorthand-property-no-redundant-values": true,
"string-no-newline": true, "string-no-newline": true,
"string-quotes": "single", "string-quotes": "double",
"time-min-milliseconds": 100, "time-min-milliseconds": 100,
"unit-case": "lower", "unit-case": "lower",
"unit-no-unknown": true, "unit-no-unknown": true,

View File

@ -1,18 +1,18 @@
.language, .language,
.quality { .quality {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 100px; width: 100px;
} }
.indexer { .indexer {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 80px; width: 80px;
} }
.actions { .actions {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 70px; width: 70px;
} }

View File

@ -1,5 +1,5 @@
.description { .description {
composes: description from '~Components/DescriptionList/DescriptionListItemDescription.css'; composes: description from "~Components/DescriptionList/DescriptionListItemDescription.css";
overflow-wrap: break-word; overflow-wrap: break-word;
} }

View File

@ -1,5 +1,5 @@
.markAsFailedButton { .markAsFailedButton {
composes: button from '~Components/Link/Button.css'; composes: button from "~Components/Link/Button.css";
margin-right: auto; margin-right: auto;
} }

View File

@ -1,5 +1,5 @@
.cell { .cell {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 35px; width: 35px;
text-align: center; text-align: center;

View File

@ -1,23 +1,23 @@
.downloadClient { .downloadClient {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 120px; width: 120px;
} }
.indexer { .indexer {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 80px; width: 80px;
} }
.releaseGroup { .releaseGroup {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 110px; width: 110px;
} }
.details { .details {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 30px; width: 30px;
} }

View File

@ -1,12 +1,12 @@
.torrent { .torrent {
composes: label from '~Components/Label.css'; composes: label from "~Components/Label.css";
border-color: $torrentColor; border-color: $torrentColor;
background-color: $torrentColor; background-color: $torrentColor;
} }
.usenet { .usenet {
composes: label from '~Components/Label.css'; composes: label from "~Components/Label.css";
border-color: $usenetColor; border-color: $usenetColor;
background-color: $usenetColor; background-color: $usenetColor;

View File

@ -1,23 +1,23 @@
.quality { .quality {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 150px; width: 150px;
} }
.protocol { .protocol {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 100px; width: 100px;
} }
.progress { .progress {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 150px; width: 150px;
} }
.actions { .actions {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 70px; width: 70px;
} }

View File

@ -1,5 +1,5 @@
.status { .status {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 30px; width: 30px;
} }

View File

@ -1,5 +1,5 @@
.timeleft { .timeleft {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 100px; width: 100px;
} }

View File

@ -17,7 +17,7 @@
} }
.searchInput { .searchInput {
composes: input from '~Components/Form/TextInput.css'; composes: input from "~Components/Form/TextInput.css";
height: 46px; height: 46px;
border-radius: 0; border-radius: 0;

View File

@ -36,28 +36,28 @@
} }
.searchForMissingEpisodesContainer { .searchForMissingEpisodesContainer {
composes: container from '~Components/Form/CheckInput.css'; composes: container from "~Components/Form/CheckInput.css";
flex: 0 1 0; flex: 0 1 0;
} }
.searchForMissingEpisodesInput { .searchForMissingEpisodesInput {
composes: input from '~Components/Form/CheckInput.css'; composes: input from "~Components/Form/CheckInput.css";
margin-top: 0; margin-top: 0;
} }
.modalFooter { .modalFooter {
composes: modalFooter from '~Components/Modal/ModalFooter.css'; composes: modalFooter from "~Components/Modal/ModalFooter.css";
} }
.addButton { .addButton {
@add-mixin truncate; @add-mixin truncate;
composes: button from '~Components/Link/SpinnerButton.css'; composes: button from "~Components/Link/SpinnerButton.css";
} }
.hideLanguageProfile { .hideLanguageProfile {
composes: group from '~Components/Form/FormGroup.css'; composes: group from "~Components/Form/FormGroup.css";
display: none; display: none;
} }

View File

@ -14,7 +14,7 @@
} }
.importButton { .importButton {
composes: button from '~Components/Link/SpinnerButton.css'; composes: button from "~Components/Link/SpinnerButton.css";
height: 35px; height: 35px;
} }
@ -26,7 +26,7 @@
} }
.loading { .loading {
composes: loading from '~Components/Loading/LoadingIndicator.css'; composes: loading from "~Components/Loading/LoadingIndicator.css";
margin: 0 10px 0 12px; margin: 0 10px 0 12px;
text-align: left; text-align: left;

View File

@ -1,11 +1,11 @@
.folder { .folder {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css'; composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 1 0 200px; flex: 1 0 200px;
} }
.monitor { .monitor {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css'; composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 200px; flex: 0 1 200px;
min-width: 185px; min-width: 185px;
@ -13,28 +13,28 @@
.qualityProfile, .qualityProfile,
.languageProfile { .languageProfile {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css'; composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 250px; flex: 0 1 250px;
min-width: 170px; min-width: 170px;
} }
.seriesType { .seriesType {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css'; composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 200px; flex: 0 1 200px;
min-width: 120px; min-width: 120px;
} }
.seasonFolder { .seasonFolder {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css'; composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 150px; flex: 0 1 150px;
min-width: 120px; min-width: 120px;
} }
.series { .series {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css'; composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
flex: 0 1 400px; flex: 0 1 400px;
min-width: 300px; min-width: 300px;

View File

@ -1,16 +1,16 @@
.selectInput { .selectInput {
composes: input from '~Components/Form/CheckInput.css'; composes: input from "~Components/Form/CheckInput.css";
} }
.folder { .folder {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css'; composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 1 0 200px; flex: 1 0 200px;
line-height: 36px; line-height: 36px;
} }
.monitor { .monitor {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css'; composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 200px; flex: 0 1 200px;
min-width: 185px; min-width: 185px;
@ -18,35 +18,35 @@
.qualityProfile, .qualityProfile,
.languageProfile { .languageProfile {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css'; composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 250px; flex: 0 1 250px;
min-width: 170px; min-width: 170px;
} }
.seriesType { .seriesType {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css'; composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 200px; flex: 0 1 200px;
min-width: 120px; min-width: 120px;
} }
.seasonFolder { .seasonFolder {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css'; composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 150px; flex: 0 1 150px;
min-width: 120px; min-width: 120px;
} }
.series { .series {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css'; composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 1 400px; flex: 0 1 400px;
min-width: 300px; min-width: 300px;
} }
.hideLanguageProfile { .hideLanguageProfile {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css'; composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
display: none; display: none;
} }

View File

@ -1,3 +1,3 @@
.input { .input {
composes: input from '~Components/Form/CheckInput.css'; composes: input from "~Components/Form/CheckInput.css";
} }

View File

@ -1,5 +1,5 @@
.button { .button {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
display: flex; display: flex;
align-items: center; align-items: center;
@ -61,7 +61,7 @@
} }
.searchInput { .searchInput {
composes: input from '~Components/Form/TextInput.css'; composes: input from "~Components/Form/TextInput.css";
border-radius: 0; border-radius: 0;
} }

View File

@ -63,27 +63,27 @@
*/ */
.downloaded { .downloaded {
composes: downloaded from '~Calendar/Events/CalendarEvent.css'; composes: downloaded from "~Calendar/Events/CalendarEvent.css";
} }
.downloading { .downloading {
composes: downloading from '~Calendar/Events/CalendarEvent.css'; composes: downloading from "~Calendar/Events/CalendarEvent.css";
} }
.unmonitored { .unmonitored {
composes: unmonitored from '~Calendar/Events/CalendarEvent.css'; composes: unmonitored from "~Calendar/Events/CalendarEvent.css";
} }
.onAir { .onAir {
composes: onAir from '~Calendar/Events/CalendarEvent.css'; composes: onAir from "~Calendar/Events/CalendarEvent.css";
} }
.missing { .missing {
composes: missing from '~Calendar/Events/CalendarEvent.css'; composes: missing from "~Calendar/Events/CalendarEvent.css";
} }
.premiere { .premiere {
composes: premiere from '~Calendar/Events/CalendarEvent.css'; composes: premiere from "~Calendar/Events/CalendarEvent.css";
} }
@media only screen and (max-width: $breakpointSmall) { @media only screen and (max-width: $breakpointSmall) {

View File

@ -1,11 +1,11 @@
.calendarPageBody { .calendarPageBody {
composes: contentBody from '~Components/Page/PageContentBody.css'; composes: contentBody from "~Components/Page/PageContentBody.css";
display: flex; display: flex;
} }
.calendarInnerPageBody { .calendarInnerPageBody {
composes: innerContentBody from '~Components/Page/PageContentBody.css'; composes: innerContentBody from "~Components/Page/PageContentBody.css";
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@ -57,29 +57,29 @@
*/ */
.downloaded { .downloaded {
composes: downloaded from '~Calendar/Events/CalendarEvent.css'; composes: downloaded from "~Calendar/Events/CalendarEvent.css";
} }
.downloading { .downloading {
composes: downloading from '~Calendar/Events/CalendarEvent.css'; composes: downloading from "~Calendar/Events/CalendarEvent.css";
} }
.unmonitored { .unmonitored {
composes: unmonitored from '~Calendar/Events/CalendarEvent.css'; composes: unmonitored from "~Calendar/Events/CalendarEvent.css";
} }
.onAir { .onAir {
composes: onAir from '~Calendar/Events/CalendarEvent.css'; composes: onAir from "~Calendar/Events/CalendarEvent.css";
} }
.missing { .missing {
composes: missing from '~Calendar/Events/CalendarEvent.css'; composes: missing from "~Calendar/Events/CalendarEvent.css";
} }
.premiere { .premiere {
composes: premiere from '~Calendar/Events/CalendarEvent.css'; composes: premiere from "~Calendar/Events/CalendarEvent.css";
} }
.unaired { .unaired {
composes: unaired from '~Calendar/Events/CalendarEvent.css'; composes: unaired from "~Calendar/Events/CalendarEvent.css";
} }

View File

@ -8,7 +8,7 @@
} }
.todayButton { .todayButton {
composes: button from '~Components/Link/Button.css'; composes: button from "~Components/Link/Button.css";
margin-left: 5px; margin-left: 5px;
} }
@ -30,13 +30,13 @@
} }
.viewMenu { .viewMenu {
composes: menu from '~Components/Menu/Menu.css'; composes: menu from "~Components/Menu/Menu.css";
line-height: 31px; line-height: 31px;
} }
.loading { .loading {
composes: loading from '~Components/Loading/LoadingIndicator.css'; composes: loading from "~Components/Loading/LoadingIndicator.css";
margin-top: 5px; margin-top: 5px;
margin-right: 10px; margin-right: 10px;

View File

@ -13,29 +13,29 @@
*/ */
.downloaded { .downloaded {
composes: downloaded from '~Calendar/Events/CalendarEvent.css'; composes: downloaded from "~Calendar/Events/CalendarEvent.css";
} }
.downloading { .downloading {
composes: downloading from '~Calendar/Events/CalendarEvent.css'; composes: downloading from "~Calendar/Events/CalendarEvent.css";
} }
.unmonitored { .unmonitored {
composes: unmonitored from '~Calendar/Events/CalendarEvent.css'; composes: unmonitored from "~Calendar/Events/CalendarEvent.css";
} }
.onAir { .onAir {
composes: onAir from '~Calendar/Events/CalendarEvent.css'; composes: onAir from "~Calendar/Events/CalendarEvent.css";
} }
.missing { .missing {
composes: missing from '~Calendar/Events/CalendarEvent.css'; composes: missing from "~Calendar/Events/CalendarEvent.css";
} }
.premiere { .premiere {
composes: premiere from '~Calendar/Events/CalendarEvent.css'; composes: premiere from "~Calendar/Events/CalendarEvent.css";
} }
.unaired { .unaired {
composes: unaired from '~Calendar/Events/CalendarEvent.css'; composes: unaired from "~Calendar/Events/CalendarEvent.css";
} }

View File

@ -1,5 +1,5 @@
.modal { .modal {
composes: modal from '~Components/Modal/Modal.css'; composes: modal from "~Components/Modal/Modal.css";
height: 600px; height: 600px;
} }

View File

@ -1,12 +1,12 @@
.modalBody { .modalBody {
composes: modalBody from '~Components/Modal/ModalBody.css'; composes: modalBody from "~Components/Modal/ModalBody.css";
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.mappedDrivesWarning { .mappedDrivesWarning {
composes: alert from '~Components/Alert.css'; composes: alert from "~Components/Alert.css";
margin: 0; margin: 0;
margin-bottom: 20px; margin-bottom: 20px;
@ -18,7 +18,7 @@
} }
.pathInput { .pathInput {
composes: inputWrapper from '~Components/Form/PathInput.css'; composes: inputWrapper from "~Components/Form/PathInput.css";
flex: 0 0 auto; flex: 0 0 auto;
} }

View File

@ -1,5 +1,5 @@
.type { .type {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 32px; width: 32px;
} }

View File

@ -3,13 +3,13 @@
} }
.numberInput { .numberInput {
composes: input from '~Components/Form/TextInput.css'; composes: input from "~Components/Form/TextInput.css";
margin-right: 3px; margin-right: 3px;
} }
.selectInput { .selectInput {
composes: select from '~Components/Form/SelectInput.css'; composes: select from "~Components/Form/SelectInput.css";
margin-left: 3px; margin-left: 3px;
} }

View File

@ -9,7 +9,7 @@
} }
.label { .label {
composes: label from '~Components/Label.css'; composes: label from "~Components/Label.css";
border-style: none; border-style: none;
font-size: 13px; font-size: 13px;

View File

@ -1,13 +1,13 @@
.input { .input {
composes: input from '~Components/Form/Input.css'; composes: input from "~Components/Form/Input.css";
} }
.hasError { .hasError {
composes: hasError from '~Components/Form/Input.css'; composes: hasError from "~Components/Form/Input.css";
} }
.hasWarning { .hasWarning {
composes: hasWarning from '~Components/Form/Input.css'; composes: hasWarning from "~Components/Form/Input.css";
} }
.inputContainer { .inputContainer {

View File

@ -3,19 +3,19 @@
} }
.input { .input {
composes: input from '~Components/Form/Input.css'; composes: input from "~Components/Form/Input.css";
} }
.hasError { .hasError {
composes: hasError from '~Components/Form/Input.css'; composes: hasError from "~Components/Form/Input.css";
} }
.hasWarning { .hasWarning {
composes: hasWarning from '~Components/Form/Input.css'; composes: hasWarning from "~Components/Form/Input.css";
} }
.hasButton { .hasButton {
composes: hasButton from '~Components/Form/Input.css'; composes: hasButton from "~Components/Form/Input.css";
} }
.recaptchaWrapper { .recaptchaWrapper {

View File

@ -94,7 +94,7 @@
} }
.helpText { .helpText {
composes: helpText from '~Components/Form/FormInputHelpText.css'; composes: helpText from "~Components/Form/FormInputHelpText.css";
margin-top: 8px; margin-top: 8px;
margin-left: 5px; margin-left: 5px;

View File

@ -3,6 +3,6 @@
} }
.input { .input {
composes: input from '~./TagInput.css'; composes: input from "~./TagInput.css";
composes: hasButton from '~Components/Form/Input.css'; composes: hasButton from "~Components/Form/Input.css";
} }

View File

@ -1,6 +1,6 @@
.enhancedSelect { .enhancedSelect {
composes: input from '~Components/Form/Input.css'; composes: input from "~Components/Form/Input.css";
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
position: relative; position: relative;
display: flex; display: flex;
@ -17,11 +17,11 @@
} }
.hasError { .hasError {
composes: hasError from '~Components/Form/Input.css'; composes: hasError from "~Components/Form/Input.css";
} }
.hasWarning { .hasWarning {
composes: hasWarning from '~Components/Form/Input.css'; composes: hasWarning from "~Components/Form/Input.css";
} }
.isDisabled { .isDisabled {
@ -45,7 +45,7 @@
} }
.options { .options {
composes: scroller from '~Components/Scroller/Scroller.css'; composes: scroller from "~Components/Scroller/Scroller.css";
border: 1px solid $inputBorderColor; border: 1px solid $inputBorderColor;
border-radius: 4px; border-radius: 4px;
@ -61,7 +61,7 @@
} }
.optionsModalBody { .optionsModalBody {
composes: modalBody from '~Components/Modal/ModalBody.css'; composes: modalBody from "~Components/Modal/ModalBody.css";
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -70,7 +70,7 @@
} }
.optionsModalScroller { .optionsModalScroller {
composes: scroller from '~Components/Scroller/Scroller.css'; composes: scroller from "~Components/Scroller/Scroller.css";
border: 1px solid $inputBorderColor; border: 1px solid $inputBorderColor;
border-radius: 4px; border-radius: 4px;

View File

@ -1,5 +1,5 @@
.button { .button {
composes: button from '~Components/Link/Button.css'; composes: button from "~Components/Link/Button.css";
border-left: none; border-left: none;
border-top-left-radius: 0; border-top-left-radius: 0;

View File

@ -33,7 +33,7 @@
} }
.link { .link {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
margin-left: 5px; margin-left: 5px;
} }

View File

@ -1,5 +1,5 @@
.selectedValue { .selectedValue {
composes: selectedValue from '~./EnhancedSelectInputSelectedValue.css'; composes: selectedValue from "~./EnhancedSelectInputSelectedValue.css";
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -1,5 +1,5 @@
.inputContainer { .inputContainer {
composes: input from '~Components/Form/Input.css'; composes: input from "~Components/Form/Input.css";
position: relative; position: relative;
min-height: 35px; min-height: 35px;
@ -13,9 +13,9 @@
} }
.hasError { .hasError {
composes: hasError from '~Components/Form/Input.css'; composes: hasError from "~Components/Form/Input.css";
} }
.hasWarning { .hasWarning {
composes: hasWarning from '~Components/Form/Input.css'; composes: hasWarning from "~Components/Form/Input.css";
} }

View File

@ -1,5 +1,5 @@
.input { .input {
composes: input from '~Components/Form/TextInput.css'; composes: input from "~Components/Form/TextInput.css";
font-family: $passwordFamily; font-family: $passwordFamily;
} }

View File

@ -1,6 +1,6 @@
.hasFileBrowser { .hasFileBrowser {
composes: input from '~./AutoSuggestInput.css'; composes: input from "~./AutoSuggestInput.css";
composes: hasButton from '~Components/Form/Input.css'; composes: hasButton from "~Components/Form/Input.css";
} }
.inputWrapper { .inputWrapper {
@ -12,7 +12,7 @@
} }
.fileBrowserButton { .fileBrowserButton {
composes: button from '~./FormInputButton.css'; composes: button from "~./FormInputButton.css";
height: 35px; height: 35px;
} }

View File

@ -1,5 +1,5 @@
.selectedValue { .selectedValue {
composes: selectedValue from '~./EnhancedSelectInputSelectedValue.css'; composes: selectedValue from "~./EnhancedSelectInputSelectedValue.css";
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -1,15 +1,15 @@
.select { .select {
composes: input from '~Components/Form/Input.css'; composes: input from "~Components/Form/Input.css";
padding: 0 11px; padding: 0 11px;
} }
.hasError { .hasError {
composes: hasError from '~Components/Form/Input.css'; composes: hasError from "~Components/Form/Input.css";
} }
.hasWarning { .hasWarning {
composes: hasWarning from '~Components/Form/Input.css'; composes: hasWarning from "~Components/Form/Input.css";
} }
.isDisabled { .isDisabled {

View File

@ -1,5 +1,5 @@
.input { .input {
composes: input from '~./AutoSuggestInput.css'; composes: input from "~./AutoSuggestInput.css";
padding: 0; padding: 0;
min-height: 35px; min-height: 35px;

View File

@ -1,5 +1,5 @@
.input { .input {
composes: input from '~Components/Form/Input.css'; composes: input from "~Components/Form/Input.css";
} }
.readOnly { .readOnly {
@ -7,13 +7,13 @@
} }
.hasError { .hasError {
composes: hasError from '~Components/Form/Input.css'; composes: hasError from "~Components/Form/Input.css";
} }
.hasWarning { .hasWarning {
composes: hasWarning from '~Components/Form/Input.css'; composes: hasWarning from "~Components/Form/Input.css";
} }
.hasButton { .hasButton {
composes: hasButton from '~Components/Form/Input.css'; composes: hasButton from "~Components/Form/Input.css";
} }

View File

@ -1,5 +1,5 @@
.button { .button {
composes: link from '~./Link.css'; composes: link from "~./Link.css";
overflow: hidden; overflow: hidden;
border: 1px solid; border: 1px solid;

View File

@ -1,5 +1,5 @@
.button { .button {
composes: button from '~Components/Form/FormInputButton.css'; composes: button from "~Components/Form/FormInputButton.css";
position: relative; position: relative;
} }

View File

@ -1,5 +1,5 @@
.button { .button {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
display: inline-block; display: inline-block;
margin: 0 2px; margin: 0 2px;

View File

@ -1,5 +1,5 @@
.button { .button {
composes: button from '~Components/Link/Button.css'; composes: button from "~Components/Link/Button.css";
position: relative; position: relative;
} }

View File

@ -1,5 +1,5 @@
.iconContainer { .iconContainer {
composes: spinnerContainer from '~Components/Link/SpinnerButton.css'; composes: spinnerContainer from "~Components/Link/SpinnerButton.css";
} }
.icon { .icon {
@ -7,7 +7,7 @@
} }
.label { .label {
composes: label from '~Components/Link/SpinnerButton.css'; composes: label from "~Components/Link/SpinnerButton.css";
} }
.showIcon { .showIcon {

View File

@ -1,5 +1,5 @@
.filterMenu { .filterMenu {
composes: menu from '~./Menu.css'; composes: menu from "~./Menu.css";
} }
@media only screen and (max-width: $breakpointSmall) { @media only screen and (max-width: $breakpointSmall) {

View File

@ -6,7 +6,7 @@
&::after { &::after {
margin-left: 5px; margin-left: 5px;
content: '\25BE'; content: "\25BE";
} }
&:hover { &:hover {

View File

@ -1,5 +1,5 @@
.menuButton { .menuButton {
composes: menuButton from '~./MenuButton.css'; composes: menuButton from "~./MenuButton.css";
&:hover { &:hover {
color: #666; color: #666;

View File

@ -1,5 +1,5 @@
.menuButton { .menuButton {
composes: menuButton from '~./MenuButton.css'; composes: menuButton from "~./MenuButton.css";
padding-top: 4px; padding-top: 4px;
width: $toolbarButtonWidth; width: $toolbarButtonWidth;
@ -8,9 +8,9 @@
} }
.labelContainer { .labelContainer {
composes: labelContainer from '~Components/Page/Toolbar/PageToolbarButton.css'; composes: labelContainer from "~Components/Page/Toolbar/PageToolbarButton.css";
} }
.label { .label {
composes: label from '~Components/Page/Toolbar/PageToolbarButton.css'; composes: label from "~Components/Page/Toolbar/PageToolbarButton.css";
} }

View File

@ -1,5 +1,5 @@
.message { .message {
composes: message from '~Components/Error/ErrorBoundaryError.css'; composes: message from "~Components/Error/ErrorBoundaryError.css";
margin: 0; margin: 0;
margin-bottom: 30px; margin-bottom: 30px;
@ -8,7 +8,7 @@
} }
.details { .details {
composes: details from '~Components/Error/ErrorBoundaryError.css'; composes: details from "~Components/Error/ErrorBoundaryError.css";
margin: 0; margin: 0;
margin-top: 20px; margin-top: 20px;

View File

@ -1,5 +1,5 @@
.toggleButton { .toggleButton {
composes: button from '~Components/Link/IconButton.css'; composes: button from "~Components/Link/IconButton.css";
padding: 0; padding: 0;
font-size: inherit; font-size: inherit;

View File

@ -1,5 +1,5 @@
.page { .page {
composes: page from '~./Page.css'; composes: page from "~./Page.css";
margin-top: 20px; margin-top: 20px;
text-align: center; text-align: center;

View File

@ -38,7 +38,7 @@
} }
.donate { .donate {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
width: 30px; width: 30px;
color: $themeRed; color: $themeRed;

View File

@ -1,3 +1,3 @@
.page { .page {
composes: page from '~./Page.css'; composes: page from "~./Page.css";
} }

View File

@ -1,3 +1,3 @@
.content { .content {
composes: content from '~./PageContent.css'; composes: content from "~./PageContent.css";
} }

View File

@ -1,3 +1,3 @@
.status { .status {
composes: label from '~Components/Label.css'; composes: label from "~Components/Label.css";
} }

View File

@ -1,5 +1,5 @@
.toolbarButton { .toolbarButton {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
padding-top: 4px; padding-top: 4px;
width: $toolbarButtonWidth; width: $toolbarButtonWidth;

View File

@ -23,7 +23,7 @@
} }
.overflowMenuButton { .overflowMenuButton {
composes: menuButton from '~Components/Menu/ToolbarMenuButton.css'; composes: menuButton from "~Components/Menu/ToolbarMenuButton.css";
} }
.overflowMenuItemIcon { .overflowMenuItemIcon {
@ -34,7 +34,7 @@
.overflowMenuButton { .overflowMenuButton {
&::after { &::after {
margin-left: 0; margin-left: 0;
content: '\25BE'; content: "\25BE";
} }
} }
} }

View File

@ -1,5 +1,5 @@
.cell { .cell {
composes: cell from '~./TableRowCell.css'; composes: cell from "~./TableRowCell.css";
width: 180px; width: 180px;
} }

View File

@ -1,4 +1,4 @@
.cell { .cell {
composes: cell from '~./TableRowCell.css'; composes: cell from "~./TableRowCell.css";
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
} }

View File

@ -1,11 +1,11 @@
.selectCell { .selectCell {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 30px; width: 30px;
} }
.input { .input {
composes: input from '~Components/Form/CheckInput.css'; composes: input from "~Components/Form/CheckInput.css";
margin: 0; margin: 0;
} }

View File

@ -1,6 +1,6 @@
.cell { .cell {
@add-mixin truncate; @add-mixin truncate;
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
flex-grow: 0; flex-grow: 0;
flex-shrink: 1; flex-shrink: 1;

View File

@ -1,11 +1,11 @@
.cell { .cell {
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css'; composes: cell from "~Components/Table/Cells/VirtualTableRowCell.css";
flex: 0 0 36px; flex: 0 0 36px;
} }
.input { .input {
composes: input from '~Components/Form/CheckInput.css'; composes: input from "~Components/Form/CheckInput.css";
margin: 0; margin: 0;
} }

View File

@ -21,7 +21,7 @@
} }
.loading { .loading {
composes: loading from '~Components/Loading/LoadingIndicator.css'; composes: loading from "~Components/Loading/LoadingIndicator.css";
margin: 0; margin: 0;
margin-left: 5px; margin-left: 5px;
@ -54,7 +54,7 @@
} }
.pageSelect { .pageSelect {
composes: select from '~Components/Form/SelectInput.css'; composes: select from "~Components/Form/SelectInput.css";
padding: 0 2px; padding: 0 2px;
height: 25px; height: 25px;

View File

@ -1,4 +1,4 @@
.row { .row {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
composes: row from '~./TableRow.css'; composes: row from "~./TableRow.css";
} }

View File

@ -1,11 +1,11 @@
.selectAllHeaderCell { .selectAllHeaderCell {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css'; composes: headerCell from "~Components/Table/VirtualTableHeaderCell.css";
width: 30px; width: 30px;
} }
.input { .input {
composes: input from '~Components/Form/CheckInput.css'; composes: input from "~Components/Form/CheckInput.css";
margin: 0; margin: 0;
} }

View File

@ -1,11 +1,11 @@
.selectAllHeaderCell { .selectAllHeaderCell {
composes: headerCell from '~Components/Table/TableHeaderCell.css'; composes: headerCell from "~Components/Table/TableHeaderCell.css";
flex: 0 0 36px; flex: 0 0 36px;
} }
.input { .input {
composes: input from '~Components/Form/CheckInput.css'; composes: input from "~Components/Form/CheckInput.css";
margin: 0; margin: 0;
} }

View File

@ -30,7 +30,7 @@
.arrow::after { .arrow::after {
border-width: 10px; border-width: 10px;
content: ''; content: "";
} }
.top { .top {
@ -43,7 +43,7 @@
bottom: 1px; bottom: 1px;
margin-left: -10px; margin-left: -10px;
border-bottom-width: 0; border-bottom-width: 0;
content: ' '; content: " ";
&.default { &.default {
border-top-color: $popoverArrowBorderColor; border-top-color: $popoverArrowBorderColor;
@ -73,7 +73,7 @@
bottom: -10px; bottom: -10px;
left: 1px; left: 1px;
border-left-width: 0; border-left-width: 0;
content: ' '; content: " ";
&.default { &.default {
border-right-color: $popoverArrowBorderColor; border-right-color: $popoverArrowBorderColor;
@ -103,7 +103,7 @@
top: 1px; top: 1px;
margin-left: -10px; margin-left: -10px;
border-top-width: 0; border-top-width: 0;
content: ' '; content: " ";
&.default { &.default {
border-bottom-color: $popoverArrowBorderColor; border-bottom-color: $popoverArrowBorderColor;
@ -133,7 +133,7 @@
right: 1px; right: 1px;
bottom: -10px; bottom: -10px;
border-right-width: 0; border-right-width: 0;
content: ' '; content: " ";
&.default { &.default {
border-left-color: $popoverArrowBorderColor; border-left-color: $popoverArrowBorderColor;

View File

@ -1,29 +1,29 @@
@font-face { @font-face {
font-weight: 300; font-weight: 300;
font-style: normal; font-style: normal;
font-family: 'Roboto'; font-family: "Roboto";
src: url('Roboto-Light.woff2?v=1.3.0') format('woff2'), url('Roboto-Light.woff?v=1.3.0') format('woff'), url('Roboto-Light.ttf?v=1.3.0') format('truetype'); src: url("Roboto-Light.woff2?v=1.3.0") format("woff2"), url("Roboto-Light.woff?v=1.3.0") format("woff"), url("Roboto-Light.ttf?v=1.3.0") format("truetype");
} }
@font-face { @font-face {
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
font-family: 'Roboto'; font-family: "Roboto";
src: url('Roboto-Regular.woff2?v=1.3.0') format('woff2'), url('Roboto-Regular.woff?v=1.3.0') format('woff'), url('Roboto-Regular.ttf?v=1.3.0') format('truetype'); src: url("Roboto-Regular.woff2?v=1.3.0") format("woff2"), url("Roboto-Regular.woff?v=1.3.0") format("woff"), url("Roboto-Regular.ttf?v=1.3.0") format("truetype");
} }
@font-face { @font-face {
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
font-family: 'Roboto'; font-family: "Roboto";
src: url('Roboto-Regular.woff2?v=1.3.0') format('woff2'), url('Roboto-Regular.woff?v=1.3.0') format('woff'), url('Roboto-Regular.ttf?v=1.3.0') format('truetype'); src: url("Roboto-Regular.woff2?v=1.3.0") format("woff2"), url("Roboto-Regular.woff?v=1.3.0") format("woff"), url("Roboto-Regular.ttf?v=1.3.0") format("truetype");
} }
@font-face { @font-face {
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
font-family: 'Ubuntu Mono'; font-family: "Ubuntu Mono";
src: url('UbuntuMono-Regular.eot?#iefix&v=1.3.0') format('embedded-opentype'), url('UbuntuMono-Regular.woff?v=1.3.0') format('woff'), url('UbuntuMono-Regular.ttf?v=1.3.0') format('truetype'); src: url("UbuntuMono-Regular.eot?#iefix&v=1.3.0") format("embedded-opentype"), url("UbuntuMono-Regular.woff?v=1.3.0") format("woff"), url("UbuntuMono-Regular.ttf?v=1.3.0") format("truetype");
} }
/* /*
@ -33,6 +33,6 @@
@font-face { @font-face {
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
font-family: 'text-security-disc'; font-family: "text-security-disc";
src: url('text-security-disc.woff?v=1.3.0') format('woff'), url('text-security-disc.ttf?v=1.3.0') format('truetype'); src: url("text-security-disc.woff?v=1.3.0") format("woff"), url("text-security-disc.ttf?v=1.3.0") format("truetype");
} }

View File

@ -38,7 +38,7 @@
} }
.openSeriesButton { .openSeriesButton {
composes: button from '~Components/Link/Button.css'; composes: button from "~Components/Link/Button.css";
margin-right: auto; margin-right: auto;
} }

View File

@ -1,5 +1,5 @@
.episodeSearchCell { .episodeSearchCell {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 70px; width: 70px;
white-space: nowrap; white-space: nowrap;

View File

@ -1,5 +1,5 @@
.link { .link {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
&:hover { &:hover {
color: $linkHoverColor; color: $linkHoverColor;

View File

@ -1,6 +1,6 @@
.details, .details,
.actions { .actions {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 65px; width: 65px;
} }

View File

@ -1,17 +1,17 @@
.descriptionList { .descriptionList {
composes: descriptionList from '~Components/DescriptionList/DescriptionList.css'; composes: descriptionList from "~Components/DescriptionList/DescriptionList.css";
margin-right: 10px; margin-right: 10px;
} }
.title { .title {
composes: title from '~Components/DescriptionList/DescriptionListItemTitle.css'; composes: title from "~Components/DescriptionList/DescriptionListItemTitle.css";
width: 80px; width: 80px;
} }
.description { .description {
composes: title from '~Components/DescriptionList/DescriptionListItemDescription.css'; composes: title from "~Components/DescriptionList/DescriptionListItemDescription.css";
margin-left: 100px; margin-left: 100px;
} }

View File

@ -6,7 +6,7 @@
} }
.button { .button {
composes: button from '~Components/Link/Button.css'; composes: button from "~Components/Link/Button.css";
width: 300px; width: 300px;
} }

View File

@ -1,5 +1,5 @@
.footer { .footer {
composes: modalFooter from '~Components/Modal/ModalFooter.css'; composes: modalFooter from "~Components/Modal/ModalFooter.css";
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;

View File

@ -14,7 +14,7 @@
} }
.button { .button {
composes: button from '~Components/Link/Button.css'; composes: button from "~Components/Link/Button.css";
width: 300px; width: 300px;
} }

View File

@ -1,5 +1,5 @@
.actions { .actions {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 40px; width: 40px;
} }

View File

@ -9,7 +9,7 @@
} }
.footer { .footer {
composes: modalFooter from '~Components/Modal/ModalFooter.css'; composes: modalFooter from "~Components/Modal/ModalFooter.css";
justify-content: space-between; justify-content: space-between;
padding: 15px; padding: 15px;
@ -28,7 +28,7 @@
.importMode, .importMode,
.bulkSelect { .bulkSelect {
composes: select from '~Components/Form/SelectInput.css'; composes: select from "~Components/Form/SelectInput.css";
margin-right: 10px; margin-right: 10px;
width: auto; width: auto;

View File

@ -1,24 +1,24 @@
.relativePath { .relativePath {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
word-break: break-all; word-break: break-all;
} }
.quality, .quality,
.language { .language {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
text-align: center; text-align: center;
} }
.label { .label {
composes: label from '~Components/Label.css'; composes: label from "~Components/Label.css";
cursor: pointer; cursor: pointer;
} }
.reprocessing { .reprocessing {
composes: loading from '~Components/Loading/LoadingIndicator.css'; composes: loading from "~Components/Loading/LoadingIndicator.css";
margin-top: 0; margin-top: 0;
text-align: start; text-align: start;

View File

@ -1,5 +1,5 @@
.modalBody { .modalBody {
composes: modalBody from '~Components/Modal/ModalBody.css'; composes: modalBody from "~Components/Modal/ModalBody.css";
display: flex; display: flex;
flex: 1 1 auto; flex: 1 1 auto;
@ -7,7 +7,7 @@
} }
.filterInput { .filterInput {
composes: input from '~Components/Form/TextInput.css'; composes: input from "~Components/Form/TextInput.css";
flex: 0 0 auto; flex: 0 0 auto;
margin-bottom: 20px; margin-bottom: 20px;

View File

@ -1,12 +1,12 @@
.title { .title {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
word-break: break-all; word-break: break-all;
} }
.quality, .quality,
.language { .language {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
text-align: center; text-align: center;
} }
@ -16,7 +16,7 @@
} }
.preferredWordScore { .preferredWordScore {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 55px; width: 55px;
font-weight: bold; font-weight: bold;
@ -25,14 +25,14 @@
.rejected, .rejected,
.download { .download {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 50px; width: 50px;
} }
.age, .age,
.size { .size {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
white-space: nowrap; white-space: nowrap;
} }

View File

@ -18,7 +18,7 @@
} }
.selectAllInput { .selectAllInput {
composes: input from '~Components/Form/CheckInput.css'; composes: input from "~Components/Form/CheckInput.css";
margin: 0; margin: 0;
} }

View File

@ -1,18 +1,18 @@
.link { .link {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
display: block; display: block;
} }
.freeSpace, .freeSpace,
.unmappedFolders { .unmappedFolders {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 150px; width: 150px;
} }
.actions { .actions {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 45px; width: 45px;
} }

View File

@ -8,7 +8,7 @@
} }
.updateSelectedButton { .updateSelectedButton {
composes: button from '~Components/Link/SpinnerButton.css'; composes: button from "~Components/Link/SpinnerButton.css";
height: 35px; height: 35px;
} }

View File

@ -1,19 +1,19 @@
.status, .status,
.monitored { .monitored {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 50px; width: 50px;
} }
.title { .title {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 1px; width: 1px;
white-space: nowrap; white-space: nowrap;
} }
.seasons { .seasons {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;

View File

@ -1,23 +1,23 @@
.title { .title {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
white-space: nowrap; white-space: nowrap;
} }
.monitored { .monitored {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 42px; width: 42px;
} }
.episodeNumber { .episodeNumber {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 50px; width: 50px;
} }
.size { .size {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 100px; width: 100px;
} }
@ -26,7 +26,7 @@
.audio, .audio,
.video, .video,
.status { .status {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 100px; width: 100px;
} }

View File

@ -1,11 +1,11 @@
.title { .title {
composes: title from '~Components/DescriptionList/DescriptionListItemTitle.css'; composes: title from "~Components/DescriptionList/DescriptionListItemTitle.css";
width: 90px; width: 90px;
} }
.description { .description {
composes: title from '~Components/DescriptionList/DescriptionListItemDescription.css'; composes: title from "~Components/DescriptionList/DescriptionListItemDescription.css";
margin-left: 110px; margin-left: 110px;
} }

View File

@ -69,7 +69,7 @@
} }
.monitorToggleButton { .monitorToggleButton {
composes: toggleButton from '~Components/MonitorToggleButton.css'; composes: toggleButton from "~Components/MonitorToggleButton.css";
width: 40px; width: 40px;
@ -88,7 +88,7 @@
} }
.seriesNavigationButton { .seriesNavigationButton {
composes: button from '~Components/Link/IconButton.css'; composes: button from "~Components/Link/IconButton.css";
margin-left: 5px; margin-left: 5px;
width: 30px; width: 30px;
@ -111,7 +111,7 @@
} }
.detailsLabel { .detailsLabel {
composes: label from '~Components/Label.css'; composes: label from "~Components/Label.css";
margin: 5px 10px 5px 0; margin: 5px 10px 5px 0;
} }

View File

@ -7,7 +7,7 @@
} }
.linkLabel { .linkLabel {
composes: label from '~Components/Label.css'; composes: label from "~Components/Label.css";
cursor: pointer; cursor: pointer;
} }

View File

@ -27,7 +27,7 @@
} }
.expandButton { .expandButton {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
flex-grow: 1; flex-grow: 1;
margin: 0 20px; margin: 0 20px;
@ -46,13 +46,13 @@
} }
.actionsMenu { .actionsMenu {
composes: menu from '~Components/Menu/Menu.css'; composes: menu from "~Components/Menu/Menu.css";
flex: 0 0 45px; flex: 0 0 45px;
} }
.actionsMenuContent { .actionsMenuContent {
composes: menuContent from '~Components/Menu/MenuContent.css'; composes: menuContent from "~Components/Menu/MenuContent.css";
white-space: nowrap; white-space: nowrap;
font-size: $defaultFontSize; font-size: $defaultFontSize;
@ -63,7 +63,7 @@
} }
.actionButton { .actionButton {
composes: button from '~Components/Link/IconButton.css'; composes: button from "~Components/Link/IconButton.css";
width: 30px; width: 30px;
} }

View File

@ -1,5 +1,5 @@
.deleteButton { .deleteButton {
composes: button from '~Components/Link/Button.css'; composes: button from "~Components/Link/Button.css";
margin-right: auto; margin-right: auto;
} }

View File

@ -21,14 +21,14 @@
.organizeSelectedButton, .organizeSelectedButton,
.tagsButton { .tagsButton {
composes: button from '~Components/Link/SpinnerButton.css'; composes: button from "~Components/Link/SpinnerButton.css";
margin-right: 10px; margin-right: 10px;
height: 35px; height: 35px;
} }
.deleteSelectedButton { .deleteSelectedButton {
composes: button from '~Components/Link/SpinnerButton.css'; composes: button from "~Components/Link/SpinnerButton.css";
margin-left: 50px; margin-left: 50px;
height: 35px; height: 35px;

View File

@ -1,5 +1,5 @@
.seasonFolder { .seasonFolder {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 150px; width: 150px;
} }

View File

@ -1,6 +1,6 @@
.details, .details,
.actions { .actions {
composes: cell from '~Components/Table/Cells/TableRowCell.css'; composes: cell from "~Components/Table/Cells/TableRowCell.css";
width: 65px; width: 65px;
} }

View File

@ -22,7 +22,7 @@ $hoverScale: 1.05;
} }
.link { .link {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
display: block; display: block;
color: $defaultColor; color: $defaultColor;

View File

@ -24,7 +24,7 @@ $hoverScale: 1.05;
} }
.link { .link {
composes: link from '~Components/Link/Link.css'; composes: link from "~Components/Link/Link.css";
position: relative; position: relative;
display: block; display: block;
@ -88,7 +88,7 @@ $hoverScale: 1.05;
} }
.action { .action {
composes: button from '~Components/Link/IconButton.css'; composes: button from "~Components/Link/IconButton.css";
&:hover { &:hover {
color: #ccc; color: #ccc;

View File

@ -1,5 +1,5 @@
.progress { .progress {
composes: container from '~Components/ProgressBar.css'; composes: container from "~Components/ProgressBar.css";
border-radius: 0; border-radius: 0;
background-color: #5b5b5b; background-color: #5b5b5b;
@ -8,7 +8,7 @@
} }
.progressBar { .progressBar {
composes: progressBar from '~Components/ProgressBar.css'; composes: progressBar from "~Components/ProgressBar.css";
transition: width 200ms ease; transition: width 200ms ease;
} }

Some files were not shown because too many files have changed in this diff Show More