mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
Merge branch 'feat/calendar' of https://github.com/Stremio/stremio-web into feat/calendar
This commit is contained in:
commit
971c393f42
9 changed files with 38 additions and 5 deletions
|
|
@ -20,14 +20,16 @@
|
|||
background-color: transparent;
|
||||
user-select: none;
|
||||
overflow: hidden;
|
||||
opacity: 0.6;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--overlay-color);
|
||||
transition: background-color 0.1s ease-out;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.active {
|
||||
font-weight: 700;
|
||||
opacity: 1;
|
||||
background-color: var(--quaternary-accent-color);
|
||||
transition: background-color 0.1s ease-in;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,6 +17,12 @@
|
|||
.icon {
|
||||
display: block;
|
||||
color: var(--primary-foreground-color);
|
||||
opacity: 0.7;
|
||||
transition: opacity 0.2s ease-in-out;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
import React, { useState } from 'react';
|
||||
import { MainNavBars, PaginationInput, useProfile, withCoreSuspender } from 'stremio/common';
|
||||
import Table from './Table';
|
||||
import List from './List';
|
||||
import Placeholder from './Placeholder';
|
||||
import useCalendar from './useCalendar';
|
||||
import useSelectableInputs from './useSelectableInputs';
|
||||
import Table from './Table/Table';
|
||||
import List from './List/List';
|
||||
import Placeholder from './Placeholder/Placeholder';
|
||||
import styles from './Calendar.less';
|
||||
|
||||
type Props = {
|
||||
|
|
|
|||
5
src/routes/Calendar/List/Item/index.ts
Normal file
5
src/routes/Calendar/List/Item/index.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
// Copyright (C) 2017-2024 Smart code 203358507
|
||||
|
||||
import Item from './Item';
|
||||
|
||||
export default Item;
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (C) 2017-2024 Smart code 203358507
|
||||
|
||||
import React, { useMemo } from 'react';
|
||||
import Item from './Item/Item';
|
||||
import Item from './Item';
|
||||
import styles from './List.less';
|
||||
|
||||
type Props = {
|
||||
|
|
|
|||
5
src/routes/Calendar/List/index.ts
Normal file
5
src/routes/Calendar/List/index.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
// Copyright (C) 2017-2024 Smart code 203358507
|
||||
|
||||
import List from './List';
|
||||
|
||||
export default List;
|
||||
5
src/routes/Calendar/Placeholder/index.ts
Normal file
5
src/routes/Calendar/Placeholder/index.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
// Copyright (C) 2017-2024 Smart code 203358507
|
||||
|
||||
import Placeholder from './Placeholder';
|
||||
|
||||
export default Placeholder;
|
||||
5
src/routes/Calendar/Table/Cell/index.ts
Normal file
5
src/routes/Calendar/Table/Cell/index.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
// Copyright (C) 2017-2024 Smart code 203358507
|
||||
|
||||
import Cell from './Cell';
|
||||
|
||||
export default Cell;
|
||||
5
src/routes/Calendar/Table/index.ts
Normal file
5
src/routes/Calendar/Table/index.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
// Copyright (C) 2017-2024 Smart code 203358507
|
||||
|
||||
import Table from './Table';
|
||||
|
||||
export default Table;
|
||||
Loading…
Reference in a new issue