@verdaccio/ui-theme 6.0.0-6-next.12 → 6.0.0-6-next.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +1 -1
- package/.eslintrc +0 -15
- package/CHANGELOG.md +6 -0
- package/jest/setup-env.ts +4 -1
- package/jest/unit/components/__mocks__/token.ts +0 -1
- package/jest/unit/components/store/login.ts +1 -0
- package/package.json +34 -37
- package/src/App/App.test.tsx +4 -6
- package/src/App/App.tsx +3 -5
- package/src/App/AppRoute.tsx +1 -1
- package/src/App/Footer/Footer.test.tsx +0 -1
- package/src/App/Footer/Footer.tsx +3 -3
- package/src/App/Footer/__snapshots__/Footer.test.tsx.snap +25 -9
- package/src/App/Footer/styles.ts +2 -3
- package/src/App/Header/Header.test.tsx +3 -5
- package/src/App/Header/Header.tsx +3 -5
- package/src/App/Header/HeaderGreetings.tsx +0 -1
- package/src/App/Header/HeaderLeft.tsx +0 -1
- package/src/App/Header/HeaderMenu.tsx +3 -3
- package/src/App/Header/HeaderRight.tsx +1 -2
- package/src/App/Header/HeaderToolTip.tsx +0 -1
- package/src/App/Header/HeaderToolTipIcon.tsx +10 -10
- package/src/App/Header/LanguageSwitch.tsx +4 -5
- package/src/App/Header/LoginDialog/LoginDialog.test.tsx +4 -7
- package/src/App/Header/LoginDialog/LoginDialog.tsx +2 -4
- package/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx +1 -2
- package/src/App/Header/LoginDialog/LoginDialogForm.tsx +0 -1
- package/src/App/Header/LoginDialog/LoginDialogFormError.tsx +1 -2
- package/src/App/Header/LoginDialog/LoginDialogHeader.tsx +4 -4
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +1 -2
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx +9 -10
- package/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +1 -2
- package/src/App/Header/RegistryInfoDialog/styles.ts +0 -1
- package/src/App/Header/Search/Search.test.tsx +32 -41
- package/src/App/Header/Search/Search.tsx +15 -58
- package/src/App/Header/Search/__snapshots__/Search.test.tsx.snap +392 -28
- package/src/App/Header/styles.ts +2 -3
- package/src/App/utils/loadable.tsx +2 -1
- package/src/components/ActionBar/ActionBar.test.tsx +5 -13
- package/src/components/ActionBar/ActionBar.tsx +0 -2
- package/src/components/ActionBar/ActionBarAction.tsx +6 -7
- package/src/components/ActionBar/__snapshots__/ActionBar.test.tsx.snap +198 -53
- package/src/components/AppBar.tsx +1 -1
- package/src/components/Author/Author.test.tsx +1 -3
- package/src/components/Author/Author.tsx +2 -4
- package/src/components/Author/__snapshots__/Author.test.tsx.snap +804 -48
- package/src/components/Author/styles.ts +0 -1
- package/src/components/AutoComplete/AutoComplete.tsx +85 -163
- package/src/components/AutoComplete/AutoCompleteV2.tsx +7 -9
- package/src/components/AutoComplete/styles.tsx +0 -15
- package/src/components/Avatar.tsx +1 -1
- package/src/components/Box.tsx +1 -1
- package/src/components/Button.tsx +1 -1
- package/src/components/Card.tsx +1 -1
- package/src/components/CardActions.tsx +1 -1
- package/src/components/CardContent.tsx +1 -1
- package/src/components/Chip.tsx +1 -1
- package/src/components/CircularProgress.tsx +2 -2
- package/src/components/CopyToClipBoard.tsx +2 -3
- package/src/components/Dialog.tsx +1 -1
- package/src/components/DialogActions.tsx +2 -2
- package/src/components/DialogContent.tsx +2 -2
- package/src/components/DialogTitle.tsx +1 -1
- package/src/components/Divider.tsx +1 -1
- package/src/components/FloatingActionButton.tsx +1 -1
- package/src/components/FormControl.tsx +1 -1
- package/src/components/FormHelperText.tsx +2 -2
- package/src/components/Grid.tsx +1 -1
- package/src/components/Heading.tsx +1 -1
- package/src/components/IconButton.tsx +1 -1
- package/src/components/Input.tsx +1 -1
- package/src/components/InputAdornment/InputAdornment.tsx +2 -2
- package/src/components/InputLabel.tsx +1 -1
- package/src/components/Label/Label.test.tsx +0 -1
- package/src/components/Label/Label.tsx +1 -2
- package/src/components/List.tsx +1 -1
- package/src/components/ListItem.tsx +1 -1
- package/src/components/ListItemText.tsx +1 -4
- package/src/components/Loading/Loading.test.tsx +0 -1
- package/src/components/Loading/Loading.tsx +1 -2
- package/src/components/Loading/Spinner/Spinner.test.tsx +1 -2
- package/src/components/Loading/Spinner/Spinner.tsx +1 -2
- package/src/components/Loading/Spinner/__snapshots__/Spinner.test.tsx.snap +114 -16
- package/src/components/Loading/__snapshots__/Loading.test.tsx.snap +63 -11
- package/src/components/Loading/styles.ts +1 -2
- package/src/components/Logo/Logo.test.tsx +0 -1
- package/src/components/Logo/Logo.tsx +1 -2
- package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +2 -0
- package/src/components/Menu.tsx +1 -1
- package/src/components/MenuItem.tsx +1 -1
- package/src/components/NotFound/NotFound.tsx +1 -3
- package/src/components/NotFound/Notfound.test.tsx +1 -2
- package/src/components/NotFound/__snapshots__/Notfound.test.tsx.snap +138 -11
- package/src/components/NotFound/styles.ts +0 -1
- package/src/components/Paper.tsx +1 -1
- package/src/components/SnackbarContent.tsx +1 -1
- package/src/components/SvgIcon.tsx +1 -1
- package/src/components/Tab.tsx +1 -1
- package/src/components/Tabs.tsx +1 -1
- package/src/components/Text/Text.tsx +1 -1
- package/src/components/Text/TextConfig.ts +1 -1
- package/src/components/TextField/TextField.test.tsx +0 -1
- package/src/components/TextField/TextField.tsx +2 -2
- package/src/components/TextField/__snapshots__/TextField.test.tsx.snap +216 -3
- package/src/components/Toolbar.tsx +1 -1
- package/src/components/Tooltip.tsx +1 -1
- package/src/design-tokens/ResetStyles.tsx +1 -1
- package/src/design-tokens/StyleBaseline.tsx +2 -2
- package/src/design-tokens/ThemeProvider.tsx +15 -12
- package/src/design-tokens/theme.ts +28 -26
- package/src/design-tokens/useTheme.ts +1 -1
- package/src/{design-tokens → hooks}/useLocalStorage.ts +0 -0
- package/src/{design-tokens → hooks}/useOnClickOutside.ts +0 -0
- package/src/i18n/__mocks__/loadTranslationFile.ts +5 -0
- package/src/i18n/config.ts +1 -15
- package/src/i18n/download_translations/es-ES/ui.json +17 -17
- package/src/i18n/download_translations/it-IT/ui.json +77 -77
- package/src/i18n/download_translations/tr-TR/ui.json +6 -6
- package/src/i18n/download_translations/vi-VN/ui.json +2 -2
- package/src/i18n/loadTranslationFile.ts +14 -0
- package/src/index.tsx +2 -1
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.test.tsx +0 -2
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx +1 -3
- package/src/pages/Version/DetailContainer/Dependencies/styles.ts +0 -1
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.test.tsx +1 -3
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx +2 -3
- package/src/pages/Version/DetailContainer/DetailContainer.test.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainer.tsx +1 -3
- package/src/pages/Version/DetailContainer/DetailContainerContent.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainerTabs.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/NoItems.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/Noitems.test.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/__snapshots__/Noitems.test.tsx.snap +10 -1
- package/src/pages/Version/DetailContainer/Readme/Readme.spec.tsx +1 -2
- package/src/pages/Version/DetailContainer/Readme/Readme.tsx +1 -2
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.test.tsx +1 -3
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx +1 -3
- package/src/pages/Version/DetailContainer/UpLinks/__snapshots__/UpLinks.test.tsx.snap +184 -26
- package/src/pages/Version/DetailContainer/UpLinks/styles.ts +2 -3
- package/src/pages/Version/DetailContainer/Versions/Versions.test.tsx +2 -4
- package/src/pages/Version/DetailContainer/Versions/Versions.tsx +1 -2
- package/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx +2 -4
- package/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx +1 -3
- package/src/pages/Version/DetailContainer/Versions/styles.ts +2 -3
- package/src/pages/Version/DetailContainer/__snapshots__/DetailContainer.test.tsx.snap +168 -34
- package/src/pages/Version/DetailSidebar/DetailSidebar.tsx +0 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.test.tsx +0 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx +1 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Developers/Developers.test.tsx +3 -5
- package/src/pages/Version/DetailSidebar/Developers/Developers.tsx +3 -5
- package/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Developers/__snapshots__/Developers.test.tsx.snap +328 -40
- package/src/pages/Version/DetailSidebar/Developers/styles.ts +0 -1
- package/src/pages/Version/DetailSidebar/Dist/Dist.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Dist/Dist.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Dist/__snapshots__/Dist.test.tsx.snap +1436 -74
- package/src/pages/Version/DetailSidebar/Dist/styles.ts +2 -1
- package/src/pages/Version/DetailSidebar/Engines/Engines.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Engines/Engines.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Engines/styles.ts +0 -1
- package/src/pages/Version/DetailSidebar/Install/Install.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Install/Install.tsx +0 -2
- package/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Repository/Repository.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Repository/Repository.tsx +1 -3
- package/src/pages/Version/Version.test.tsx +1 -3
- package/src/pages/Version/Version.tsx +1 -3
- package/src/pages/Version/VersionContextProvider.tsx +0 -1
- package/src/pages/Version/VersionLayout.tsx +1 -1
- package/src/pages/Version/context.ts +1 -1
- package/src/pages/home/Home.tsx +0 -2
- package/src/pages/home/PackageList/Help/Help.test.tsx +0 -1
- package/src/pages/home/PackageList/Help/Help.tsx +0 -1
- package/src/pages/home/PackageList/Help/__snapshots__/Help.test.tsx.snap +295 -56
- package/src/pages/home/PackageList/Help/styles.ts +0 -1
- package/src/pages/home/PackageList/Package/Package.test.tsx +1 -3
- package/src/pages/home/PackageList/Package/Package.tsx +14 -19
- package/src/pages/home/PackageList/Package/Tag/Tag.test.tsx +0 -1
- package/src/pages/home/PackageList/Package/styles.ts +5 -6
- package/src/pages/home/PackageList/PackageList.tsx +0 -1
- package/src/pages/home/PackageList/Packagelist.test.tsx +1 -3
- package/src/providers/API/api.ts +1 -1
- package/src/providers/config/AppConfigurationProvider.tsx +3 -3
- package/src/store/models/configuration.ts +2 -3
- package/src/store/models/download.ts +1 -2
- package/src/store/models/index.ts +1 -0
- package/src/store/models/login.ts +4 -2
- package/src/store/models/manifest.ts +2 -2
- package/src/store/models/packages.ts +2 -2
- package/src/store/models/search.ts +5 -5
- package/src/store/store.ts +2 -2
- package/src/utils/login.test.ts +2 -3
- package/src/utils/package.test.ts +2 -3
- package/src/utils/package.ts +2 -1
- package/src/utils/sec-utils.ts +1 -1
- package/src/utils/test-react-testing-library.tsx +11 -7
- package/src/utils/url.test.ts +1 -1
- package/src/utils/url.ts +1 -0
- package/static/Dependencies.15768a14646212b71166.js +2 -0
- package/static/Dependencies.15768a14646212b71166.js.LICENSE.txt +78 -0
- package/static/Dist.15768a14646212b71166.js +2 -0
- package/static/Dist.15768a14646212b71166.js.LICENSE.txt +60 -0
- package/static/Engines.15768a14646212b71166.js +2 -0
- package/static/Engines.15768a14646212b71166.js.LICENSE.txt +66 -0
- package/static/Home.15768a14646212b71166.js +2 -0
- package/static/Home.15768a14646212b71166.js.LICENSE.txt +222 -0
- package/static/Install.15768a14646212b71166.js +2 -0
- package/static/Install.15768a14646212b71166.js.LICENSE.txt +66 -0
- package/static/NotFound.15768a14646212b71166.js +2 -0
- package/static/NotFound.15768a14646212b71166.js.LICENSE.txt +40 -0
- package/static/Provider.15768a14646212b71166.js +2 -0
- package/static/Provider.15768a14646212b71166.js.LICENSE.txt +32 -0
- package/static/Repository.15768a14646212b71166.js +2 -0
- package/static/Repository.15768a14646212b71166.js.LICENSE.txt +50 -0
- package/static/UpLinks.15768a14646212b71166.js +2 -0
- package/static/UpLinks.15768a14646212b71166.js.LICENSE.txt +56 -0
- package/static/Version.15768a14646212b71166.js +2 -0
- package/static/Version.15768a14646212b71166.js.LICENSE.txt +380 -0
- package/static/Versions.15768a14646212b71166.js +2 -0
- package/static/Versions.15768a14646212b71166.js.LICENSE.txt +64 -0
- package/static/index.html +1 -1
- package/static/main.15768a14646212b71166.js +2 -0
- package/static/{main.87dd0a7ff6e306a24166.js.LICENSE.txt → main.15768a14646212b71166.js.LICENSE.txt} +63 -663
- package/static/manifest.json +17 -3
- package/static/runtime.15768a14646212b71166.js +2 -0
- package/static/{runtime.87dd0a7ff6e306a24166.js.LICENSE.txt → runtime.15768a14646212b71166.js.LICENSE.txt} +2 -2
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js.LICENSE.txt +148 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js.LICENSE.txt +218 -0
- package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js.LICENSE.txt +316 -0
- package/static/vendors.15768a14646212b71166.js +103 -0
- package/static/{vendors.87dd0a7ff6e306a24166.js.LICENSE.txt → vendors.15768a14646212b71166.js.LICENSE.txt} +1261 -1035
- package/tools/dev.server.js +0 -1
- package/tools/webpack.dev.config.babel.js +1 -3
- package/tsconfig.json +0 -2
- package/types/index.ts +1 -0
- package/src/App/Header/Search/SearchAdornment.tsx +0 -18
- package/src/design-tokens/emotion.ts +0 -5
- package/src/lib/constants.ts +0 -9
- package/static/main.87dd0a7ff6e306a24166.js +0 -2
- package/static/runtime.87dd0a7ff6e306a24166.js +0 -2
- package/static/vendors.87dd0a7ff6e306a24166.js +0 -2
|
@@ -4,41 +4,268 @@ exports[`<Dist /> component should render the component in default state 1`] = `
|
|
|
4
4
|
Object {
|
|
5
5
|
"asFragment": [Function],
|
|
6
6
|
"baseElement": .emotion-0 {
|
|
7
|
+
list-style: none;
|
|
8
|
+
margin: 0;
|
|
9
|
+
padding: 0;
|
|
10
|
+
position: relative;
|
|
11
|
+
padding-top: 0;
|
|
12
|
+
padding-bottom: 8px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.emotion-2 {
|
|
16
|
+
margin: 0;
|
|
17
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
18
|
+
font-weight: 400;
|
|
19
|
+
font-size: 1rem;
|
|
20
|
+
line-height: 1.75;
|
|
7
21
|
font-weight: 700;
|
|
8
22
|
text-transform: capitalize;
|
|
9
23
|
}
|
|
10
24
|
|
|
11
|
-
.emotion-
|
|
25
|
+
.emotion-4 {
|
|
26
|
+
display: -webkit-inline-box;
|
|
27
|
+
display: -webkit-inline-flex;
|
|
28
|
+
display: -ms-inline-flexbox;
|
|
29
|
+
display: inline-flex;
|
|
30
|
+
-webkit-align-items: center;
|
|
31
|
+
-webkit-box-align: center;
|
|
32
|
+
-ms-flex-align: center;
|
|
33
|
+
align-items: center;
|
|
34
|
+
-webkit-box-pack: center;
|
|
35
|
+
-ms-flex-pack: center;
|
|
36
|
+
-webkit-justify-content: center;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
position: relative;
|
|
39
|
+
box-sizing: border-box;
|
|
40
|
+
-webkit-tap-highlight-color: transparent;
|
|
41
|
+
background-color: transparent;
|
|
42
|
+
outline: 0;
|
|
43
|
+
border: 0;
|
|
44
|
+
margin: 0;
|
|
45
|
+
border-radius: 0;
|
|
46
|
+
padding: 0;
|
|
47
|
+
cursor: pointer;
|
|
48
|
+
-webkit-user-select: none;
|
|
49
|
+
-moz-user-select: none;
|
|
50
|
+
-ms-user-select: none;
|
|
51
|
+
user-select: none;
|
|
52
|
+
vertical-align: middle;
|
|
53
|
+
-moz-appearance: none;
|
|
54
|
+
-webkit-appearance: none;
|
|
55
|
+
-webkit-text-decoration: none;
|
|
56
|
+
text-decoration: none;
|
|
57
|
+
color: inherit;
|
|
58
|
+
display: -webkit-box;
|
|
59
|
+
display: -webkit-flex;
|
|
60
|
+
display: -ms-flexbox;
|
|
61
|
+
display: flex;
|
|
62
|
+
-webkit-box-pack: start;
|
|
63
|
+
-ms-flex-pack: start;
|
|
64
|
+
-webkit-justify-content: flex-start;
|
|
65
|
+
justify-content: flex-start;
|
|
66
|
+
-webkit-align-items: center;
|
|
67
|
+
-webkit-box-align: center;
|
|
68
|
+
-ms-flex-align: center;
|
|
69
|
+
align-items: center;
|
|
70
|
+
position: relative;
|
|
71
|
+
-webkit-text-decoration: none;
|
|
72
|
+
text-decoration: none;
|
|
73
|
+
width: 100%;
|
|
74
|
+
box-sizing: border-box;
|
|
75
|
+
text-align: left;
|
|
76
|
+
padding-top: 8px;
|
|
77
|
+
padding-bottom: 8px;
|
|
78
|
+
padding-left: 16px;
|
|
79
|
+
padding-right: 16px;
|
|
80
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
81
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
12
82
|
padding-left: 0;
|
|
13
83
|
padding-right: 0;
|
|
84
|
+
-webkit-box-flex-wrap: wrap;
|
|
85
|
+
-webkit-flex-wrap: wrap;
|
|
86
|
+
-ms-flex-wrap: wrap;
|
|
87
|
+
flex-wrap: wrap;
|
|
14
88
|
}
|
|
15
89
|
|
|
16
|
-
.emotion-4 {
|
|
90
|
+
.emotion-4::-moz-focus-inner {
|
|
91
|
+
border-style: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.emotion-4.Mui-disabled {
|
|
95
|
+
pointer-events: none;
|
|
96
|
+
cursor: default;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@media print {
|
|
100
|
+
.emotion-4 {
|
|
101
|
+
-webkit-print-color-adjust: exact;
|
|
102
|
+
color-adjust: exact;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.emotion-4.Mui-focusVisible {
|
|
107
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.emotion-4.Mui-selected {
|
|
111
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
115
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.emotion-4.Mui-disabled {
|
|
119
|
+
opacity: 0.38;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.emotion-4:hover {
|
|
123
|
+
-webkit-text-decoration: none;
|
|
124
|
+
text-decoration: none;
|
|
125
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@media (hover: none) {
|
|
129
|
+
.emotion-4:hover {
|
|
130
|
+
background-color: transparent;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.emotion-4.Mui-selected:hover {
|
|
135
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
@media (hover: none) {
|
|
139
|
+
.emotion-4.Mui-selected:hover {
|
|
140
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.emotion-6 {
|
|
145
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
146
|
+
font-size: 0.8125rem;
|
|
147
|
+
display: -webkit-inline-box;
|
|
148
|
+
display: -webkit-inline-flex;
|
|
149
|
+
display: -ms-inline-flexbox;
|
|
150
|
+
display: inline-flex;
|
|
151
|
+
-webkit-align-items: center;
|
|
152
|
+
-webkit-box-align: center;
|
|
153
|
+
-ms-flex-align: center;
|
|
154
|
+
align-items: center;
|
|
155
|
+
-webkit-box-pack: center;
|
|
156
|
+
-ms-flex-pack: center;
|
|
157
|
+
-webkit-justify-content: center;
|
|
158
|
+
justify-content: center;
|
|
159
|
+
height: 32px;
|
|
160
|
+
color: rgba(0, 0, 0, 0.87);
|
|
161
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
162
|
+
border-radius: 16px;
|
|
163
|
+
white-space: nowrap;
|
|
164
|
+
-webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
165
|
+
transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
166
|
+
cursor: default;
|
|
167
|
+
outline: 0;
|
|
168
|
+
-webkit-text-decoration: none;
|
|
169
|
+
text-decoration: none;
|
|
170
|
+
border: 0;
|
|
171
|
+
padding: 0;
|
|
172
|
+
vertical-align: middle;
|
|
173
|
+
box-sizing: border-box;
|
|
17
174
|
margin-right: 5px;
|
|
18
175
|
text-transform: capitalize;
|
|
176
|
+
margin-top: 5px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.emotion-6.Mui-disabled {
|
|
180
|
+
opacity: 0.38;
|
|
181
|
+
pointer-events: none;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.emotion-6 .MuiChip-avatar {
|
|
185
|
+
margin-left: 5px;
|
|
186
|
+
margin-right: -6px;
|
|
187
|
+
width: 24px;
|
|
188
|
+
height: 24px;
|
|
189
|
+
color: #616161;
|
|
190
|
+
font-size: 0.75rem;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.emotion-6 .MuiChip-avatarColorPrimary {
|
|
194
|
+
color: #fff;
|
|
195
|
+
background-color: rgb(52, 65, 44);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.emotion-6 .MuiChip-avatarColorSecondary {
|
|
199
|
+
color: #fff;
|
|
200
|
+
background-color: rgb(22, 24, 29);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.emotion-6 .MuiChip-avatarSmall {
|
|
204
|
+
margin-left: 4px;
|
|
205
|
+
margin-right: -4px;
|
|
206
|
+
width: 18px;
|
|
207
|
+
height: 18px;
|
|
208
|
+
font-size: 0.625rem;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.emotion-6 .MuiChip-icon {
|
|
212
|
+
color: #616161;
|
|
213
|
+
margin-left: 5px;
|
|
214
|
+
margin-right: -6px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.emotion-6 .MuiChip-deleteIcon {
|
|
218
|
+
-webkit-tap-highlight-color: transparent;
|
|
219
|
+
color: rgba(0, 0, 0, 0.26);
|
|
220
|
+
font-size: 22px;
|
|
221
|
+
cursor: pointer;
|
|
222
|
+
margin: 0 5px 0 -6px;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.emotion-6 .MuiChip-deleteIcon:hover {
|
|
226
|
+
color: rgba(0, 0, 0, 0.4);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.emotion-7 {
|
|
230
|
+
overflow: hidden;
|
|
231
|
+
text-overflow: ellipsis;
|
|
232
|
+
padding-left: 12px;
|
|
233
|
+
padding-right: 12px;
|
|
234
|
+
white-space: nowrap;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.emotion-11 {
|
|
238
|
+
overflow: hidden;
|
|
239
|
+
pointer-events: none;
|
|
240
|
+
position: absolute;
|
|
241
|
+
z-index: 0;
|
|
242
|
+
top: 0;
|
|
243
|
+
right: 0;
|
|
244
|
+
bottom: 0;
|
|
245
|
+
left: 0;
|
|
246
|
+
border-radius: inherit;
|
|
19
247
|
}
|
|
20
248
|
|
|
21
249
|
<body>
|
|
22
250
|
<div>
|
|
23
251
|
<ul
|
|
24
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
252
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
25
253
|
>
|
|
26
254
|
<span
|
|
27
|
-
class="MuiTypography-root
|
|
255
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
28
256
|
>
|
|
29
257
|
Latest Distribution
|
|
30
258
|
</span>
|
|
31
259
|
<div
|
|
32
|
-
|
|
33
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
260
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
34
261
|
role="button"
|
|
35
262
|
tabindex="0"
|
|
36
263
|
>
|
|
37
264
|
<div
|
|
38
|
-
class="MuiChip-root emotion-
|
|
265
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
39
266
|
>
|
|
40
267
|
<span
|
|
41
|
-
class="MuiChip-label"
|
|
268
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
42
269
|
>
|
|
43
270
|
<b>
|
|
44
271
|
file count
|
|
@@ -48,10 +275,10 @@ Object {
|
|
|
48
275
|
</span>
|
|
49
276
|
</div>
|
|
50
277
|
<div
|
|
51
|
-
class="MuiChip-root emotion-
|
|
278
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
52
279
|
>
|
|
53
280
|
<span
|
|
54
|
-
class="MuiChip-label"
|
|
281
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
55
282
|
>
|
|
56
283
|
<b>
|
|
57
284
|
Size
|
|
@@ -61,47 +288,274 @@ Object {
|
|
|
61
288
|
</span>
|
|
62
289
|
</div>
|
|
63
290
|
<span
|
|
64
|
-
class="MuiTouchRipple-root"
|
|
291
|
+
class="MuiTouchRipple-root emotion-11"
|
|
65
292
|
/>
|
|
66
293
|
</div>
|
|
67
294
|
</ul>
|
|
68
295
|
</div>
|
|
69
296
|
</body>,
|
|
70
297
|
"container": .emotion-0 {
|
|
298
|
+
list-style: none;
|
|
299
|
+
margin: 0;
|
|
300
|
+
padding: 0;
|
|
301
|
+
position: relative;
|
|
302
|
+
padding-top: 0;
|
|
303
|
+
padding-bottom: 8px;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.emotion-2 {
|
|
307
|
+
margin: 0;
|
|
308
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
309
|
+
font-weight: 400;
|
|
310
|
+
font-size: 1rem;
|
|
311
|
+
line-height: 1.75;
|
|
71
312
|
font-weight: 700;
|
|
72
313
|
text-transform: capitalize;
|
|
73
314
|
}
|
|
74
315
|
|
|
75
|
-
.emotion-
|
|
316
|
+
.emotion-4 {
|
|
317
|
+
display: -webkit-inline-box;
|
|
318
|
+
display: -webkit-inline-flex;
|
|
319
|
+
display: -ms-inline-flexbox;
|
|
320
|
+
display: inline-flex;
|
|
321
|
+
-webkit-align-items: center;
|
|
322
|
+
-webkit-box-align: center;
|
|
323
|
+
-ms-flex-align: center;
|
|
324
|
+
align-items: center;
|
|
325
|
+
-webkit-box-pack: center;
|
|
326
|
+
-ms-flex-pack: center;
|
|
327
|
+
-webkit-justify-content: center;
|
|
328
|
+
justify-content: center;
|
|
329
|
+
position: relative;
|
|
330
|
+
box-sizing: border-box;
|
|
331
|
+
-webkit-tap-highlight-color: transparent;
|
|
332
|
+
background-color: transparent;
|
|
333
|
+
outline: 0;
|
|
334
|
+
border: 0;
|
|
335
|
+
margin: 0;
|
|
336
|
+
border-radius: 0;
|
|
337
|
+
padding: 0;
|
|
338
|
+
cursor: pointer;
|
|
339
|
+
-webkit-user-select: none;
|
|
340
|
+
-moz-user-select: none;
|
|
341
|
+
-ms-user-select: none;
|
|
342
|
+
user-select: none;
|
|
343
|
+
vertical-align: middle;
|
|
344
|
+
-moz-appearance: none;
|
|
345
|
+
-webkit-appearance: none;
|
|
346
|
+
-webkit-text-decoration: none;
|
|
347
|
+
text-decoration: none;
|
|
348
|
+
color: inherit;
|
|
349
|
+
display: -webkit-box;
|
|
350
|
+
display: -webkit-flex;
|
|
351
|
+
display: -ms-flexbox;
|
|
352
|
+
display: flex;
|
|
353
|
+
-webkit-box-pack: start;
|
|
354
|
+
-ms-flex-pack: start;
|
|
355
|
+
-webkit-justify-content: flex-start;
|
|
356
|
+
justify-content: flex-start;
|
|
357
|
+
-webkit-align-items: center;
|
|
358
|
+
-webkit-box-align: center;
|
|
359
|
+
-ms-flex-align: center;
|
|
360
|
+
align-items: center;
|
|
361
|
+
position: relative;
|
|
362
|
+
-webkit-text-decoration: none;
|
|
363
|
+
text-decoration: none;
|
|
364
|
+
width: 100%;
|
|
365
|
+
box-sizing: border-box;
|
|
366
|
+
text-align: left;
|
|
367
|
+
padding-top: 8px;
|
|
368
|
+
padding-bottom: 8px;
|
|
369
|
+
padding-left: 16px;
|
|
370
|
+
padding-right: 16px;
|
|
371
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
372
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
76
373
|
padding-left: 0;
|
|
77
374
|
padding-right: 0;
|
|
375
|
+
-webkit-box-flex-wrap: wrap;
|
|
376
|
+
-webkit-flex-wrap: wrap;
|
|
377
|
+
-ms-flex-wrap: wrap;
|
|
378
|
+
flex-wrap: wrap;
|
|
78
379
|
}
|
|
79
380
|
|
|
80
|
-
.emotion-4 {
|
|
381
|
+
.emotion-4::-moz-focus-inner {
|
|
382
|
+
border-style: none;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.emotion-4.Mui-disabled {
|
|
386
|
+
pointer-events: none;
|
|
387
|
+
cursor: default;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
@media print {
|
|
391
|
+
.emotion-4 {
|
|
392
|
+
-webkit-print-color-adjust: exact;
|
|
393
|
+
color-adjust: exact;
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.emotion-4.Mui-focusVisible {
|
|
398
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.emotion-4.Mui-selected {
|
|
402
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
406
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.emotion-4.Mui-disabled {
|
|
410
|
+
opacity: 0.38;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.emotion-4:hover {
|
|
414
|
+
-webkit-text-decoration: none;
|
|
415
|
+
text-decoration: none;
|
|
416
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
@media (hover: none) {
|
|
420
|
+
.emotion-4:hover {
|
|
421
|
+
background-color: transparent;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.emotion-4.Mui-selected:hover {
|
|
426
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
@media (hover: none) {
|
|
430
|
+
.emotion-4.Mui-selected:hover {
|
|
431
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.emotion-6 {
|
|
436
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
437
|
+
font-size: 0.8125rem;
|
|
438
|
+
display: -webkit-inline-box;
|
|
439
|
+
display: -webkit-inline-flex;
|
|
440
|
+
display: -ms-inline-flexbox;
|
|
441
|
+
display: inline-flex;
|
|
442
|
+
-webkit-align-items: center;
|
|
443
|
+
-webkit-box-align: center;
|
|
444
|
+
-ms-flex-align: center;
|
|
445
|
+
align-items: center;
|
|
446
|
+
-webkit-box-pack: center;
|
|
447
|
+
-ms-flex-pack: center;
|
|
448
|
+
-webkit-justify-content: center;
|
|
449
|
+
justify-content: center;
|
|
450
|
+
height: 32px;
|
|
451
|
+
color: rgba(0, 0, 0, 0.87);
|
|
452
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
453
|
+
border-radius: 16px;
|
|
454
|
+
white-space: nowrap;
|
|
455
|
+
-webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
456
|
+
transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
457
|
+
cursor: default;
|
|
458
|
+
outline: 0;
|
|
459
|
+
-webkit-text-decoration: none;
|
|
460
|
+
text-decoration: none;
|
|
461
|
+
border: 0;
|
|
462
|
+
padding: 0;
|
|
463
|
+
vertical-align: middle;
|
|
464
|
+
box-sizing: border-box;
|
|
81
465
|
margin-right: 5px;
|
|
82
466
|
text-transform: capitalize;
|
|
467
|
+
margin-top: 5px;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.emotion-6.Mui-disabled {
|
|
471
|
+
opacity: 0.38;
|
|
472
|
+
pointer-events: none;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.emotion-6 .MuiChip-avatar {
|
|
476
|
+
margin-left: 5px;
|
|
477
|
+
margin-right: -6px;
|
|
478
|
+
width: 24px;
|
|
479
|
+
height: 24px;
|
|
480
|
+
color: #616161;
|
|
481
|
+
font-size: 0.75rem;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.emotion-6 .MuiChip-avatarColorPrimary {
|
|
485
|
+
color: #fff;
|
|
486
|
+
background-color: rgb(52, 65, 44);
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.emotion-6 .MuiChip-avatarColorSecondary {
|
|
490
|
+
color: #fff;
|
|
491
|
+
background-color: rgb(22, 24, 29);
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.emotion-6 .MuiChip-avatarSmall {
|
|
495
|
+
margin-left: 4px;
|
|
496
|
+
margin-right: -4px;
|
|
497
|
+
width: 18px;
|
|
498
|
+
height: 18px;
|
|
499
|
+
font-size: 0.625rem;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.emotion-6 .MuiChip-icon {
|
|
503
|
+
color: #616161;
|
|
504
|
+
margin-left: 5px;
|
|
505
|
+
margin-right: -6px;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.emotion-6 .MuiChip-deleteIcon {
|
|
509
|
+
-webkit-tap-highlight-color: transparent;
|
|
510
|
+
color: rgba(0, 0, 0, 0.26);
|
|
511
|
+
font-size: 22px;
|
|
512
|
+
cursor: pointer;
|
|
513
|
+
margin: 0 5px 0 -6px;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.emotion-6 .MuiChip-deleteIcon:hover {
|
|
517
|
+
color: rgba(0, 0, 0, 0.4);
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.emotion-7 {
|
|
521
|
+
overflow: hidden;
|
|
522
|
+
text-overflow: ellipsis;
|
|
523
|
+
padding-left: 12px;
|
|
524
|
+
padding-right: 12px;
|
|
525
|
+
white-space: nowrap;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.emotion-11 {
|
|
529
|
+
overflow: hidden;
|
|
530
|
+
pointer-events: none;
|
|
531
|
+
position: absolute;
|
|
532
|
+
z-index: 0;
|
|
533
|
+
top: 0;
|
|
534
|
+
right: 0;
|
|
535
|
+
bottom: 0;
|
|
536
|
+
left: 0;
|
|
537
|
+
border-radius: inherit;
|
|
83
538
|
}
|
|
84
539
|
|
|
85
540
|
<div>
|
|
86
541
|
<ul
|
|
87
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
542
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
88
543
|
>
|
|
89
544
|
<span
|
|
90
|
-
class="MuiTypography-root
|
|
545
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
91
546
|
>
|
|
92
547
|
Latest Distribution
|
|
93
548
|
</span>
|
|
94
549
|
<div
|
|
95
|
-
|
|
96
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
550
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
97
551
|
role="button"
|
|
98
552
|
tabindex="0"
|
|
99
553
|
>
|
|
100
554
|
<div
|
|
101
|
-
class="MuiChip-root emotion-
|
|
555
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
102
556
|
>
|
|
103
557
|
<span
|
|
104
|
-
class="MuiChip-label"
|
|
558
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
105
559
|
>
|
|
106
560
|
<b>
|
|
107
561
|
file count
|
|
@@ -111,10 +565,10 @@ Object {
|
|
|
111
565
|
</span>
|
|
112
566
|
</div>
|
|
113
567
|
<div
|
|
114
|
-
class="MuiChip-root emotion-
|
|
568
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
115
569
|
>
|
|
116
570
|
<span
|
|
117
|
-
class="MuiChip-label"
|
|
571
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
118
572
|
>
|
|
119
573
|
<b>
|
|
120
574
|
Size
|
|
@@ -124,7 +578,7 @@ Object {
|
|
|
124
578
|
</span>
|
|
125
579
|
</div>
|
|
126
580
|
<span
|
|
127
|
-
class="MuiTouchRipple-root"
|
|
581
|
+
class="MuiTouchRipple-root emotion-11"
|
|
128
582
|
/>
|
|
129
583
|
</div>
|
|
130
584
|
</ul>
|
|
@@ -187,41 +641,268 @@ exports[`<Dist /> component should render the component with license as object 1
|
|
|
187
641
|
Object {
|
|
188
642
|
"asFragment": [Function],
|
|
189
643
|
"baseElement": .emotion-0 {
|
|
644
|
+
list-style: none;
|
|
645
|
+
margin: 0;
|
|
646
|
+
padding: 0;
|
|
647
|
+
position: relative;
|
|
648
|
+
padding-top: 0;
|
|
649
|
+
padding-bottom: 8px;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.emotion-2 {
|
|
653
|
+
margin: 0;
|
|
654
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
655
|
+
font-weight: 400;
|
|
656
|
+
font-size: 1rem;
|
|
657
|
+
line-height: 1.75;
|
|
190
658
|
font-weight: 700;
|
|
191
659
|
text-transform: capitalize;
|
|
192
660
|
}
|
|
193
661
|
|
|
194
|
-
.emotion-
|
|
662
|
+
.emotion-4 {
|
|
663
|
+
display: -webkit-inline-box;
|
|
664
|
+
display: -webkit-inline-flex;
|
|
665
|
+
display: -ms-inline-flexbox;
|
|
666
|
+
display: inline-flex;
|
|
667
|
+
-webkit-align-items: center;
|
|
668
|
+
-webkit-box-align: center;
|
|
669
|
+
-ms-flex-align: center;
|
|
670
|
+
align-items: center;
|
|
671
|
+
-webkit-box-pack: center;
|
|
672
|
+
-ms-flex-pack: center;
|
|
673
|
+
-webkit-justify-content: center;
|
|
674
|
+
justify-content: center;
|
|
675
|
+
position: relative;
|
|
676
|
+
box-sizing: border-box;
|
|
677
|
+
-webkit-tap-highlight-color: transparent;
|
|
678
|
+
background-color: transparent;
|
|
679
|
+
outline: 0;
|
|
680
|
+
border: 0;
|
|
681
|
+
margin: 0;
|
|
682
|
+
border-radius: 0;
|
|
683
|
+
padding: 0;
|
|
684
|
+
cursor: pointer;
|
|
685
|
+
-webkit-user-select: none;
|
|
686
|
+
-moz-user-select: none;
|
|
687
|
+
-ms-user-select: none;
|
|
688
|
+
user-select: none;
|
|
689
|
+
vertical-align: middle;
|
|
690
|
+
-moz-appearance: none;
|
|
691
|
+
-webkit-appearance: none;
|
|
692
|
+
-webkit-text-decoration: none;
|
|
693
|
+
text-decoration: none;
|
|
694
|
+
color: inherit;
|
|
695
|
+
display: -webkit-box;
|
|
696
|
+
display: -webkit-flex;
|
|
697
|
+
display: -ms-flexbox;
|
|
698
|
+
display: flex;
|
|
699
|
+
-webkit-box-pack: start;
|
|
700
|
+
-ms-flex-pack: start;
|
|
701
|
+
-webkit-justify-content: flex-start;
|
|
702
|
+
justify-content: flex-start;
|
|
703
|
+
-webkit-align-items: center;
|
|
704
|
+
-webkit-box-align: center;
|
|
705
|
+
-ms-flex-align: center;
|
|
706
|
+
align-items: center;
|
|
707
|
+
position: relative;
|
|
708
|
+
-webkit-text-decoration: none;
|
|
709
|
+
text-decoration: none;
|
|
710
|
+
width: 100%;
|
|
711
|
+
box-sizing: border-box;
|
|
712
|
+
text-align: left;
|
|
713
|
+
padding-top: 8px;
|
|
714
|
+
padding-bottom: 8px;
|
|
715
|
+
padding-left: 16px;
|
|
716
|
+
padding-right: 16px;
|
|
717
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
718
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
195
719
|
padding-left: 0;
|
|
196
720
|
padding-right: 0;
|
|
721
|
+
-webkit-box-flex-wrap: wrap;
|
|
722
|
+
-webkit-flex-wrap: wrap;
|
|
723
|
+
-ms-flex-wrap: wrap;
|
|
724
|
+
flex-wrap: wrap;
|
|
197
725
|
}
|
|
198
726
|
|
|
199
|
-
.emotion-4 {
|
|
727
|
+
.emotion-4::-moz-focus-inner {
|
|
728
|
+
border-style: none;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.emotion-4.Mui-disabled {
|
|
732
|
+
pointer-events: none;
|
|
733
|
+
cursor: default;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
@media print {
|
|
737
|
+
.emotion-4 {
|
|
738
|
+
-webkit-print-color-adjust: exact;
|
|
739
|
+
color-adjust: exact;
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.emotion-4.Mui-focusVisible {
|
|
744
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.emotion-4.Mui-selected {
|
|
748
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
752
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.emotion-4.Mui-disabled {
|
|
756
|
+
opacity: 0.38;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.emotion-4:hover {
|
|
760
|
+
-webkit-text-decoration: none;
|
|
761
|
+
text-decoration: none;
|
|
762
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
@media (hover: none) {
|
|
766
|
+
.emotion-4:hover {
|
|
767
|
+
background-color: transparent;
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.emotion-4.Mui-selected:hover {
|
|
772
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
@media (hover: none) {
|
|
776
|
+
.emotion-4.Mui-selected:hover {
|
|
777
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.emotion-6 {
|
|
782
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
783
|
+
font-size: 0.8125rem;
|
|
784
|
+
display: -webkit-inline-box;
|
|
785
|
+
display: -webkit-inline-flex;
|
|
786
|
+
display: -ms-inline-flexbox;
|
|
787
|
+
display: inline-flex;
|
|
788
|
+
-webkit-align-items: center;
|
|
789
|
+
-webkit-box-align: center;
|
|
790
|
+
-ms-flex-align: center;
|
|
791
|
+
align-items: center;
|
|
792
|
+
-webkit-box-pack: center;
|
|
793
|
+
-ms-flex-pack: center;
|
|
794
|
+
-webkit-justify-content: center;
|
|
795
|
+
justify-content: center;
|
|
796
|
+
height: 32px;
|
|
797
|
+
color: rgba(0, 0, 0, 0.87);
|
|
798
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
799
|
+
border-radius: 16px;
|
|
800
|
+
white-space: nowrap;
|
|
801
|
+
-webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
802
|
+
transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
803
|
+
cursor: default;
|
|
804
|
+
outline: 0;
|
|
805
|
+
-webkit-text-decoration: none;
|
|
806
|
+
text-decoration: none;
|
|
807
|
+
border: 0;
|
|
808
|
+
padding: 0;
|
|
809
|
+
vertical-align: middle;
|
|
810
|
+
box-sizing: border-box;
|
|
200
811
|
margin-right: 5px;
|
|
201
812
|
text-transform: capitalize;
|
|
813
|
+
margin-top: 5px;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.emotion-6.Mui-disabled {
|
|
817
|
+
opacity: 0.38;
|
|
818
|
+
pointer-events: none;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.emotion-6 .MuiChip-avatar {
|
|
822
|
+
margin-left: 5px;
|
|
823
|
+
margin-right: -6px;
|
|
824
|
+
width: 24px;
|
|
825
|
+
height: 24px;
|
|
826
|
+
color: #616161;
|
|
827
|
+
font-size: 0.75rem;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.emotion-6 .MuiChip-avatarColorPrimary {
|
|
831
|
+
color: #fff;
|
|
832
|
+
background-color: rgb(52, 65, 44);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.emotion-6 .MuiChip-avatarColorSecondary {
|
|
836
|
+
color: #fff;
|
|
837
|
+
background-color: rgb(22, 24, 29);
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.emotion-6 .MuiChip-avatarSmall {
|
|
841
|
+
margin-left: 4px;
|
|
842
|
+
margin-right: -4px;
|
|
843
|
+
width: 18px;
|
|
844
|
+
height: 18px;
|
|
845
|
+
font-size: 0.625rem;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.emotion-6 .MuiChip-icon {
|
|
849
|
+
color: #616161;
|
|
850
|
+
margin-left: 5px;
|
|
851
|
+
margin-right: -6px;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.emotion-6 .MuiChip-deleteIcon {
|
|
855
|
+
-webkit-tap-highlight-color: transparent;
|
|
856
|
+
color: rgba(0, 0, 0, 0.26);
|
|
857
|
+
font-size: 22px;
|
|
858
|
+
cursor: pointer;
|
|
859
|
+
margin: 0 5px 0 -6px;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.emotion-6 .MuiChip-deleteIcon:hover {
|
|
863
|
+
color: rgba(0, 0, 0, 0.4);
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
.emotion-7 {
|
|
867
|
+
overflow: hidden;
|
|
868
|
+
text-overflow: ellipsis;
|
|
869
|
+
padding-left: 12px;
|
|
870
|
+
padding-right: 12px;
|
|
871
|
+
white-space: nowrap;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
.emotion-14 {
|
|
875
|
+
overflow: hidden;
|
|
876
|
+
pointer-events: none;
|
|
877
|
+
position: absolute;
|
|
878
|
+
z-index: 0;
|
|
879
|
+
top: 0;
|
|
880
|
+
right: 0;
|
|
881
|
+
bottom: 0;
|
|
882
|
+
left: 0;
|
|
883
|
+
border-radius: inherit;
|
|
202
884
|
}
|
|
203
885
|
|
|
204
886
|
<body>
|
|
205
887
|
<div>
|
|
206
888
|
<ul
|
|
207
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
889
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
208
890
|
>
|
|
209
891
|
<span
|
|
210
|
-
class="MuiTypography-root
|
|
892
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
211
893
|
>
|
|
212
894
|
Latest Distribution
|
|
213
895
|
</span>
|
|
214
896
|
<div
|
|
215
|
-
|
|
216
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
897
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
217
898
|
role="button"
|
|
218
899
|
tabindex="0"
|
|
219
900
|
>
|
|
220
901
|
<div
|
|
221
|
-
class="MuiChip-root emotion-
|
|
902
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
222
903
|
>
|
|
223
904
|
<span
|
|
224
|
-
class="MuiChip-label"
|
|
905
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
225
906
|
>
|
|
226
907
|
<b>
|
|
227
908
|
file count
|
|
@@ -231,10 +912,10 @@ Object {
|
|
|
231
912
|
</span>
|
|
232
913
|
</div>
|
|
233
914
|
<div
|
|
234
|
-
class="MuiChip-root emotion-
|
|
915
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
235
916
|
>
|
|
236
917
|
<span
|
|
237
|
-
class="MuiChip-label"
|
|
918
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
238
919
|
>
|
|
239
920
|
<b>
|
|
240
921
|
Size
|
|
@@ -244,10 +925,10 @@ Object {
|
|
|
244
925
|
</span>
|
|
245
926
|
</div>
|
|
246
927
|
<div
|
|
247
|
-
class="MuiChip-root emotion-
|
|
928
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
248
929
|
>
|
|
249
930
|
<span
|
|
250
|
-
class="MuiChip-label"
|
|
931
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
251
932
|
>
|
|
252
933
|
<b>
|
|
253
934
|
License
|
|
@@ -257,47 +938,274 @@ Object {
|
|
|
257
938
|
</span>
|
|
258
939
|
</div>
|
|
259
940
|
<span
|
|
260
|
-
class="MuiTouchRipple-root"
|
|
941
|
+
class="MuiTouchRipple-root emotion-14"
|
|
261
942
|
/>
|
|
262
943
|
</div>
|
|
263
944
|
</ul>
|
|
264
945
|
</div>
|
|
265
946
|
</body>,
|
|
266
947
|
"container": .emotion-0 {
|
|
948
|
+
list-style: none;
|
|
949
|
+
margin: 0;
|
|
950
|
+
padding: 0;
|
|
951
|
+
position: relative;
|
|
952
|
+
padding-top: 0;
|
|
953
|
+
padding-bottom: 8px;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.emotion-2 {
|
|
957
|
+
margin: 0;
|
|
958
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
959
|
+
font-weight: 400;
|
|
960
|
+
font-size: 1rem;
|
|
961
|
+
line-height: 1.75;
|
|
267
962
|
font-weight: 700;
|
|
268
963
|
text-transform: capitalize;
|
|
269
964
|
}
|
|
270
965
|
|
|
271
|
-
.emotion-
|
|
966
|
+
.emotion-4 {
|
|
967
|
+
display: -webkit-inline-box;
|
|
968
|
+
display: -webkit-inline-flex;
|
|
969
|
+
display: -ms-inline-flexbox;
|
|
970
|
+
display: inline-flex;
|
|
971
|
+
-webkit-align-items: center;
|
|
972
|
+
-webkit-box-align: center;
|
|
973
|
+
-ms-flex-align: center;
|
|
974
|
+
align-items: center;
|
|
975
|
+
-webkit-box-pack: center;
|
|
976
|
+
-ms-flex-pack: center;
|
|
977
|
+
-webkit-justify-content: center;
|
|
978
|
+
justify-content: center;
|
|
979
|
+
position: relative;
|
|
980
|
+
box-sizing: border-box;
|
|
981
|
+
-webkit-tap-highlight-color: transparent;
|
|
982
|
+
background-color: transparent;
|
|
983
|
+
outline: 0;
|
|
984
|
+
border: 0;
|
|
985
|
+
margin: 0;
|
|
986
|
+
border-radius: 0;
|
|
987
|
+
padding: 0;
|
|
988
|
+
cursor: pointer;
|
|
989
|
+
-webkit-user-select: none;
|
|
990
|
+
-moz-user-select: none;
|
|
991
|
+
-ms-user-select: none;
|
|
992
|
+
user-select: none;
|
|
993
|
+
vertical-align: middle;
|
|
994
|
+
-moz-appearance: none;
|
|
995
|
+
-webkit-appearance: none;
|
|
996
|
+
-webkit-text-decoration: none;
|
|
997
|
+
text-decoration: none;
|
|
998
|
+
color: inherit;
|
|
999
|
+
display: -webkit-box;
|
|
1000
|
+
display: -webkit-flex;
|
|
1001
|
+
display: -ms-flexbox;
|
|
1002
|
+
display: flex;
|
|
1003
|
+
-webkit-box-pack: start;
|
|
1004
|
+
-ms-flex-pack: start;
|
|
1005
|
+
-webkit-justify-content: flex-start;
|
|
1006
|
+
justify-content: flex-start;
|
|
1007
|
+
-webkit-align-items: center;
|
|
1008
|
+
-webkit-box-align: center;
|
|
1009
|
+
-ms-flex-align: center;
|
|
1010
|
+
align-items: center;
|
|
1011
|
+
position: relative;
|
|
1012
|
+
-webkit-text-decoration: none;
|
|
1013
|
+
text-decoration: none;
|
|
1014
|
+
width: 100%;
|
|
1015
|
+
box-sizing: border-box;
|
|
1016
|
+
text-align: left;
|
|
1017
|
+
padding-top: 8px;
|
|
1018
|
+
padding-bottom: 8px;
|
|
1019
|
+
padding-left: 16px;
|
|
1020
|
+
padding-right: 16px;
|
|
1021
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1022
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
272
1023
|
padding-left: 0;
|
|
273
1024
|
padding-right: 0;
|
|
1025
|
+
-webkit-box-flex-wrap: wrap;
|
|
1026
|
+
-webkit-flex-wrap: wrap;
|
|
1027
|
+
-ms-flex-wrap: wrap;
|
|
1028
|
+
flex-wrap: wrap;
|
|
274
1029
|
}
|
|
275
1030
|
|
|
276
|
-
.emotion-4 {
|
|
1031
|
+
.emotion-4::-moz-focus-inner {
|
|
1032
|
+
border-style: none;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.emotion-4.Mui-disabled {
|
|
1036
|
+
pointer-events: none;
|
|
1037
|
+
cursor: default;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
@media print {
|
|
1041
|
+
.emotion-4 {
|
|
1042
|
+
-webkit-print-color-adjust: exact;
|
|
1043
|
+
color-adjust: exact;
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.emotion-4.Mui-focusVisible {
|
|
1048
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.emotion-4.Mui-selected {
|
|
1052
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
1056
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.emotion-4.Mui-disabled {
|
|
1060
|
+
opacity: 0.38;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.emotion-4:hover {
|
|
1064
|
+
-webkit-text-decoration: none;
|
|
1065
|
+
text-decoration: none;
|
|
1066
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
@media (hover: none) {
|
|
1070
|
+
.emotion-4:hover {
|
|
1071
|
+
background-color: transparent;
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.emotion-4.Mui-selected:hover {
|
|
1076
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
@media (hover: none) {
|
|
1080
|
+
.emotion-4.Mui-selected:hover {
|
|
1081
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.emotion-6 {
|
|
1086
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
1087
|
+
font-size: 0.8125rem;
|
|
1088
|
+
display: -webkit-inline-box;
|
|
1089
|
+
display: -webkit-inline-flex;
|
|
1090
|
+
display: -ms-inline-flexbox;
|
|
1091
|
+
display: inline-flex;
|
|
1092
|
+
-webkit-align-items: center;
|
|
1093
|
+
-webkit-box-align: center;
|
|
1094
|
+
-ms-flex-align: center;
|
|
1095
|
+
align-items: center;
|
|
1096
|
+
-webkit-box-pack: center;
|
|
1097
|
+
-ms-flex-pack: center;
|
|
1098
|
+
-webkit-justify-content: center;
|
|
1099
|
+
justify-content: center;
|
|
1100
|
+
height: 32px;
|
|
1101
|
+
color: rgba(0, 0, 0, 0.87);
|
|
1102
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1103
|
+
border-radius: 16px;
|
|
1104
|
+
white-space: nowrap;
|
|
1105
|
+
-webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1106
|
+
transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1107
|
+
cursor: default;
|
|
1108
|
+
outline: 0;
|
|
1109
|
+
-webkit-text-decoration: none;
|
|
1110
|
+
text-decoration: none;
|
|
1111
|
+
border: 0;
|
|
1112
|
+
padding: 0;
|
|
1113
|
+
vertical-align: middle;
|
|
1114
|
+
box-sizing: border-box;
|
|
277
1115
|
margin-right: 5px;
|
|
278
1116
|
text-transform: capitalize;
|
|
1117
|
+
margin-top: 5px;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
.emotion-6.Mui-disabled {
|
|
1121
|
+
opacity: 0.38;
|
|
1122
|
+
pointer-events: none;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.emotion-6 .MuiChip-avatar {
|
|
1126
|
+
margin-left: 5px;
|
|
1127
|
+
margin-right: -6px;
|
|
1128
|
+
width: 24px;
|
|
1129
|
+
height: 24px;
|
|
1130
|
+
color: #616161;
|
|
1131
|
+
font-size: 0.75rem;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.emotion-6 .MuiChip-avatarColorPrimary {
|
|
1135
|
+
color: #fff;
|
|
1136
|
+
background-color: rgb(52, 65, 44);
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
.emotion-6 .MuiChip-avatarColorSecondary {
|
|
1140
|
+
color: #fff;
|
|
1141
|
+
background-color: rgb(22, 24, 29);
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.emotion-6 .MuiChip-avatarSmall {
|
|
1145
|
+
margin-left: 4px;
|
|
1146
|
+
margin-right: -4px;
|
|
1147
|
+
width: 18px;
|
|
1148
|
+
height: 18px;
|
|
1149
|
+
font-size: 0.625rem;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.emotion-6 .MuiChip-icon {
|
|
1153
|
+
color: #616161;
|
|
1154
|
+
margin-left: 5px;
|
|
1155
|
+
margin-right: -6px;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.emotion-6 .MuiChip-deleteIcon {
|
|
1159
|
+
-webkit-tap-highlight-color: transparent;
|
|
1160
|
+
color: rgba(0, 0, 0, 0.26);
|
|
1161
|
+
font-size: 22px;
|
|
1162
|
+
cursor: pointer;
|
|
1163
|
+
margin: 0 5px 0 -6px;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.emotion-6 .MuiChip-deleteIcon:hover {
|
|
1167
|
+
color: rgba(0, 0, 0, 0.4);
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.emotion-7 {
|
|
1171
|
+
overflow: hidden;
|
|
1172
|
+
text-overflow: ellipsis;
|
|
1173
|
+
padding-left: 12px;
|
|
1174
|
+
padding-right: 12px;
|
|
1175
|
+
white-space: nowrap;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
.emotion-14 {
|
|
1179
|
+
overflow: hidden;
|
|
1180
|
+
pointer-events: none;
|
|
1181
|
+
position: absolute;
|
|
1182
|
+
z-index: 0;
|
|
1183
|
+
top: 0;
|
|
1184
|
+
right: 0;
|
|
1185
|
+
bottom: 0;
|
|
1186
|
+
left: 0;
|
|
1187
|
+
border-radius: inherit;
|
|
279
1188
|
}
|
|
280
1189
|
|
|
281
1190
|
<div>
|
|
282
1191
|
<ul
|
|
283
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
1192
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
284
1193
|
>
|
|
285
1194
|
<span
|
|
286
|
-
class="MuiTypography-root
|
|
1195
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
287
1196
|
>
|
|
288
1197
|
Latest Distribution
|
|
289
1198
|
</span>
|
|
290
1199
|
<div
|
|
291
|
-
|
|
292
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
1200
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
293
1201
|
role="button"
|
|
294
1202
|
tabindex="0"
|
|
295
1203
|
>
|
|
296
1204
|
<div
|
|
297
|
-
class="MuiChip-root emotion-
|
|
1205
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
298
1206
|
>
|
|
299
1207
|
<span
|
|
300
|
-
class="MuiChip-label"
|
|
1208
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
301
1209
|
>
|
|
302
1210
|
<b>
|
|
303
1211
|
file count
|
|
@@ -307,10 +1215,10 @@ Object {
|
|
|
307
1215
|
</span>
|
|
308
1216
|
</div>
|
|
309
1217
|
<div
|
|
310
|
-
class="MuiChip-root emotion-
|
|
1218
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
311
1219
|
>
|
|
312
1220
|
<span
|
|
313
|
-
class="MuiChip-label"
|
|
1221
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
314
1222
|
>
|
|
315
1223
|
<b>
|
|
316
1224
|
Size
|
|
@@ -320,10 +1228,10 @@ Object {
|
|
|
320
1228
|
</span>
|
|
321
1229
|
</div>
|
|
322
1230
|
<div
|
|
323
|
-
class="MuiChip-root emotion-
|
|
1231
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
324
1232
|
>
|
|
325
1233
|
<span
|
|
326
|
-
class="MuiChip-label"
|
|
1234
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
327
1235
|
>
|
|
328
1236
|
<b>
|
|
329
1237
|
License
|
|
@@ -333,7 +1241,7 @@ Object {
|
|
|
333
1241
|
</span>
|
|
334
1242
|
</div>
|
|
335
1243
|
<span
|
|
336
|
-
class="MuiTouchRipple-root"
|
|
1244
|
+
class="MuiTouchRipple-root emotion-14"
|
|
337
1245
|
/>
|
|
338
1246
|
</div>
|
|
339
1247
|
</ul>
|
|
@@ -396,41 +1304,268 @@ exports[`<Dist /> component should render the component with license as string 1
|
|
|
396
1304
|
Object {
|
|
397
1305
|
"asFragment": [Function],
|
|
398
1306
|
"baseElement": .emotion-0 {
|
|
1307
|
+
list-style: none;
|
|
1308
|
+
margin: 0;
|
|
1309
|
+
padding: 0;
|
|
1310
|
+
position: relative;
|
|
1311
|
+
padding-top: 0;
|
|
1312
|
+
padding-bottom: 8px;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
.emotion-2 {
|
|
1316
|
+
margin: 0;
|
|
1317
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
1318
|
+
font-weight: 400;
|
|
1319
|
+
font-size: 1rem;
|
|
1320
|
+
line-height: 1.75;
|
|
399
1321
|
font-weight: 700;
|
|
400
1322
|
text-transform: capitalize;
|
|
401
1323
|
}
|
|
402
1324
|
|
|
403
|
-
.emotion-
|
|
1325
|
+
.emotion-4 {
|
|
1326
|
+
display: -webkit-inline-box;
|
|
1327
|
+
display: -webkit-inline-flex;
|
|
1328
|
+
display: -ms-inline-flexbox;
|
|
1329
|
+
display: inline-flex;
|
|
1330
|
+
-webkit-align-items: center;
|
|
1331
|
+
-webkit-box-align: center;
|
|
1332
|
+
-ms-flex-align: center;
|
|
1333
|
+
align-items: center;
|
|
1334
|
+
-webkit-box-pack: center;
|
|
1335
|
+
-ms-flex-pack: center;
|
|
1336
|
+
-webkit-justify-content: center;
|
|
1337
|
+
justify-content: center;
|
|
1338
|
+
position: relative;
|
|
1339
|
+
box-sizing: border-box;
|
|
1340
|
+
-webkit-tap-highlight-color: transparent;
|
|
1341
|
+
background-color: transparent;
|
|
1342
|
+
outline: 0;
|
|
1343
|
+
border: 0;
|
|
1344
|
+
margin: 0;
|
|
1345
|
+
border-radius: 0;
|
|
1346
|
+
padding: 0;
|
|
1347
|
+
cursor: pointer;
|
|
1348
|
+
-webkit-user-select: none;
|
|
1349
|
+
-moz-user-select: none;
|
|
1350
|
+
-ms-user-select: none;
|
|
1351
|
+
user-select: none;
|
|
1352
|
+
vertical-align: middle;
|
|
1353
|
+
-moz-appearance: none;
|
|
1354
|
+
-webkit-appearance: none;
|
|
1355
|
+
-webkit-text-decoration: none;
|
|
1356
|
+
text-decoration: none;
|
|
1357
|
+
color: inherit;
|
|
1358
|
+
display: -webkit-box;
|
|
1359
|
+
display: -webkit-flex;
|
|
1360
|
+
display: -ms-flexbox;
|
|
1361
|
+
display: flex;
|
|
1362
|
+
-webkit-box-pack: start;
|
|
1363
|
+
-ms-flex-pack: start;
|
|
1364
|
+
-webkit-justify-content: flex-start;
|
|
1365
|
+
justify-content: flex-start;
|
|
1366
|
+
-webkit-align-items: center;
|
|
1367
|
+
-webkit-box-align: center;
|
|
1368
|
+
-ms-flex-align: center;
|
|
1369
|
+
align-items: center;
|
|
1370
|
+
position: relative;
|
|
1371
|
+
-webkit-text-decoration: none;
|
|
1372
|
+
text-decoration: none;
|
|
1373
|
+
width: 100%;
|
|
1374
|
+
box-sizing: border-box;
|
|
1375
|
+
text-align: left;
|
|
1376
|
+
padding-top: 8px;
|
|
1377
|
+
padding-bottom: 8px;
|
|
1378
|
+
padding-left: 16px;
|
|
1379
|
+
padding-right: 16px;
|
|
1380
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1381
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
404
1382
|
padding-left: 0;
|
|
405
1383
|
padding-right: 0;
|
|
1384
|
+
-webkit-box-flex-wrap: wrap;
|
|
1385
|
+
-webkit-flex-wrap: wrap;
|
|
1386
|
+
-ms-flex-wrap: wrap;
|
|
1387
|
+
flex-wrap: wrap;
|
|
406
1388
|
}
|
|
407
1389
|
|
|
408
|
-
.emotion-4 {
|
|
1390
|
+
.emotion-4::-moz-focus-inner {
|
|
1391
|
+
border-style: none;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
.emotion-4.Mui-disabled {
|
|
1395
|
+
pointer-events: none;
|
|
1396
|
+
cursor: default;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
@media print {
|
|
1400
|
+
.emotion-4 {
|
|
1401
|
+
-webkit-print-color-adjust: exact;
|
|
1402
|
+
color-adjust: exact;
|
|
1403
|
+
}
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.emotion-4.Mui-focusVisible {
|
|
1407
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
.emotion-4.Mui-selected {
|
|
1411
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
1415
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
.emotion-4.Mui-disabled {
|
|
1419
|
+
opacity: 0.38;
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
.emotion-4:hover {
|
|
1423
|
+
-webkit-text-decoration: none;
|
|
1424
|
+
text-decoration: none;
|
|
1425
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
@media (hover: none) {
|
|
1429
|
+
.emotion-4:hover {
|
|
1430
|
+
background-color: transparent;
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
.emotion-4.Mui-selected:hover {
|
|
1435
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
@media (hover: none) {
|
|
1439
|
+
.emotion-4.Mui-selected:hover {
|
|
1440
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
1441
|
+
}
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.emotion-6 {
|
|
1445
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
1446
|
+
font-size: 0.8125rem;
|
|
1447
|
+
display: -webkit-inline-box;
|
|
1448
|
+
display: -webkit-inline-flex;
|
|
1449
|
+
display: -ms-inline-flexbox;
|
|
1450
|
+
display: inline-flex;
|
|
1451
|
+
-webkit-align-items: center;
|
|
1452
|
+
-webkit-box-align: center;
|
|
1453
|
+
-ms-flex-align: center;
|
|
1454
|
+
align-items: center;
|
|
1455
|
+
-webkit-box-pack: center;
|
|
1456
|
+
-ms-flex-pack: center;
|
|
1457
|
+
-webkit-justify-content: center;
|
|
1458
|
+
justify-content: center;
|
|
1459
|
+
height: 32px;
|
|
1460
|
+
color: rgba(0, 0, 0, 0.87);
|
|
1461
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1462
|
+
border-radius: 16px;
|
|
1463
|
+
white-space: nowrap;
|
|
1464
|
+
-webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1465
|
+
transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1466
|
+
cursor: default;
|
|
1467
|
+
outline: 0;
|
|
1468
|
+
-webkit-text-decoration: none;
|
|
1469
|
+
text-decoration: none;
|
|
1470
|
+
border: 0;
|
|
1471
|
+
padding: 0;
|
|
1472
|
+
vertical-align: middle;
|
|
1473
|
+
box-sizing: border-box;
|
|
409
1474
|
margin-right: 5px;
|
|
410
1475
|
text-transform: capitalize;
|
|
1476
|
+
margin-top: 5px;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
.emotion-6.Mui-disabled {
|
|
1480
|
+
opacity: 0.38;
|
|
1481
|
+
pointer-events: none;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.emotion-6 .MuiChip-avatar {
|
|
1485
|
+
margin-left: 5px;
|
|
1486
|
+
margin-right: -6px;
|
|
1487
|
+
width: 24px;
|
|
1488
|
+
height: 24px;
|
|
1489
|
+
color: #616161;
|
|
1490
|
+
font-size: 0.75rem;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.emotion-6 .MuiChip-avatarColorPrimary {
|
|
1494
|
+
color: #fff;
|
|
1495
|
+
background-color: rgb(52, 65, 44);
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
.emotion-6 .MuiChip-avatarColorSecondary {
|
|
1499
|
+
color: #fff;
|
|
1500
|
+
background-color: rgb(22, 24, 29);
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
.emotion-6 .MuiChip-avatarSmall {
|
|
1504
|
+
margin-left: 4px;
|
|
1505
|
+
margin-right: -4px;
|
|
1506
|
+
width: 18px;
|
|
1507
|
+
height: 18px;
|
|
1508
|
+
font-size: 0.625rem;
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
.emotion-6 .MuiChip-icon {
|
|
1512
|
+
color: #616161;
|
|
1513
|
+
margin-left: 5px;
|
|
1514
|
+
margin-right: -6px;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.emotion-6 .MuiChip-deleteIcon {
|
|
1518
|
+
-webkit-tap-highlight-color: transparent;
|
|
1519
|
+
color: rgba(0, 0, 0, 0.26);
|
|
1520
|
+
font-size: 22px;
|
|
1521
|
+
cursor: pointer;
|
|
1522
|
+
margin: 0 5px 0 -6px;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.emotion-6 .MuiChip-deleteIcon:hover {
|
|
1526
|
+
color: rgba(0, 0, 0, 0.4);
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.emotion-7 {
|
|
1530
|
+
overflow: hidden;
|
|
1531
|
+
text-overflow: ellipsis;
|
|
1532
|
+
padding-left: 12px;
|
|
1533
|
+
padding-right: 12px;
|
|
1534
|
+
white-space: nowrap;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.emotion-14 {
|
|
1538
|
+
overflow: hidden;
|
|
1539
|
+
pointer-events: none;
|
|
1540
|
+
position: absolute;
|
|
1541
|
+
z-index: 0;
|
|
1542
|
+
top: 0;
|
|
1543
|
+
right: 0;
|
|
1544
|
+
bottom: 0;
|
|
1545
|
+
left: 0;
|
|
1546
|
+
border-radius: inherit;
|
|
411
1547
|
}
|
|
412
1548
|
|
|
413
1549
|
<body>
|
|
414
1550
|
<div>
|
|
415
1551
|
<ul
|
|
416
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
1552
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
417
1553
|
>
|
|
418
1554
|
<span
|
|
419
|
-
class="MuiTypography-root
|
|
1555
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
420
1556
|
>
|
|
421
1557
|
Latest Distribution
|
|
422
1558
|
</span>
|
|
423
1559
|
<div
|
|
424
|
-
|
|
425
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
1560
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
426
1561
|
role="button"
|
|
427
1562
|
tabindex="0"
|
|
428
1563
|
>
|
|
429
1564
|
<div
|
|
430
|
-
class="MuiChip-root emotion-
|
|
1565
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
431
1566
|
>
|
|
432
1567
|
<span
|
|
433
|
-
class="MuiChip-label"
|
|
1568
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
434
1569
|
>
|
|
435
1570
|
<b>
|
|
436
1571
|
file count
|
|
@@ -440,10 +1575,10 @@ Object {
|
|
|
440
1575
|
</span>
|
|
441
1576
|
</div>
|
|
442
1577
|
<div
|
|
443
|
-
class="MuiChip-root emotion-
|
|
1578
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
444
1579
|
>
|
|
445
1580
|
<span
|
|
446
|
-
class="MuiChip-label"
|
|
1581
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
447
1582
|
>
|
|
448
1583
|
<b>
|
|
449
1584
|
Size
|
|
@@ -453,10 +1588,10 @@ Object {
|
|
|
453
1588
|
</span>
|
|
454
1589
|
</div>
|
|
455
1590
|
<div
|
|
456
|
-
class="MuiChip-root emotion-
|
|
1591
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
457
1592
|
>
|
|
458
1593
|
<span
|
|
459
|
-
class="MuiChip-label"
|
|
1594
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
460
1595
|
>
|
|
461
1596
|
<b>
|
|
462
1597
|
License
|
|
@@ -466,47 +1601,274 @@ Object {
|
|
|
466
1601
|
</span>
|
|
467
1602
|
</div>
|
|
468
1603
|
<span
|
|
469
|
-
class="MuiTouchRipple-root"
|
|
1604
|
+
class="MuiTouchRipple-root emotion-14"
|
|
470
1605
|
/>
|
|
471
1606
|
</div>
|
|
472
1607
|
</ul>
|
|
473
1608
|
</div>
|
|
474
1609
|
</body>,
|
|
475
1610
|
"container": .emotion-0 {
|
|
1611
|
+
list-style: none;
|
|
1612
|
+
margin: 0;
|
|
1613
|
+
padding: 0;
|
|
1614
|
+
position: relative;
|
|
1615
|
+
padding-top: 0;
|
|
1616
|
+
padding-bottom: 8px;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
.emotion-2 {
|
|
1620
|
+
margin: 0;
|
|
1621
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
1622
|
+
font-weight: 400;
|
|
1623
|
+
font-size: 1rem;
|
|
1624
|
+
line-height: 1.75;
|
|
476
1625
|
font-weight: 700;
|
|
477
1626
|
text-transform: capitalize;
|
|
478
1627
|
}
|
|
479
1628
|
|
|
480
|
-
.emotion-
|
|
1629
|
+
.emotion-4 {
|
|
1630
|
+
display: -webkit-inline-box;
|
|
1631
|
+
display: -webkit-inline-flex;
|
|
1632
|
+
display: -ms-inline-flexbox;
|
|
1633
|
+
display: inline-flex;
|
|
1634
|
+
-webkit-align-items: center;
|
|
1635
|
+
-webkit-box-align: center;
|
|
1636
|
+
-ms-flex-align: center;
|
|
1637
|
+
align-items: center;
|
|
1638
|
+
-webkit-box-pack: center;
|
|
1639
|
+
-ms-flex-pack: center;
|
|
1640
|
+
-webkit-justify-content: center;
|
|
1641
|
+
justify-content: center;
|
|
1642
|
+
position: relative;
|
|
1643
|
+
box-sizing: border-box;
|
|
1644
|
+
-webkit-tap-highlight-color: transparent;
|
|
1645
|
+
background-color: transparent;
|
|
1646
|
+
outline: 0;
|
|
1647
|
+
border: 0;
|
|
1648
|
+
margin: 0;
|
|
1649
|
+
border-radius: 0;
|
|
1650
|
+
padding: 0;
|
|
1651
|
+
cursor: pointer;
|
|
1652
|
+
-webkit-user-select: none;
|
|
1653
|
+
-moz-user-select: none;
|
|
1654
|
+
-ms-user-select: none;
|
|
1655
|
+
user-select: none;
|
|
1656
|
+
vertical-align: middle;
|
|
1657
|
+
-moz-appearance: none;
|
|
1658
|
+
-webkit-appearance: none;
|
|
1659
|
+
-webkit-text-decoration: none;
|
|
1660
|
+
text-decoration: none;
|
|
1661
|
+
color: inherit;
|
|
1662
|
+
display: -webkit-box;
|
|
1663
|
+
display: -webkit-flex;
|
|
1664
|
+
display: -ms-flexbox;
|
|
1665
|
+
display: flex;
|
|
1666
|
+
-webkit-box-pack: start;
|
|
1667
|
+
-ms-flex-pack: start;
|
|
1668
|
+
-webkit-justify-content: flex-start;
|
|
1669
|
+
justify-content: flex-start;
|
|
1670
|
+
-webkit-align-items: center;
|
|
1671
|
+
-webkit-box-align: center;
|
|
1672
|
+
-ms-flex-align: center;
|
|
1673
|
+
align-items: center;
|
|
1674
|
+
position: relative;
|
|
1675
|
+
-webkit-text-decoration: none;
|
|
1676
|
+
text-decoration: none;
|
|
1677
|
+
width: 100%;
|
|
1678
|
+
box-sizing: border-box;
|
|
1679
|
+
text-align: left;
|
|
1680
|
+
padding-top: 8px;
|
|
1681
|
+
padding-bottom: 8px;
|
|
1682
|
+
padding-left: 16px;
|
|
1683
|
+
padding-right: 16px;
|
|
1684
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1685
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
481
1686
|
padding-left: 0;
|
|
482
1687
|
padding-right: 0;
|
|
1688
|
+
-webkit-box-flex-wrap: wrap;
|
|
1689
|
+
-webkit-flex-wrap: wrap;
|
|
1690
|
+
-ms-flex-wrap: wrap;
|
|
1691
|
+
flex-wrap: wrap;
|
|
483
1692
|
}
|
|
484
1693
|
|
|
485
|
-
.emotion-4 {
|
|
1694
|
+
.emotion-4::-moz-focus-inner {
|
|
1695
|
+
border-style: none;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.emotion-4.Mui-disabled {
|
|
1699
|
+
pointer-events: none;
|
|
1700
|
+
cursor: default;
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
@media print {
|
|
1704
|
+
.emotion-4 {
|
|
1705
|
+
-webkit-print-color-adjust: exact;
|
|
1706
|
+
color-adjust: exact;
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
.emotion-4.Mui-focusVisible {
|
|
1711
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.emotion-4.Mui-selected {
|
|
1715
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
1719
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
.emotion-4.Mui-disabled {
|
|
1723
|
+
opacity: 0.38;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
.emotion-4:hover {
|
|
1727
|
+
-webkit-text-decoration: none;
|
|
1728
|
+
text-decoration: none;
|
|
1729
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
@media (hover: none) {
|
|
1733
|
+
.emotion-4:hover {
|
|
1734
|
+
background-color: transparent;
|
|
1735
|
+
}
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
.emotion-4.Mui-selected:hover {
|
|
1739
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
@media (hover: none) {
|
|
1743
|
+
.emotion-4.Mui-selected:hover {
|
|
1744
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
.emotion-6 {
|
|
1749
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
1750
|
+
font-size: 0.8125rem;
|
|
1751
|
+
display: -webkit-inline-box;
|
|
1752
|
+
display: -webkit-inline-flex;
|
|
1753
|
+
display: -ms-inline-flexbox;
|
|
1754
|
+
display: inline-flex;
|
|
1755
|
+
-webkit-align-items: center;
|
|
1756
|
+
-webkit-box-align: center;
|
|
1757
|
+
-ms-flex-align: center;
|
|
1758
|
+
align-items: center;
|
|
1759
|
+
-webkit-box-pack: center;
|
|
1760
|
+
-ms-flex-pack: center;
|
|
1761
|
+
-webkit-justify-content: center;
|
|
1762
|
+
justify-content: center;
|
|
1763
|
+
height: 32px;
|
|
1764
|
+
color: rgba(0, 0, 0, 0.87);
|
|
1765
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
1766
|
+
border-radius: 16px;
|
|
1767
|
+
white-space: nowrap;
|
|
1768
|
+
-webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1769
|
+
transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
1770
|
+
cursor: default;
|
|
1771
|
+
outline: 0;
|
|
1772
|
+
-webkit-text-decoration: none;
|
|
1773
|
+
text-decoration: none;
|
|
1774
|
+
border: 0;
|
|
1775
|
+
padding: 0;
|
|
1776
|
+
vertical-align: middle;
|
|
1777
|
+
box-sizing: border-box;
|
|
486
1778
|
margin-right: 5px;
|
|
487
1779
|
text-transform: capitalize;
|
|
1780
|
+
margin-top: 5px;
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
.emotion-6.Mui-disabled {
|
|
1784
|
+
opacity: 0.38;
|
|
1785
|
+
pointer-events: none;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.emotion-6 .MuiChip-avatar {
|
|
1789
|
+
margin-left: 5px;
|
|
1790
|
+
margin-right: -6px;
|
|
1791
|
+
width: 24px;
|
|
1792
|
+
height: 24px;
|
|
1793
|
+
color: #616161;
|
|
1794
|
+
font-size: 0.75rem;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.emotion-6 .MuiChip-avatarColorPrimary {
|
|
1798
|
+
color: #fff;
|
|
1799
|
+
background-color: rgb(52, 65, 44);
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
.emotion-6 .MuiChip-avatarColorSecondary {
|
|
1803
|
+
color: #fff;
|
|
1804
|
+
background-color: rgb(22, 24, 29);
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
.emotion-6 .MuiChip-avatarSmall {
|
|
1808
|
+
margin-left: 4px;
|
|
1809
|
+
margin-right: -4px;
|
|
1810
|
+
width: 18px;
|
|
1811
|
+
height: 18px;
|
|
1812
|
+
font-size: 0.625rem;
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
.emotion-6 .MuiChip-icon {
|
|
1816
|
+
color: #616161;
|
|
1817
|
+
margin-left: 5px;
|
|
1818
|
+
margin-right: -6px;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.emotion-6 .MuiChip-deleteIcon {
|
|
1822
|
+
-webkit-tap-highlight-color: transparent;
|
|
1823
|
+
color: rgba(0, 0, 0, 0.26);
|
|
1824
|
+
font-size: 22px;
|
|
1825
|
+
cursor: pointer;
|
|
1826
|
+
margin: 0 5px 0 -6px;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.emotion-6 .MuiChip-deleteIcon:hover {
|
|
1830
|
+
color: rgba(0, 0, 0, 0.4);
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.emotion-7 {
|
|
1834
|
+
overflow: hidden;
|
|
1835
|
+
text-overflow: ellipsis;
|
|
1836
|
+
padding-left: 12px;
|
|
1837
|
+
padding-right: 12px;
|
|
1838
|
+
white-space: nowrap;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
.emotion-14 {
|
|
1842
|
+
overflow: hidden;
|
|
1843
|
+
pointer-events: none;
|
|
1844
|
+
position: absolute;
|
|
1845
|
+
z-index: 0;
|
|
1846
|
+
top: 0;
|
|
1847
|
+
right: 0;
|
|
1848
|
+
bottom: 0;
|
|
1849
|
+
left: 0;
|
|
1850
|
+
border-radius: inherit;
|
|
488
1851
|
}
|
|
489
1852
|
|
|
490
1853
|
<div>
|
|
491
1854
|
<ul
|
|
492
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
1855
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
493
1856
|
>
|
|
494
1857
|
<span
|
|
495
|
-
class="MuiTypography-root
|
|
1858
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
496
1859
|
>
|
|
497
1860
|
Latest Distribution
|
|
498
1861
|
</span>
|
|
499
1862
|
<div
|
|
500
|
-
|
|
501
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
1863
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
502
1864
|
role="button"
|
|
503
1865
|
tabindex="0"
|
|
504
1866
|
>
|
|
505
1867
|
<div
|
|
506
|
-
class="MuiChip-root emotion-
|
|
1868
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
507
1869
|
>
|
|
508
1870
|
<span
|
|
509
|
-
class="MuiChip-label"
|
|
1871
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
510
1872
|
>
|
|
511
1873
|
<b>
|
|
512
1874
|
file count
|
|
@@ -516,10 +1878,10 @@ Object {
|
|
|
516
1878
|
</span>
|
|
517
1879
|
</div>
|
|
518
1880
|
<div
|
|
519
|
-
class="MuiChip-root emotion-
|
|
1881
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
520
1882
|
>
|
|
521
1883
|
<span
|
|
522
|
-
class="MuiChip-label"
|
|
1884
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
523
1885
|
>
|
|
524
1886
|
<b>
|
|
525
1887
|
Size
|
|
@@ -529,10 +1891,10 @@ Object {
|
|
|
529
1891
|
</span>
|
|
530
1892
|
</div>
|
|
531
1893
|
<div
|
|
532
|
-
class="MuiChip-root emotion-
|
|
1894
|
+
class="MuiChip-root MuiChip-filled MuiChip-sizeMedium MuiChip-colorDefault MuiChip-filledDefault emotion-5 emotion-6"
|
|
533
1895
|
>
|
|
534
1896
|
<span
|
|
535
|
-
class="MuiChip-label"
|
|
1897
|
+
class="MuiChip-label MuiChip-labelMedium emotion-7"
|
|
536
1898
|
>
|
|
537
1899
|
<b>
|
|
538
1900
|
License
|
|
@@ -542,7 +1904,7 @@ Object {
|
|
|
542
1904
|
</span>
|
|
543
1905
|
</div>
|
|
544
1906
|
<span
|
|
545
|
-
class="MuiTouchRipple-root"
|
|
1907
|
+
class="MuiTouchRipple-root emotion-14"
|
|
546
1908
|
/>
|
|
547
1909
|
</div>
|
|
548
1910
|
</ul>
|