@scaleflex/widget-explorer 0.0.1
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/CHANGELOG.md +11924 -0
- package/LICENSE +21 -0
- package/README.md +1258 -0
- package/dist/style.css +1850 -0
- package/dist/style.min.css +1 -0
- package/lib/Explorer.styled.js +48 -0
- package/lib/components/ActionBar/ActionBar.styled.js +103 -0
- package/lib/components/ActionBar/DownloadWithExportButton.js +202 -0
- package/lib/components/ActionBar/SelectionMenu.js +129 -0
- package/lib/components/ActionBar/index.js +105 -0
- package/lib/components/AddFilesPanel/AddFiles.js +174 -0
- package/lib/components/AddFilesPanel/AddFiles.styled.js +137 -0
- package/lib/components/AddFilesPanel/index.js +59 -0
- package/lib/components/AiSwitcher/AiSwitcher.constants.js +1 -0
- package/lib/components/AiSwitcher/AiSwitcher.styled.js +24 -0
- package/lib/components/AiSwitcher/index.js +81 -0
- package/lib/components/AssetsList/AssetsList.styled.js +219 -0
- package/lib/components/AssetsList/GridView/FilesAccordion.js +76 -0
- package/lib/components/AssetsList/GridView/FilesSection/FileCell.js +276 -0
- package/lib/components/AssetsList/GridView/FilesSection/FileOverlayOptions.js +140 -0
- package/lib/components/AssetsList/GridView/FilesSection/FilesSection.styled.js +15 -0
- package/lib/components/AssetsList/GridView/FilesSection/index.js +31 -0
- package/lib/components/AssetsList/GridView/FilesSkeleton.js +47 -0
- package/lib/components/AssetsList/GridView/FoldersSection/FolderCell.js +239 -0
- package/lib/components/AssetsList/GridView/FoldersSection/FolderPreviewGrid.js +106 -0
- package/lib/components/AssetsList/GridView/FoldersSection/FolderTopOptions.js +70 -0
- package/lib/components/AssetsList/GridView/FoldersSection/index.js +23 -0
- package/lib/components/AssetsList/GridView/FoldersSkeleton.js +77 -0
- package/lib/components/AssetsList/GridView/GridView.styled.js +11 -0
- package/lib/components/AssetsList/GridView/SearchGridView/SearchGridView.styled.js +15 -0
- package/lib/components/AssetsList/GridView/SearchGridView/SearchGridViewSkeleton.js +30 -0
- package/lib/components/AssetsList/GridView/SearchGridView/index.js +97 -0
- package/lib/components/AssetsList/GridView/index.js +196 -0
- package/lib/components/AssetsList/ListView/AssetsSection/AssetsSectionTableHeader.js +152 -0
- package/lib/components/AssetsList/ListView/AssetsSection/AssetsSectionTableRow.js +333 -0
- package/lib/components/AssetsList/ListView/AssetsSection/index.js +99 -0
- package/lib/components/AssetsList/ListView/ColumnsMenu.js +89 -0
- package/lib/components/AssetsList/ListView/FilesAccordion.js +74 -0
- package/lib/components/AssetsList/ListView/FilesSkeleton.js +68 -0
- package/lib/components/AssetsList/ListView/FoldersSection/FoldersSectionTableHeader.js +98 -0
- package/lib/components/AssetsList/ListView/FoldersSection/FoldersSectionTableRow.js +156 -0
- package/lib/components/AssetsList/ListView/FoldersSection/index.js +54 -0
- package/lib/components/AssetsList/ListView/FoldersSkeleton.js +67 -0
- package/lib/components/AssetsList/ListView/ListView.styled.js +181 -0
- package/lib/components/AssetsList/ListView/ListView.utils.js +30 -0
- package/lib/components/AssetsList/ListView/SearchListView/index.js +109 -0
- package/lib/components/AssetsList/ListView/index.js +203 -0
- package/lib/components/AssetsList/ScrollToTop.js +70 -0
- package/lib/components/AssetsList/SearchView.hook.js +241 -0
- package/lib/components/AssetsList/__SearchTestPannel.js +238 -0
- package/lib/components/AssetsList/__SearchTestPannel.mock.js +1 -0
- package/lib/components/AssetsList/index.js +266 -0
- package/lib/components/AssetsList/relevanceBadge.js +15 -0
- package/lib/components/AssetsView/AssetsView.styled.js +25 -0
- package/lib/components/AssetsView/AssetsView.thunks.js +64 -0
- package/lib/components/AssetsView/index.js +142 -0
- package/lib/components/AuthExplorerView.js +79 -0
- package/lib/components/Breadcrumbs/BreadCrumbViews/BreadCrumbsViews.styled.js +30 -0
- package/lib/components/Breadcrumbs/BreadCrumbViews/index.js +32 -0
- package/lib/components/Breadcrumbs/Breadcrumb.js +52 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.styled.js +81 -0
- package/lib/components/Breadcrumbs/BreadcrumbsSkeleton.js +12 -0
- package/lib/components/Breadcrumbs/index.js +187 -0
- package/lib/components/BulkEditPanel/BulkEdit.js +330 -0
- package/lib/components/BulkEditPanel/BulkEditPanel.styled.js +62 -0
- package/lib/components/BulkEditPanel/BulkEditPanel.utils.js +55 -0
- package/lib/components/BulkEditPanel/components/AssetsList/AssetsList.constants.js +29 -0
- package/lib/components/BulkEditPanel/components/AssetsList/AssetsList.js +148 -0
- package/lib/components/BulkEditPanel/components/AssetsList/AssetsList.styled.js +81 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/Columns.styled.js +99 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/FileMetadataField.js +263 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/FileTagField.js +228 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/FileTextField.js +107 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/MetadataColumn.js +142 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/TableRow.js +139 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/TagsColumn.js +58 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/TagsField.js +80 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/TextColumn.js +53 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/columns.utils.js +272 -0
- package/lib/components/BulkEditPanel/components/AssetsList/Columns/getActiveColumn.js +23 -0
- package/lib/components/BulkEditPanel/components/AssetsList/FloatyPreview.js +55 -0
- package/lib/components/BulkEditPanel/components/AssetsList/FloatyPreview.styled.js +21 -0
- package/lib/components/BulkEditPanel/components/AssetsList/TableBody.js +64 -0
- package/lib/components/BulkEditPanel/components/AssetsList/TableHeader.js +67 -0
- package/lib/components/BulkEditPanel/components/BulkEditFooter.js +33 -0
- package/lib/components/BulkEditPanel/components/ConfirmationModal/ConfirmationModal.js +47 -0
- package/lib/components/BulkEditPanel/components/ConfirmationModal/ConfirmationModal.styled.js +25 -0
- package/lib/components/BulkEditPanel/components/MainContent/MainContent.js +110 -0
- package/lib/components/BulkEditPanel/components/MainContent/MainContent.styled.js +12 -0
- package/lib/components/BulkEditPanel/components/MainContent/index.js +2 -0
- package/lib/components/BulkEditPanel/components/Sidebar/Sidebar.styled.js +53 -0
- package/lib/components/BulkEditPanel/components/Sidebar/Sidebar.utils.js +28 -0
- package/lib/components/BulkEditPanel/components/Sidebar/index.js +158 -0
- package/lib/components/BulkEditPanel/components/Tabs/Metadata/Metadata.js +246 -0
- package/lib/components/BulkEditPanel/components/Tabs/Metadata/Metadata.styled.js +17 -0
- package/lib/components/BulkEditPanel/components/Tabs/Tags/Tags.js +222 -0
- package/lib/components/BulkEditPanel/components/Tabs/Tags/Tags.mixin.js +20 -0
- package/lib/components/BulkEditPanel/components/Tabs/Tags/Tags.styled.js +123 -0
- package/lib/components/BulkEditPanel/components/Tabs/Tags/TagsContianer.js +31 -0
- package/lib/components/BulkEditPanel/components/Tabs/Tags/TagsPaper.js +95 -0
- package/lib/components/BulkEditPanel/components/Tabs/Text/Text.js +167 -0
- package/lib/components/BulkEditPanel/components/Tabs/Text/Text.styled.js +15 -0
- package/lib/components/BulkEditPanel/components/Tabs/tabs.constants.js +113 -0
- package/lib/components/BulkEditPanel/components/Tabs/tabs.js +43 -0
- package/lib/components/BulkEditPanel/components/Tabs/tabs.utils.js +239 -0
- package/lib/components/BulkEditPanel/index.js +28 -0
- package/lib/components/ContextMenu/BeforeUploadMenu/index.js +51 -0
- package/lib/components/ContextMenu/ContextMenu.constants.js +64 -0
- package/lib/components/ContextMenu/ContextMenu.hooks.js +35 -0
- package/lib/components/ContextMenu/ContextMenu.styled.js +107 -0
- package/lib/components/ContextMenu/ContextMenuContent.js +202 -0
- package/lib/components/ContextMenu/ContextMenuItem.js +142 -0
- package/lib/components/ContextMenu/FileMenu/CollaborateSection/index.js +33 -0
- package/lib/components/ContextMenu/FileMenu/DeleteSection/index.js +25 -0
- package/lib/components/ContextMenu/FileMenu/EditSection/index.js +42 -0
- package/lib/components/ContextMenu/FileMenu/FindSection/index.js +29 -0
- package/lib/components/ContextMenu/FileMenu/index.js +15 -0
- package/lib/components/ContextMenu/FolderMenu/CollaborateSection/index.js +17 -0
- package/lib/components/ContextMenu/FolderMenu/DeleteSection/index.js +41 -0
- package/lib/components/ContextMenu/FolderMenu/EditSection/index.js +49 -0
- package/lib/components/ContextMenu/FolderMenu/FindSection/index.js +49 -0
- package/lib/components/ContextMenu/FolderMenu/FolderMenu.utils.js +31 -0
- package/lib/components/ContextMenu/FolderMenu/index.js +14 -0
- package/lib/components/ContextMenu/MenuOptions/AddVariationOption.js +59 -0
- package/lib/components/ContextMenu/MenuOptions/BulkEditOption.js +47 -0
- package/lib/components/ContextMenu/MenuOptions/CdnLinkOption.js +54 -0
- package/lib/components/ContextMenu/MenuOptions/DeleteOption.js +70 -0
- package/lib/components/ContextMenu/MenuOptions/DownloadOption.js +88 -0
- package/lib/components/ContextMenu/MenuOptions/EditImageOption.js +63 -0
- package/lib/components/ContextMenu/MenuOptions/EditVideoOption.js +87 -0
- package/lib/components/ContextMenu/MenuOptions/LocateFileOption.js +45 -0
- package/lib/components/ContextMenu/MenuOptions/ManagaAccessOption.js +67 -0
- package/lib/components/ContextMenu/MenuOptions/ManageDetailsOption.js +52 -0
- package/lib/components/ContextMenu/MenuOptions/MoveOption.js +54 -0
- package/lib/components/ContextMenu/MenuOptions/PreviewOption.js +35 -0
- package/lib/components/ContextMenu/MenuOptions/RenameOption.js +66 -0
- package/lib/components/ContextMenu/MenuOptions/TransformationOption.js +63 -0
- package/lib/components/ContextMenu/MultipleMenu/CollaborateSection/index.js +31 -0
- package/lib/components/ContextMenu/MultipleMenu/DeleteSection/index.js +6 -0
- package/lib/components/ContextMenu/MultipleMenu/EditSection/index.js +14 -0
- package/lib/components/ContextMenu/MultipleMenu/FindSection/index.js +14 -0
- package/lib/components/ContextMenu/MultipleMenu/index.js +14 -0
- package/lib/components/ContextMenu/SharedMenus/DownloadFolderSubMenu.js +36 -0
- package/lib/components/ContextMenu/SharedMenus/DownloadSubMenu.js +70 -0
- package/lib/components/ContextMenu/index.js +34 -0
- package/lib/components/ContextMenu/utils/calculateMenuHeight.js +20 -0
- package/lib/components/ContextMenu/utils/calculateMenuPosition.js +42 -0
- package/lib/components/ContextMenu/utils/createSeparator.js +14 -0
- package/lib/components/ContextMenu/utils/editMedia.js +17 -0
- package/lib/components/ContextMenu/utils/getFileLocation.js +8 -0
- package/lib/components/ContextMenu/utils/getFilteredOptions.js +20 -0
- package/lib/components/ContextMenu/utils/getProperFolderSelections.js +7 -0
- package/lib/components/ContextMenu/utils/isEmptyFolderSelection.js +5 -0
- package/lib/components/ContextMenu/utils/isFileContextMenu.js +5 -0
- package/lib/components/ContextMenu/utils/isFirstFileVisibilityPublic.js +9 -0
- package/lib/components/ContextMenu/utils/isMenuItemVisible.js +5 -0
- package/lib/components/ContextMenu/utils/isMixedFiles.js +9 -0
- package/lib/components/ContextMenu/utils/isMultipleSelection.js +6 -0
- package/lib/components/ContextMenu/utils/isSeparatorHidden.js +7 -0
- package/lib/components/ContextMenu/utils/triggerDownload.js +45 -0
- package/lib/components/CropPanel/CropOptions.js +155 -0
- package/lib/components/CropPanel/CropPanel.constants.js +44 -0
- package/lib/components/CropPanel/CropPanel.styled.js +107 -0
- package/lib/components/CropPanel/CropPanel.utils.js +48 -0
- package/lib/components/CropPanel/CropPanelContent.js +209 -0
- package/lib/components/CropPanel/ImageOptions.js +326 -0
- package/lib/components/CropPanel/ImageResize.js +207 -0
- package/lib/components/CropPanel/Option.js +113 -0
- package/lib/components/CropPanel/index.js +22 -0
- package/lib/components/CropPanel/index.scss +55 -0
- package/lib/components/Details/Details.constants.js +70 -0
- package/lib/components/Details/Details.utils.js +232 -0
- package/lib/components/Details/DetailsSideBar.styled.js +139 -0
- package/lib/components/Details/EditActionButtons/EditActionButtons.styled.js +27 -0
- package/lib/components/Details/EditActionButtons/index.js +38 -0
- package/lib/components/Details/FileDetails.js +31 -0
- package/lib/components/Details/FileItem/CustomMetadataTab.js +45 -0
- package/lib/components/Details/FileItem/FileItem.styled.js +47 -0
- package/lib/components/Details/FileItem/GeneralTab.js +113 -0
- package/lib/components/Details/FileItem/SharedFileEditData.js +97 -0
- package/lib/components/Details/FileItem/index.js +2 -0
- package/lib/components/Details/FileItem/style.scss +11 -0
- package/lib/components/Details/FolderDetails.js +138 -0
- package/lib/components/Details/FolderItemList/FolderListItem.js +77 -0
- package/lib/components/Details/FolderItemList/index.js +62 -0
- package/lib/components/Details/MultiItemsDetails.js +69 -0
- package/lib/components/Details/MultipleItems.js +71 -0
- package/lib/components/Details/TabChips.js +46 -0
- package/lib/components/Details/TabPanels.js +42 -0
- package/lib/components/Details/Title.js +52 -0
- package/lib/components/Details/index.js +53 -0
- package/lib/components/DnD/Dnd.styled.js +11 -0
- package/lib/components/DnD/DragImage.js +61 -0
- package/lib/components/DnD/index.js +218 -0
- package/lib/components/Drawer/Drawer.styled.js +45 -0
- package/lib/components/Drawer/Drawer.utils.js +163 -0
- package/lib/components/Drawer/Resizer.js +141 -0
- package/lib/components/Drawer/ResizerCore.js +213 -0
- package/lib/components/Drawer/index.js +68 -0
- package/lib/components/EmptyViewPlaceholder/EmptyViewPlaceholder.styled.js +39 -0
- package/lib/components/EmptyViewPlaceholder/index.js +58 -0
- package/lib/components/ExploreView.js +46 -0
- package/lib/components/ExplorerUI.js +17 -0
- package/lib/components/ExplorerWrapper.js +113 -0
- package/lib/components/FacetedSearch/DrawerBody/index.js +42 -0
- package/lib/components/FacetedSearch/DrawerWrapper/index.js +83 -0
- package/lib/components/FacetedSearch/FacetedSearch.constants.js +27 -0
- package/lib/components/FacetedSearch/FacetedSearch.styled.js +101 -0
- package/lib/components/FacetedSearch/FacetedSearch.utils.js +3 -0
- package/lib/components/FacetedSearch/Field/Date.js +69 -0
- package/lib/components/FacetedSearch/Field/Placeholder.js +20 -0
- package/lib/components/FacetedSearch/Field/Select.js +136 -0
- package/lib/components/FacetedSearch/Field/Switch.js +59 -0
- package/lib/components/FacetedSearch/Field/index.js +27 -0
- package/lib/components/FacetedSearch/GroupWrapper/index.js +129 -0
- package/lib/components/FacetedSearch/StaticFields/Date.js +152 -0
- package/lib/components/FacetedSearch/index.js +12 -0
- package/lib/components/FileItem/FileInfo/FileInfo.styled.js +126 -0
- package/lib/components/FileItem/FileInfo/FileInfo.utils.js +13 -0
- package/lib/components/FileItem/FileInfo/FileMetadata.js +37 -0
- package/lib/components/FileItem/FileInfo/FileName.js +197 -0
- package/lib/components/FileItem/FileInfo/index.js +194 -0
- package/lib/components/FileItem/FileItem.mixin.js +22 -0
- package/lib/components/FileItem/FileItem.styled.js +54 -0
- package/lib/components/FileItem/FileUploadTopOptions.js +87 -0
- package/lib/components/FileItem/PreUploadFileThumbnail/FileThumbnail.js +61 -0
- package/lib/components/FileItem/PreUploadFileThumbnail/PreUploadFileThumbnail.styled.js +8 -0
- package/lib/components/FileItem/PreUploadFileThumbnail/index.js +27 -0
- package/lib/components/FileItem/PreUploadFileThumbnail/index.scss +19 -0
- package/lib/components/FileItem/index.js +162 -0
- package/lib/components/FileItem/index.scss +0 -0
- package/lib/components/FileWindowPanel/Body/ActionButtons.js +69 -0
- package/lib/components/FileWindowPanel/Body/Body.constants.js +5 -0
- package/lib/components/FileWindowPanel/Body/Body.styled.js +196 -0
- package/lib/components/FileWindowPanel/Body/BodyFile.js +165 -0
- package/lib/components/FileWindowPanel/Body/Footer.js +58 -0
- package/lib/components/FileWindowPanel/Body/Preview.js +232 -0
- package/lib/components/FileWindowPanel/Body/PreviewPlaceholder.js +20 -0
- package/lib/components/FileWindowPanel/Body/VideoEmbed.js +80 -0
- package/lib/components/FileWindowPanel/Body/index.js +106 -0
- package/lib/components/FileWindowPanel/FileTabs/FileTabButtons.js +98 -0
- package/lib/components/FileWindowPanel/FileTabs/FileTabs.constants.js +46 -0
- package/lib/components/FileWindowPanel/FileTabs/FileTabs.styled.js +99 -0
- package/lib/components/FileWindowPanel/FileTabs/FileTabsList.js +88 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/EditableField.js +78 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/FieldLabel.js +40 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/FieldRow.js +57 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/FieldValue.js +20 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/FieldWithTooltip.js +29 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/GeneralSection.js +182 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/GeneralTab.constants.js +2 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/GeneralTab.styled.js +112 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/GeneralTabSkeleton.js +70 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/TableSeparator.js +10 -0
- package/lib/components/FileWindowPanel/FileTabs/GeneralTab/index.js +100 -0
- package/lib/components/FileWindowPanel/FileTabs/MetadataTab/CustomMetadataSection.js +234 -0
- package/lib/components/FileWindowPanel/FileTabs/MetadataTab/EmbeddedMetadataSection.js +31 -0
- package/lib/components/FileWindowPanel/FileTabs/MetadataTab/MetadataTab.constants.js +2 -0
- package/lib/components/FileWindowPanel/FileTabs/MetadataTab/MetadataTab.styled.js +134 -0
- package/lib/components/FileWindowPanel/FileTabs/MetadataTab/MetadataTabSkeleton.js +70 -0
- package/lib/components/FileWindowPanel/FileTabs/MetadataTab/index.js +181 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/VariationItem.js +78 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/Variations.constants.js +22 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/Variations.styled.js +175 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/Variations.thunks.js +54 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/Variations.utils.js +23 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/VariationsContent.js +76 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/VariationsEditModalContent.js +57 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/VariationsSearch.js +44 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/VariationsSkeleton.js +35 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/VariationsTabNavigator.js +38 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/VariationsTabs.js +32 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/VariationsTopOptions.js +204 -0
- package/lib/components/FileWindowPanel/FileTabs/VariationsTab/index.js +431 -0
- package/lib/components/FileWindowPanel/FileTabs/index.js +83 -0
- package/lib/components/FileWindowPanel/FileWindow.js +220 -0
- package/lib/components/FileWindowPanel/FileWindow.styled.js +19 -0
- package/lib/components/FileWindowPanel/FileWindow.utils.js +38 -0
- package/lib/components/FileWindowPanel/Header/AfterUploadActionBtns.js +69 -0
- package/lib/components/FileWindowPanel/Header/BeforeUploadActionBtns.js +100 -0
- package/lib/components/FileWindowPanel/Header/FileWindowHeader.styled.js +56 -0
- package/lib/components/FileWindowPanel/Header/MutualActionBtns.js +92 -0
- package/lib/components/FileWindowPanel/Header/index.js +109 -0
- package/lib/components/FileWindowPanel/index.js +60 -0
- package/lib/components/Filters/Filters.constants.js +358 -0
- package/lib/components/Filters/Filters.styled.js +235 -0
- package/lib/components/Filters/Filters.utils.js +536 -0
- package/lib/components/Filters/FiltersContext.js +59 -0
- package/lib/components/Filters/FiltersSkeleton.js +14 -0
- package/lib/components/Filters/Groups/Date/index.js +201 -0
- package/lib/components/Filters/Groups/Folders/FoldersSkeleton.js +43 -0
- package/lib/components/Filters/Groups/Folders/index.js +109 -0
- package/lib/components/Filters/Groups/Image/Colors.js +73 -0
- package/lib/components/Filters/Groups/Image/Faces.js +64 -0
- package/lib/components/Filters/Groups/Image/Orientations.js +64 -0
- package/lib/components/Filters/Groups/Image/Resolutions.js +65 -0
- package/lib/components/Filters/Groups/Image/Tooltip.js +14 -0
- package/lib/components/Filters/Groups/Image/index.js +104 -0
- package/lib/components/Filters/Groups/LicenseExpiry/LicenseExpiry.styled.js +17 -0
- package/lib/components/Filters/Groups/LicenseExpiry/index.js +97 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/ConditionSelector.js +40 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/ExtraRow/ConditionSelector.js +35 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/ExtraRow/ValueSelector.js +33 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/ExtraRow/index.js +18 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/AutoComplete.js +56 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/Boolean.js +35 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/Date.js +36 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/GeoPointField.js +30 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/Numeric.js +32 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/Select.js +55 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/Tags.js +21 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/Text.js +39 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Field/index.js +52 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/KeySelector.js +34 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/Row.js +53 -0
- package/lib/components/Filters/Groups/Metadata/Advanced/index.js +48 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/Date.js +45 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/Field.utils.js +58 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/Numeric.js +51 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/OptionsPopup.js +87 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/Select.js +168 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/Switch.js +41 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/Tags.js +38 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/Text.js +57 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/Uri.js +54 -0
- package/lib/components/Filters/Groups/Metadata/Basic/Field/index.js +46 -0
- package/lib/components/Filters/Groups/Metadata/Basic/GroupWrapper.js +79 -0
- package/lib/components/Filters/Groups/Metadata/Basic/index.js +80 -0
- package/lib/components/Filters/Groups/Metadata/Metadata.constants.js +42 -0
- package/lib/components/Filters/Groups/Metadata/Metadata.styled.js +150 -0
- package/lib/components/Filters/Groups/Metadata/Metadata.utils.js +160 -0
- package/lib/components/Filters/Groups/Metadata/MetadataFiltersContext.js +329 -0
- package/lib/components/Filters/Groups/Metadata/Placeholder.js +25 -0
- package/lib/components/Filters/Groups/Metadata/common/TagsField/TagsMenu.js +81 -0
- package/lib/components/Filters/Groups/Metadata/common/TagsField/TagsSearchPlaceholder.js +18 -0
- package/lib/components/Filters/Groups/Metadata/common/TagsField/index.js +142 -0
- package/lib/components/Filters/Groups/Metadata/index.js +111 -0
- package/lib/components/Filters/Groups/Size/index.js +125 -0
- package/lib/components/Filters/Groups/Tags/FilteredTags.js +62 -0
- package/lib/components/Filters/Groups/Tags/SelectedTags.js +51 -0
- package/lib/components/Filters/Groups/Tags/SuggestedTags.js +43 -0
- package/lib/components/Filters/Groups/Tags/index.js +146 -0
- package/lib/components/Filters/Groups/TypeAndFormat/Format.js +65 -0
- package/lib/components/Filters/Groups/TypeAndFormat/Type.js +85 -0
- package/lib/components/Filters/Groups/TypeAndFormat/index.js +114 -0
- package/lib/components/Filters/Groups/common/DateRangeField/DateRangeField.styled.js +10 -0
- package/lib/components/Filters/Groups/common/DateRangeField/index.js +72 -0
- package/lib/components/Filters/Groups/common/FilterFooter.js +67 -0
- package/lib/components/Filters/Groups/common/FilterOptions.js +29 -0
- package/lib/components/Filters/Groups/common/FilterSearch.js +22 -0
- package/lib/components/Filters/Groups/common/FilterSearch.styled.js +15 -0
- package/lib/components/Filters/Groups/common/FilterSkeleton.js +44 -0
- package/lib/components/Filters/Groups/common/TimeFrames.js +35 -0
- package/lib/components/Filters/Groups/index.js +55 -0
- package/lib/components/Filters/Placeholder.js +29 -0
- package/lib/components/Filters/hooks/useDateTypeFilterValues.js +182 -0
- package/lib/components/Filters/hooks/useFilters.js +78 -0
- package/lib/components/Filters/index.js +78 -0
- package/lib/components/FoldersView/FoldersTree/FoldersTree.styled.js +193 -0
- package/lib/components/FoldersView/FoldersTree/FoldersTree.utils.js +78 -0
- package/lib/components/FoldersView/FoldersTree/FoldersTreeHeader.js +52 -0
- package/lib/components/FoldersView/FoldersTree/FoldersTreeList.js +64 -0
- package/lib/components/FoldersView/FoldersTree/FoldersTreeListItem.js +270 -0
- package/lib/components/FoldersView/FoldersTree/FoldersTreeSearch.js +70 -0
- package/lib/components/FoldersView/FoldersTree/FoldersTreeSkeleton.js +23 -0
- package/lib/components/FoldersView/FoldersTree/NoFoldersResult.js +19 -0
- package/lib/components/FoldersView/FoldersTree/SearchedFoldersItem.js +113 -0
- package/lib/components/FoldersView/FoldersTree/index.js +163 -0
- package/lib/components/FoldersView/hooks/useAddFolder.js +60 -0
- package/lib/components/FoldersView/index.js +256 -0
- package/lib/components/GalleryRoleSelect/CustomRolesTab.js +47 -0
- package/lib/components/GalleryRoleSelect/CustomRolesTab.styled.js +10 -0
- package/lib/components/GalleryRoleSelect/GalleryRoleSelect.constants.js +11 -0
- package/lib/components/GalleryRoleSelect/GalleryRoleSelect.styled.js +132 -0
- package/lib/components/GalleryRoleSelect/GalleryRoleSelect.utils.js +87 -0
- package/lib/components/GalleryRoleSelect/StandardRolesTab.js +58 -0
- package/lib/components/GalleryRoleSelect/index.js +234 -0
- package/lib/components/HeaderBar/FacetedSearchToggleButton.js +28 -0
- package/lib/components/HeaderBar/HeaderBar.styled.js +25 -0
- package/lib/components/HeaderBar/RightSide.js +127 -0
- package/lib/components/HeaderBar/index.js +77 -0
- package/lib/components/ImageEditorPanel/index.js +33 -0
- package/lib/components/InfiniteScroll/InfiniteScroll.js +97 -0
- package/lib/components/InfiniteScroll/InfiniteScroll.styled.js +11 -0
- package/lib/components/Informer/index.js +9 -0
- package/lib/components/LoginScreen/LoginScreen.styled.js +39 -0
- package/lib/components/LoginScreen/index.js +133 -0
- package/lib/components/MainMenu/MainMenu.styled.js +12 -0
- package/lib/components/MainMenu/index.js +77 -0
- package/lib/components/Modals/ConfirmationModal/ConfirmationModal.hooks.js +101 -0
- package/lib/components/Modals/ConfirmationModal/index.js +1 -0
- package/lib/components/Modals/DeleteItems/DeleteItems.hooks.js +233 -0
- package/lib/components/Modals/DeleteItems/index.js +1 -0
- package/lib/components/Modals/DeleteModal/DeleteModal.hooks.js +87 -0
- package/lib/components/Modals/DeleteModal/index.js +1 -0
- package/lib/components/Modals/DownloadConsent/DownlaodConsent.styled.js +8 -0
- package/lib/components/Modals/DownloadConsent/DownloadConsent.hooks.js +90 -0
- package/lib/components/Modals/DownloadConsent/DownloadConsentContent.js +52 -0
- package/lib/components/Modals/DownloadConsent/index.js +2 -0
- package/lib/components/Modals/Modals.js +384 -0
- package/lib/components/Modals/Modals.styled.js +80 -0
- package/lib/components/Modals/MoveItems/MoveItems.hooks.js +88 -0
- package/lib/components/Modals/MoveItems/index.js +1 -0
- package/lib/components/Modals/TransformedDownload/PdfModalContent.js +109 -0
- package/lib/components/Modals/TransformedDownload/TransformedDownload.hooks.js +188 -0
- package/lib/components/Modals/TransformedDownload/TransformedDownload.styled.js +29 -0
- package/lib/components/Modals/TransformedDownload/TransformedDownload.utils.js +46 -0
- package/lib/components/Modals/TransformedDownload/index.js +2 -0
- package/lib/components/Modals/index.js +7 -0
- package/lib/components/Modals/index.scss +0 -0
- package/lib/components/NoItems/NoItems.styled.js +54 -0
- package/lib/components/NoItems/index.js +50 -0
- package/lib/components/PdftronPanel/index.js +31 -0
- package/lib/components/PickerPanel/PickerPanel.styled.js +41 -0
- package/lib/components/PickerPanel/PickerPanelContent.js +95 -0
- package/lib/components/PickerPanel/index.js +21 -0
- package/lib/components/ProgressPanel/ProgressPanel.utils.js +29 -0
- package/lib/components/ProgressPanel/index.js +37 -0
- package/lib/components/TopBar/AppliedFilterChips/AppliedFilterChips.styled.js +11 -0
- package/lib/components/TopBar/AppliedFilterChips/index.js +77 -0
- package/lib/components/TopBar/Search/ContextDropdown/ContextDropdown.styled.js +59 -0
- package/lib/components/TopBar/Search/ContextDropdown/ContextDropdown.utils.js +67 -0
- package/lib/components/TopBar/Search/ContextDropdown/index.js +170 -0
- package/lib/components/TopBar/Search/PrependedOptions/TempFilterRegexInput.js +133 -0
- package/lib/components/TopBar/Search/Search.utils.js +88 -0
- package/lib/components/TopBar/Search/SimilarSearchTag.js +60 -0
- package/lib/components/TopBar/Search/index.js +278 -0
- package/lib/components/TopBar/TopBar.styled.js +37 -0
- package/lib/components/TopBar/index.js +61 -0
- package/lib/components/TopBar/index.scss +20 -0
- package/lib/components/TopSection/TopSection.styled.js +22 -0
- package/lib/components/TopSection/index.js +58 -0
- package/lib/components/UploadBar/UploadBar.styled.js +84 -0
- package/lib/components/UploadBar/index.js +212 -0
- package/lib/components/UploadStatus/index.js +20 -0
- package/lib/components/UploadsPanel/UploadsList/Header.js +19 -0
- package/lib/components/UploadsPanel/UploadsList/List.js +29 -0
- package/lib/components/UploadsPanel/UploadsList/PreUploadPlugins.js +22 -0
- package/lib/components/UploadsPanel/UploadsList/UploadsList.styled.js +64 -0
- package/lib/components/UploadsPanel/UploadsList/UploadsList.utils.js +17 -0
- package/lib/components/UploadsPanel/UploadsList/UploadsVirtualGrid.js +25 -0
- package/lib/components/UploadsPanel/UploadsList/index.js +55 -0
- package/lib/components/UploadsPanel/UploadsPanel.styled.js +24 -0
- package/lib/components/UploadsPanel/UploadsPanelTopBar.js +16 -0
- package/lib/components/UploadsPanel/index.js +36 -0
- package/lib/components/UrlBuilderModal/UrlBuilderModal.styled.js +9 -0
- package/lib/components/UrlBuilderModal/index.js +93 -0
- package/lib/components/Views/ErroredViewPlaceholder.js +48 -0
- package/lib/components/Views/Views.constants.js +29 -0
- package/lib/components/Views/Views.styled.js +87 -0
- package/lib/components/Views/index.js +100 -0
- package/lib/components/common/DeleteModalItemText/DeleteModalItemText.styled.js +8 -0
- package/lib/components/common/DeleteModalItemText/index.js +24 -0
- package/lib/components/common/EditDetailsButton/EditDetailsButton.styled.js +35 -0
- package/lib/components/common/EditDetailsButton/index.js +28 -0
- package/lib/components/common/ExpiryDateTooltipContent/ExpiryDateTooltipContent.styled.js +16 -0
- package/lib/components/common/ExpiryDateTooltipContent/index.js +29 -0
- package/lib/components/common/FileApprovalsInfoPopup/index.js +46 -0
- package/lib/components/common/FileMetadataFieldValue/CustomMetadataFieldValue.js +48 -0
- package/lib/components/common/FileMetadataFieldValue/FileMetadataFieldValue.styled.js +66 -0
- package/lib/components/common/FileMetadataFieldValue/FileMetadataFieldValue.utils.js +311 -0
- package/lib/components/common/FileMetadataFieldValue/GeneralMetadataFieldValue.js +120 -0
- package/lib/components/common/FileMetadataFieldValue/index.js +26 -0
- package/lib/components/common/FileMetadataFieldValue/utils/getFontInfo.js +78 -0
- package/lib/components/common/FolderSelector/BrowseFoldersMenu.js +114 -0
- package/lib/components/common/FolderSelector/FolderSearchMenu.js +45 -0
- package/lib/components/common/FolderSelector/FolderSelector.styled.js +41 -0
- package/lib/components/common/FolderSelector/index.js +186 -0
- package/lib/components/common/FormattedUriLink/FormattedUriLink.styled.js +15 -0
- package/lib/components/common/FormattedUriLink/index.js +21 -0
- package/lib/components/common/OriginalBadge/OriginalBadge.styled.js +17 -0
- package/lib/components/common/OriginalBadge/index.js +14 -0
- package/lib/components/common/SanitizedHtmlElement/index.js +11 -0
- package/lib/components/common/Sort/Sort.constants.js +61 -0
- package/lib/components/common/Sort/Sort.styled.js +47 -0
- package/lib/components/common/Sort/Sort.utils.js +14 -0
- package/lib/components/common/Sort/index.js +183 -0
- package/lib/components/common/TextWithCopyIcon/TextWithCopyIcon.styled.js +44 -0
- package/lib/components/common/TextWithCopyIcon/index.js +71 -0
- package/lib/components/common/TopBarUploadButton/index.js +40 -0
- package/lib/components/common/TrimmedFilePathWithLocate/TrimmedFilePathWithLocate.utils.js +3 -0
- package/lib/components/common/TrimmedFilePathWithLocate/index.js +34 -0
- package/lib/components/common/TrimmedFolderPathWithLocate/index.js +13 -0
- package/lib/components/common/TrimmedPathWithLocate/TrimmedPathWithLocate.styled.js +30 -0
- package/lib/components/common/TrimmedPathWithLocate/index.js +40 -0
- package/lib/components/metadata.adapter.js +365 -0
- package/lib/defaultLocale.js +1353 -0
- package/lib/hooks/index.js +16 -0
- package/lib/hooks/useAssetPicker.js +213 -0
- package/lib/hooks/useDownloadFilesCsv.js +20 -0
- package/lib/hooks/useEditFileDetails.js +505 -0
- package/lib/hooks/useExplorer.js +6 -0
- package/lib/hooks/useExplorerI18n.js +10 -0
- package/lib/hooks/useExplorerInformer.js +10 -0
- package/lib/hooks/useFetchFileFolderPermissions.js +31 -0
- package/lib/hooks/useFetchMetadataTagsBySearchQuery.js +38 -0
- package/lib/hooks/useFileMetadata.js +115 -0
- package/lib/hooks/useFilterSearch.js +37 -0
- package/lib/hooks/useForcedFilters.js +39 -0
- package/lib/hooks/useIsOverflow.js +25 -0
- package/lib/hooks/useIsSmallScreen.js +20 -0
- package/lib/hooks/useLocateFile.js +231 -0
- package/lib/hooks/usePrevious.js +9 -0
- package/lib/hooks/useSearchSuggestions.js +168 -0
- package/lib/hooks/useStartUpload.js +43 -0
- package/lib/hooks/useToLocaleNumber.js +14 -0
- package/lib/hooks/useValidateFileName.js +324 -0
- package/lib/index.js +1560 -0
- package/lib/slices/common.slice.js +254 -0
- package/lib/slices/drag.slice.js +75 -0
- package/lib/slices/files.slice.js +1307 -0
- package/lib/slices/filters.slice.js +382 -0
- package/lib/slices/folders.slice.js +964 -0
- package/lib/slices/foldersTree.slice.js +501 -0
- package/lib/slices/index.js +32 -0
- package/lib/slices/metadata.slice.js +487 -0
- package/lib/slices/panels.slice.js +351 -0
- package/lib/slices/search.slice.js +995 -0
- package/lib/slices/selections.slice.js +315 -0
- package/lib/slices/targets.slice.js +44 -0
- package/lib/slices/topSection.slice.js +71 -0
- package/lib/slices/views.slice.js +346 -0
- package/lib/style.scss +265 -0
- package/lib/thunks/archive.thunks.js +175 -0
- package/lib/thunks/downloads.thunks.js +416 -0
- package/lib/thunks/items.thunks.js +274 -0
- package/lib/thunks/permissions.thunks.js +66 -0
- package/lib/thunks/uploads.thunks.js +235 -0
- package/lib/utils/SearchSuggestions/SearchSuggestionsMenu.js +95 -0
- package/lib/utils/SearchSuggestions/SuggestionMode.js +70 -0
- package/lib/utils/SearchSuggestions/SuggestionModeAttribute.js +87 -0
- package/lib/utils/SearchSuggestions/SuggestionModeExpression.js +121 -0
- package/lib/utils/SearchSuggestions/SuggestionModeTag.js +87 -0
- package/lib/utils/SearchSuggestions/SuggestionsManager.js +242 -0
- package/lib/utils/SearchSuggestions/constants.js +14 -0
- package/lib/utils/SearchSuggestions/index.js +4 -0
- package/lib/utils/SearchSuggestions/styled.js +12 -0
- package/lib/utils/availableScreenSizes.js +4 -0
- package/lib/utils/constants.js +14 -0
- package/lib/utils/convertItemsToFilesFoldersUuids.js +12 -0
- package/lib/utils/convertItemstoFoldersParentUuids.js +12 -0
- package/lib/utils/createPromise.js +9 -0
- package/lib/utils/createSuperFocus.js +43 -0
- package/lib/utils/decodeB64ToStr.js +11 -0
- package/lib/utils/filters.js +333 -0
- package/lib/utils/formatFolderPath.js +10 -0
- package/lib/utils/formatPinSubTitle.js +17 -0
- package/lib/utils/getAcquirerTitle.js +10 -0
- package/lib/utils/getActiveOverlayEl.js +11 -0
- package/lib/utils/getApiPathtype.js +10 -0
- package/lib/utils/getClosestStr.js +22 -0
- package/lib/utils/getItemUuids.js +12 -0
- package/lib/utils/getLabelsTotalAssetsCount.js +6 -0
- package/lib/utils/getMoveAndDeleteData.js +15 -0
- package/lib/utils/getParentFolderPath.js +4 -0
- package/lib/utils/getQueryStringFromUrl.js +6 -0
- package/lib/utils/getScrollableParent.js +15 -0
- package/lib/utils/getStringValueExistedInObj.js +9 -0
- package/lib/utils/isEmbeddableAsset.js +6 -0
- package/lib/utils/isFileVersion.js +9 -0
- package/lib/utils/mapArrayKeysToObjValues.js +33 -0
- package/lib/utils/mapFiltersToShownFormat.js +252 -0
- package/lib/utils/prepareExportedFilesLinks.js +12 -0
- package/lib/utils/prepareSearchUrl.js +65 -0
- package/lib/utils/removeBackground.js +60 -0
- package/lib/utils/removeExtraUrlParams.js +13 -0
- package/lib/utils/scrollToAndFocusItemElement.js +16 -0
- package/lib/utils/toggleFolderNotFoundModal.js +25 -0
- package/lib/utils/trapFocus.js +59 -0
- package/lib/utils/truncateString.js +28 -0
- package/package.json +55 -0
- package/types/index.d.ts +108 -0
package/dist/style.css
ADDED
|
@@ -0,0 +1,1850 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
|
|
2
|
+
.filerobot-Explorer-assets-picker-modal {
|
|
3
|
+
z-index: 100000; }
|
|
4
|
+
|
|
5
|
+
.filerobot-common-BaseButton {
|
|
6
|
+
font-weight: 500;
|
|
7
|
+
padding: 8px 12px;
|
|
8
|
+
border-radius: 2px;
|
|
9
|
+
display: flex;
|
|
10
|
+
align-items: center;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
border: 0;
|
|
14
|
+
outline: none;
|
|
15
|
+
position: relative;
|
|
16
|
+
-webkit-user-select: none;
|
|
17
|
+
-moz-user-select: none;
|
|
18
|
+
user-select: none;
|
|
19
|
+
transition: all 100ms ease-in-out; }
|
|
20
|
+
.filerobot-common-BaseButton span[role='container'] {
|
|
21
|
+
z-index: 4;
|
|
22
|
+
display: flex;
|
|
23
|
+
align-items: center; }
|
|
24
|
+
@media (max-width: 636px) {
|
|
25
|
+
.filerobot-common-BaseButton {
|
|
26
|
+
min-width: 32px;
|
|
27
|
+
min-height: 28px;
|
|
28
|
+
padding: 2px 6px; } }
|
|
29
|
+
@media (max-width: 636px) {
|
|
30
|
+
.filerobot-common-BaseButton span:not[role='container'] {
|
|
31
|
+
display: none; } }
|
|
32
|
+
.filerobot-common-BaseButton:before {
|
|
33
|
+
content: '';
|
|
34
|
+
position: absolute;
|
|
35
|
+
width: 0;
|
|
36
|
+
height: 100%;
|
|
37
|
+
background: #d9dde0;
|
|
38
|
+
opacity: 0;
|
|
39
|
+
border-radius: 15px 2px 15px 5px;
|
|
40
|
+
transition: width 0.07s ease-in-out, border-radius 0.15s ease-in-out; }
|
|
41
|
+
.filerobot-common-BaseButton:not(:disabled):active {
|
|
42
|
+
opacity: 1; }
|
|
43
|
+
.filerobot-common-BaseButton:not(:disabled):active:before {
|
|
44
|
+
opacity: 1;
|
|
45
|
+
border-radius: inherit;
|
|
46
|
+
width: 100%; }
|
|
47
|
+
.filerobot-common-BaseButton:disabled {
|
|
48
|
+
color: #bbb;
|
|
49
|
+
fill: #bbb;
|
|
50
|
+
cursor: not-allowed;
|
|
51
|
+
opacity: 0.8;
|
|
52
|
+
background: rgba(79, 98, 118, 0.7); }
|
|
53
|
+
.filerobot-common-BaseButton:disabled *, .filerobot-common-BaseButton:disabled:before {
|
|
54
|
+
background: none;
|
|
55
|
+
fill: currentColor;
|
|
56
|
+
color: currentColor; }
|
|
57
|
+
|
|
58
|
+
.filerobot-common-BaseButton-auto:not(disabled) :hover,
|
|
59
|
+
.filerobot-common-BaseButton-auto:not(disabled) :focus {
|
|
60
|
+
background: #EFF3F6; }
|
|
61
|
+
.filerobot-common-BaseButton-auto:not(disabled) :hover *,
|
|
62
|
+
.filerobot-common-BaseButton-auto:not(disabled) :focus * {
|
|
63
|
+
color: #5D6D7E;
|
|
64
|
+
fill: #5D6D7E; }
|
|
65
|
+
|
|
66
|
+
.filerobot-common-BaseButton-transparent {
|
|
67
|
+
background: transparent;
|
|
68
|
+
color: #5D6D7E; }
|
|
69
|
+
.filerobot-common-BaseButton-transparent:not(:disabled):hover, .filerobot-common-BaseButton-transparent:not(:disabled):focus {
|
|
70
|
+
background: #EFF3F6; }
|
|
71
|
+
.filerobot-common-BaseButton-transparent:not(:disabled):hover svg *, .filerobot-common-BaseButton-transparent:not(:disabled):focus svg * {
|
|
72
|
+
color: #5D6D7E;
|
|
73
|
+
fill: #5D6D7E; }
|
|
74
|
+
.filerobot-common-BaseButton-transparent:not(:disabled):hover *, .filerobot-common-BaseButton-transparent:not(:disabled):focus * {
|
|
75
|
+
color: #5D6D7E; }
|
|
76
|
+
|
|
77
|
+
.filerobot-common-BaseButton-primary {
|
|
78
|
+
color: #fff;
|
|
79
|
+
background: #4D4E4E; }
|
|
80
|
+
.filerobot-common-BaseButton-primary:not(:disabled):hover {
|
|
81
|
+
filter: brightness(1.1); }
|
|
82
|
+
|
|
83
|
+
.filerobot-common-BaseButton-accent {
|
|
84
|
+
color: #fff;
|
|
85
|
+
background: #6879EB; }
|
|
86
|
+
.filerobot-common-BaseButton-accent:not(:disabled):hover {
|
|
87
|
+
filter: brightness(1.1); }
|
|
88
|
+
.filerobot-common-BaseButton-accent:before {
|
|
89
|
+
background: #4958BC; }
|
|
90
|
+
|
|
91
|
+
.filerobot-common-BaseButton-secondary {
|
|
92
|
+
color: #fff;
|
|
93
|
+
background: #768184; }
|
|
94
|
+
.filerobot-common-BaseButton-secondary:not(:disabled):hover {
|
|
95
|
+
filter: brightness(1.1); }
|
|
96
|
+
|
|
97
|
+
.filerobot-common-BaseButton-activeSecondary {
|
|
98
|
+
color: #5D6D7E;
|
|
99
|
+
background: #E9EEF2; }
|
|
100
|
+
|
|
101
|
+
.filerobot-common-BaseButton-small {
|
|
102
|
+
font-size: 12px;
|
|
103
|
+
padding: 2px 6px; }
|
|
104
|
+
.filerobot-common-BaseButton-small.filerobot-common-LabeledIconButton img {
|
|
105
|
+
min-height: 12px;
|
|
106
|
+
min-width: 12px;
|
|
107
|
+
max-height: 12px;
|
|
108
|
+
max-width: 12px; }
|
|
109
|
+
.filerobot-common-BaseButton-small.filerobot-common-LabeledIconButton span:not([role='container']) {
|
|
110
|
+
margin-left: 4px; }
|
|
111
|
+
|
|
112
|
+
.filerobot-common-BaseButton-medium {
|
|
113
|
+
font-size: 15px;
|
|
114
|
+
line-height: 16px; }
|
|
115
|
+
.filerobot-common-BaseButton-medium.filerobot-common-LabeledIconButton img {
|
|
116
|
+
min-height: 12px;
|
|
117
|
+
min-width: 12px;
|
|
118
|
+
max-height: 12px;
|
|
119
|
+
max-width: 12px; }
|
|
120
|
+
|
|
121
|
+
.filerobot-common-BaseButton-large {
|
|
122
|
+
font-size: 17px;
|
|
123
|
+
padding: 8px 14px; }
|
|
124
|
+
.filerobot-common-BaseButton-large.filerobot-common-LabeledIconButton img {
|
|
125
|
+
min-height: 16px;
|
|
126
|
+
min-width: 16px;
|
|
127
|
+
max-height: 16px;
|
|
128
|
+
max-width: 16px; }
|
|
129
|
+
|
|
130
|
+
.filerobot-common-BaseButton-fullWidth {
|
|
131
|
+
font-size: 17px;
|
|
132
|
+
width: 100%; }
|
|
133
|
+
.filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton svg,
|
|
134
|
+
.filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton img {
|
|
135
|
+
min-height: 16px;
|
|
136
|
+
min-width: 16px;
|
|
137
|
+
max-height: 16px;
|
|
138
|
+
max-width: 16px; }
|
|
139
|
+
.filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton span:not([role='container']) {
|
|
140
|
+
margin-left: 8px; }
|
|
141
|
+
|
|
142
|
+
.filerobot-common-LabeledIconButton-label {
|
|
143
|
+
margin-left: 4px; }
|
|
144
|
+
|
|
145
|
+
.filerobot-common-BadgeButton {
|
|
146
|
+
padding: 8px 12px;
|
|
147
|
+
margin-right: 4px; }
|
|
148
|
+
.filerobot-common-BadgeButton .filerobot-common-BadgeButton-badgeContent {
|
|
149
|
+
border-radius: 50%;
|
|
150
|
+
color: #6879EB;
|
|
151
|
+
background: #fff;
|
|
152
|
+
font-weight: 500;
|
|
153
|
+
margin-left: 4px;
|
|
154
|
+
font-size: 10px;
|
|
155
|
+
width: 14px;
|
|
156
|
+
height: 14px;
|
|
157
|
+
display: inline-flex;
|
|
158
|
+
justify-content: center;
|
|
159
|
+
align-items: center; }
|
|
160
|
+
.filerobot-common-BadgeButton-activeSecondary .filerobot-common-BadgeButton-badgeContent {
|
|
161
|
+
color: #fff;
|
|
162
|
+
background: #5D6D7E; }
|
|
163
|
+
|
|
164
|
+
.filerobot-common-BackCloseButton {
|
|
165
|
+
display: flex;
|
|
166
|
+
align-items: center; }
|
|
167
|
+
|
|
168
|
+
.filerobot-common-BackCloseButton-button {
|
|
169
|
+
padding: 6px; }
|
|
170
|
+
|
|
171
|
+
.filerobot-common-BackCloseButton-buttonMargin {
|
|
172
|
+
margin: 0 6px; }
|
|
173
|
+
|
|
174
|
+
.filerobot-common-BackCloseButton-divider {
|
|
175
|
+
height: 22px; }
|
|
176
|
+
|
|
177
|
+
.filerobot-common-BackdropOverlay {
|
|
178
|
+
position: fixed;
|
|
179
|
+
left: 0;
|
|
180
|
+
top: 0;
|
|
181
|
+
bottom: 0;
|
|
182
|
+
right: 0;
|
|
183
|
+
z-index: 1199; }
|
|
184
|
+
|
|
185
|
+
.filerobot-common-verticalDivider {
|
|
186
|
+
background: #DFE7ED;
|
|
187
|
+
width: 1px; }
|
|
188
|
+
|
|
189
|
+
.filerobot-common-Radio-wrapper {
|
|
190
|
+
display: inline-flex;
|
|
191
|
+
cursor: pointer;
|
|
192
|
+
align-items: center;
|
|
193
|
+
padding: 8px 0; }
|
|
194
|
+
.filerobot-common-Radio-wrapper:first-child {
|
|
195
|
+
padding-top: 0; }
|
|
196
|
+
.filerobot-common-Radio-wrapper:last-child {
|
|
197
|
+
padding-bottom: 0; }
|
|
198
|
+
|
|
199
|
+
.filerobot-common-Radio {
|
|
200
|
+
display: inline-block;
|
|
201
|
+
padding-right: 8px; }
|
|
202
|
+
|
|
203
|
+
.filerobot-common-Radio-label {
|
|
204
|
+
font-size: 16px;
|
|
205
|
+
line-height: 18px;
|
|
206
|
+
color: #37414B; }
|
|
207
|
+
|
|
208
|
+
.filerobot-common-FormGroup:not(:last-child) {
|
|
209
|
+
margin-bottom: 16px; }
|
|
210
|
+
|
|
211
|
+
.filerobot-common-FormControl-inline {
|
|
212
|
+
display: flex; }
|
|
213
|
+
|
|
214
|
+
.filerobot-common-FormControl-with-hint {
|
|
215
|
+
margin-bottom: 0; }
|
|
216
|
+
|
|
217
|
+
.filerobot-common-FormControl-error {
|
|
218
|
+
color: #E85B46; }
|
|
219
|
+
.filerobot-common-FormControl-error .filerobot-common-InputLabel,
|
|
220
|
+
.filerobot-common-FormControl-error .filerobot-common-FormHelperText,
|
|
221
|
+
.filerobot-common-FormControl-error .SfxLabel-root,
|
|
222
|
+
.filerobot-common-FormControl-error .SfxFormHint-root {
|
|
223
|
+
color: #E85B46; }
|
|
224
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root,
|
|
225
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Textarea,
|
|
226
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Select,
|
|
227
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Input,
|
|
228
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root {
|
|
229
|
+
color: #E85B46;
|
|
230
|
+
border-color: #E85B46;
|
|
231
|
+
background: #fff;
|
|
232
|
+
outline-color: #E85B46; }
|
|
233
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:focus-within, .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:focus, .filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:hover,
|
|
234
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Textarea:focus-within,
|
|
235
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Textarea:focus,
|
|
236
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Textarea:hover,
|
|
237
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Select:focus-within,
|
|
238
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Select:focus,
|
|
239
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Select:hover,
|
|
240
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Input:focus-within,
|
|
241
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Input:focus,
|
|
242
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .filerobot-common-Input:hover,
|
|
243
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:focus-within,
|
|
244
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:focus,
|
|
245
|
+
.filerobot-common-FormControl-error:not(:has([data-valid='true'])) .SfxInput-root:hover {
|
|
246
|
+
border: 1px solid #E85B46;
|
|
247
|
+
outline: none; }
|
|
248
|
+
|
|
249
|
+
.filerobot-common-InputLabel {
|
|
250
|
+
display: flex;
|
|
251
|
+
align-items: center;
|
|
252
|
+
margin-bottom: 3px;
|
|
253
|
+
font-size: 12px;
|
|
254
|
+
font-weight: 400;
|
|
255
|
+
color: #768184; }
|
|
256
|
+
|
|
257
|
+
.filerobot-common-FormHelperText {
|
|
258
|
+
margin-top: 3px;
|
|
259
|
+
font-size: 10px;
|
|
260
|
+
color: #768184; }
|
|
261
|
+
.filerobot-common-FormHelperText-medium {
|
|
262
|
+
font-size: 14px; }
|
|
263
|
+
.filerobot-common-FormHelperText-no-margin {
|
|
264
|
+
margin: 0; }
|
|
265
|
+
|
|
266
|
+
.filerobot-common-autoSuggest {
|
|
267
|
+
position: relative; }
|
|
268
|
+
.filerobot-common-autoSuggest-list-wrapper {
|
|
269
|
+
position: absolute;
|
|
270
|
+
z-index: 11111111111111; }
|
|
271
|
+
|
|
272
|
+
.suggestions-list {
|
|
273
|
+
border: 1px solid #ddd;
|
|
274
|
+
border-radius: 2px;
|
|
275
|
+
list-style: none;
|
|
276
|
+
margin-top: 0;
|
|
277
|
+
margin-left: 125px;
|
|
278
|
+
padding-left: 0;
|
|
279
|
+
font-size: 14px;
|
|
280
|
+
background-color: #fff;
|
|
281
|
+
max-height: 200px;
|
|
282
|
+
overflow-y: scroll;
|
|
283
|
+
overflow-x: hidden; }
|
|
284
|
+
.suggestions-list li {
|
|
285
|
+
padding: 0.5rem;
|
|
286
|
+
font-size: 1rem; }
|
|
287
|
+
|
|
288
|
+
.suggestions-tags {
|
|
289
|
+
display: inline-flex;
|
|
290
|
+
flex-wrap: wrap;
|
|
291
|
+
margin: 0;
|
|
292
|
+
padding: 0;
|
|
293
|
+
width: 100%;
|
|
294
|
+
list-style: none; }
|
|
295
|
+
.suggestions-tags li {
|
|
296
|
+
position: relative;
|
|
297
|
+
align-items: center;
|
|
298
|
+
margin: 0 8px 8px 0;
|
|
299
|
+
padding: 4px 12px;
|
|
300
|
+
border-radius: 2px;
|
|
301
|
+
border: 1px dashed #5D6D7E;
|
|
302
|
+
background: transparent;
|
|
303
|
+
color: #5D6D7E;
|
|
304
|
+
display: flex;
|
|
305
|
+
font-family: 'Roboto';
|
|
306
|
+
font-size: 14px;
|
|
307
|
+
line-height: 16.4px;
|
|
308
|
+
font-weight: 400;
|
|
309
|
+
list-style: none;
|
|
310
|
+
-webkit-user-select: none;
|
|
311
|
+
-moz-user-select: none;
|
|
312
|
+
user-select: none;
|
|
313
|
+
max-height: 24px; }
|
|
314
|
+
.suggestions-tags li:hover .filerobot-c-icon {
|
|
315
|
+
display: block; }
|
|
316
|
+
.suggestions-tags li .filerobot-c-icon {
|
|
317
|
+
display: none;
|
|
318
|
+
position: absolute;
|
|
319
|
+
top: 3px;
|
|
320
|
+
right: 3px;
|
|
321
|
+
width: 6px;
|
|
322
|
+
height: 6px;
|
|
323
|
+
color: #fff; }
|
|
324
|
+
.suggestions-tags li button {
|
|
325
|
+
align-items: center;
|
|
326
|
+
-webkit-appearance: none;
|
|
327
|
+
-moz-appearance: none;
|
|
328
|
+
appearance: none;
|
|
329
|
+
background: transparent;
|
|
330
|
+
border: none;
|
|
331
|
+
border-radius: 50%;
|
|
332
|
+
color: #768184;
|
|
333
|
+
cursor: pointer;
|
|
334
|
+
display: inline-flex;
|
|
335
|
+
font-size: 12px;
|
|
336
|
+
height: 15px;
|
|
337
|
+
justify-content: center;
|
|
338
|
+
line-height: 0;
|
|
339
|
+
margin-left: 8px;
|
|
340
|
+
padding: 0;
|
|
341
|
+
transform: rotate(45deg);
|
|
342
|
+
width: 15px; }
|
|
343
|
+
|
|
344
|
+
.no-suggestions {
|
|
345
|
+
color: #999;
|
|
346
|
+
padding: 0.5rem; }
|
|
347
|
+
|
|
348
|
+
.suggestions-title {
|
|
349
|
+
display: flex;
|
|
350
|
+
align-items: center;
|
|
351
|
+
font-size: 12px;
|
|
352
|
+
font-weight: 400;
|
|
353
|
+
padding: 4px 0; }
|
|
354
|
+
.suggestions-title svg {
|
|
355
|
+
margin-right: 4px; }
|
|
356
|
+
|
|
357
|
+
.post-upload-suggestion {
|
|
358
|
+
margin-left: 0;
|
|
359
|
+
width: 100%; }
|
|
360
|
+
|
|
361
|
+
.suggestion-active,
|
|
362
|
+
.suggestions li:hover {
|
|
363
|
+
cursor: pointer;
|
|
364
|
+
background: #5D6D7E;
|
|
365
|
+
color: #fff;
|
|
366
|
+
border: 1px solid #5D6D7E; }
|
|
367
|
+
|
|
368
|
+
.suggestion-loading {
|
|
369
|
+
display: flex;
|
|
370
|
+
height: 100px;
|
|
371
|
+
font-size: 1rem;
|
|
372
|
+
justify-content: center;
|
|
373
|
+
align-items: center; }
|
|
374
|
+
|
|
375
|
+
.filerobot-common-Checkbox-wrapper {
|
|
376
|
+
cursor: pointer;
|
|
377
|
+
display: flex;
|
|
378
|
+
align-items: center; }
|
|
379
|
+
|
|
380
|
+
.filerobot-common-Checkbox {
|
|
381
|
+
display: flex;
|
|
382
|
+
align-items: center;
|
|
383
|
+
justify-content: center;
|
|
384
|
+
min-height: 16px;
|
|
385
|
+
max-height: 16px;
|
|
386
|
+
min-width: 16px;
|
|
387
|
+
max-width: 16px;
|
|
388
|
+
margin-right: 12px;
|
|
389
|
+
background: #F8FAFB;
|
|
390
|
+
border: 1px solid #DFE7ED;
|
|
391
|
+
border-radius: 1px;
|
|
392
|
+
outline: none;
|
|
393
|
+
text-align: center;
|
|
394
|
+
cursor: pointer; }
|
|
395
|
+
|
|
396
|
+
.filerobot-common-Checkbox-label {
|
|
397
|
+
font-size: 12px;
|
|
398
|
+
line-height: 14px;
|
|
399
|
+
max-width: calc(100% - 16px);
|
|
400
|
+
overflow: hidden;
|
|
401
|
+
white-space: nowrap;
|
|
402
|
+
text-overflow: ellipsis; }
|
|
403
|
+
|
|
404
|
+
.filerobot-common-Tabs-wrapper {
|
|
405
|
+
display: flex;
|
|
406
|
+
width: 92%;
|
|
407
|
+
padding-left: 12px; }
|
|
408
|
+
|
|
409
|
+
.filerobot-common-Tabs {
|
|
410
|
+
display: flex;
|
|
411
|
+
border-bottom: 1px solid #DFE7ED;
|
|
412
|
+
border-top: 1px solid #DFE7ED;
|
|
413
|
+
background-color: #F8FAFB;
|
|
414
|
+
align-items: center; }
|
|
415
|
+
.filerobot-common-Tabs-panel {
|
|
416
|
+
position: relative;
|
|
417
|
+
margin-bottom: -1px;
|
|
418
|
+
font-size: 12px; }
|
|
419
|
+
.filerobot-common-Tabs-panel > input[type="radio"] {
|
|
420
|
+
position: absolute;
|
|
421
|
+
left: -200vw; }
|
|
422
|
+
.filerobot-common-Tabs-panel .bottom-line {
|
|
423
|
+
display: none;
|
|
424
|
+
position: absolute;
|
|
425
|
+
background: #6879EB;
|
|
426
|
+
bottom: 0;
|
|
427
|
+
left: 7px;
|
|
428
|
+
right: 7px;
|
|
429
|
+
height: 1px; }
|
|
430
|
+
.filerobot-common-Tabs-panel > label {
|
|
431
|
+
color: #5D6D7E;
|
|
432
|
+
position: relative;
|
|
433
|
+
display: flex;
|
|
434
|
+
padding: 7px;
|
|
435
|
+
border: 1px solid transparent;
|
|
436
|
+
border-top-left-radius: .10rem;
|
|
437
|
+
border-top-right-radius: .10rem;
|
|
438
|
+
cursor: pointer; }
|
|
439
|
+
.filerobot-common-Tabs-panel > label > svg {
|
|
440
|
+
margin-right: 8px;
|
|
441
|
+
height: 12px;
|
|
442
|
+
width: 12px; }
|
|
443
|
+
.filerobot-common-Tabs-panel:first-child > label {
|
|
444
|
+
padding-left: 0; }
|
|
445
|
+
.filerobot-common-Tabs-panel:first-child > label + .bottom-line {
|
|
446
|
+
left: 0; }
|
|
447
|
+
.filerobot-common-Tabs-panel > input:checked + label {
|
|
448
|
+
color: #6879EB; }
|
|
449
|
+
.filerobot-common-Tabs-panel > input:checked + label + .bottom-line {
|
|
450
|
+
display: block; }
|
|
451
|
+
.filerobot-common-Tabs .subtabs-wrapper {
|
|
452
|
+
padding: 12px 0; }
|
|
453
|
+
|
|
454
|
+
.filerobot-common-inputAndLabel {
|
|
455
|
+
margin-bottom: 16px; }
|
|
456
|
+
.filerobot-common-inputAndLabel-form-group {
|
|
457
|
+
margin-bottom: 19px; }
|
|
458
|
+
.filerobot-common-inputAndLabel-input-header {
|
|
459
|
+
font-size: 14px;
|
|
460
|
+
line-height: 16px;
|
|
461
|
+
font-weight: 400;
|
|
462
|
+
margin-bottom: 3px; }
|
|
463
|
+
.filerobot-common-inputAndLabel-header-links-label {
|
|
464
|
+
display: flex;
|
|
465
|
+
align-items: center;
|
|
466
|
+
color: #768A9F; }
|
|
467
|
+
.filerobot-common-inputAndLabel-input-text-wrapper {
|
|
468
|
+
position: relative;
|
|
469
|
+
width: 100%; }
|
|
470
|
+
.filerobot-common-inputAndLabel-input-text-wrapper input[type="time"]::-webkit-calendar-picker-indicator {
|
|
471
|
+
opacity: 0;
|
|
472
|
+
display: block;
|
|
473
|
+
width: 20px;
|
|
474
|
+
height: 20px;
|
|
475
|
+
z-index: 2;
|
|
476
|
+
margin-top: 2px;
|
|
477
|
+
cursor: pointer; }
|
|
478
|
+
.filerobot-common-inputAndLabel-input-text-wrapper-disable-icon input[type="date"]::-webkit-calendar-picker-indicator {
|
|
479
|
+
display: none; }
|
|
480
|
+
.filerobot-common-inputAndLabel-input-icon {
|
|
481
|
+
position: absolute;
|
|
482
|
+
top: 0;
|
|
483
|
+
right: 0;
|
|
484
|
+
margin: 6px;
|
|
485
|
+
cursor: pointer; }
|
|
486
|
+
.filerobot-common-inputAndLabel-input-text {
|
|
487
|
+
width: 100%;
|
|
488
|
+
font-size: 16px;
|
|
489
|
+
line-height: 18px;
|
|
490
|
+
padding: 10px 16px;
|
|
491
|
+
background-color: #fff;
|
|
492
|
+
border: 1px solid #CCD6DE;
|
|
493
|
+
border-radius: 4px;
|
|
494
|
+
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
|
495
|
+
cursor: auto;
|
|
496
|
+
font-family: 'Roboto';
|
|
497
|
+
font-weight: 400; }
|
|
498
|
+
.filerobot-common-inputAndLabel-input-text:focus {
|
|
499
|
+
background-color: #FFFFFF !important;
|
|
500
|
+
border: 1px solid #6879eb;
|
|
501
|
+
outline: none; }
|
|
502
|
+
.filerobot-common-inputAndLabel-input-text:hover {
|
|
503
|
+
background-color: #eff3f6; }
|
|
504
|
+
|
|
505
|
+
.filerobot-common-Spinner {
|
|
506
|
+
display: flex;
|
|
507
|
+
align-items: center;
|
|
508
|
+
justify-content: center;
|
|
509
|
+
margin-right: 6px; }
|
|
510
|
+
.filerobot-common-Spinner svg {
|
|
511
|
+
animation: rotating-spinner 2s linear infinite; }
|
|
512
|
+
|
|
513
|
+
.filerobot-common-Spinner-noMargin {
|
|
514
|
+
margin: 0; }
|
|
515
|
+
|
|
516
|
+
.filerobot-common-Spinner-filledCentered {
|
|
517
|
+
width: 100%;
|
|
518
|
+
height: 100%;
|
|
519
|
+
margin: 0;
|
|
520
|
+
padding: 8px; }
|
|
521
|
+
|
|
522
|
+
.filerobot-common-Spinner-spinnerContainer {
|
|
523
|
+
height: 100%;
|
|
524
|
+
width: 100%;
|
|
525
|
+
overflow: hidden;
|
|
526
|
+
display: flex;
|
|
527
|
+
justify-content: center;
|
|
528
|
+
align-items: center;
|
|
529
|
+
padding: 2px; }
|
|
530
|
+
.filerobot-common-Spinner-spinnerContainer svg {
|
|
531
|
+
width: 30px;
|
|
532
|
+
height: 30px; }
|
|
533
|
+
|
|
534
|
+
@keyframes rotating-spinner {
|
|
535
|
+
from {
|
|
536
|
+
transform: rotate(0deg); }
|
|
537
|
+
to {
|
|
538
|
+
transform: rotate(360deg); } }
|
|
539
|
+
|
|
540
|
+
.filerobot-common-ItemHoverTopOptions {
|
|
541
|
+
position: absolute;
|
|
542
|
+
top: 4%;
|
|
543
|
+
right: 3%;
|
|
544
|
+
bottom: 0;
|
|
545
|
+
display: flex;
|
|
546
|
+
visibility: hidden;
|
|
547
|
+
z-index: 3;
|
|
548
|
+
width: 100%;
|
|
549
|
+
justify-content: flex-end;
|
|
550
|
+
padding: 2px 4px 2px 24px;
|
|
551
|
+
align-items: flex-start;
|
|
552
|
+
pointer-events: none;
|
|
553
|
+
border-radius: inherit;
|
|
554
|
+
transition: all 100ms ease-in-out; }
|
|
555
|
+
.filerobot-common-ItemHoverTopOptions button {
|
|
556
|
+
min-width: 12px;
|
|
557
|
+
min-height: 16px;
|
|
558
|
+
padding: 4px 7px;
|
|
559
|
+
height: auto;
|
|
560
|
+
pointer-events: auto;
|
|
561
|
+
background: rgba(79, 98, 118, 0.7);
|
|
562
|
+
width: 24px;
|
|
563
|
+
height: 24px;
|
|
564
|
+
border-radius: 50%;
|
|
565
|
+
margin: 0 2px;
|
|
566
|
+
transition: all 100ms ease-in-out; }
|
|
567
|
+
.filerobot-common-ItemHoverTopOptions button svg * {
|
|
568
|
+
color: #fff;
|
|
569
|
+
fill: #fff; }
|
|
570
|
+
.filerobot-common-ItemHoverTopOptions button:hover {
|
|
571
|
+
background: #37414b; }
|
|
572
|
+
.filerobot-common-ItemHoverTopOptions button:hover svg * {
|
|
573
|
+
fill: #DFE7ED;
|
|
574
|
+
color: #DFE7ED; }
|
|
575
|
+
*:hover > .filerobot-common-ItemHoverTopOptions {
|
|
576
|
+
visibility: visible; }
|
|
577
|
+
.filerobot-common-ItemHoverTopOptions-disableHover {
|
|
578
|
+
display: flex;
|
|
579
|
+
visibility: visible; }
|
|
580
|
+
.filerobot-common-ItemHoverTopOptions-disableHover:hover {
|
|
581
|
+
background: none; }
|
|
582
|
+
|
|
583
|
+
.filerobot-common-DropFilesHereHint {
|
|
584
|
+
visibility: hidden;
|
|
585
|
+
position: absolute;
|
|
586
|
+
top: 0;
|
|
587
|
+
bottom: 0;
|
|
588
|
+
right: 0;
|
|
589
|
+
pointer-events: none;
|
|
590
|
+
left: 0;
|
|
591
|
+
width: 100%;
|
|
592
|
+
height: 100%;
|
|
593
|
+
z-index: 2000;
|
|
594
|
+
text-align: center;
|
|
595
|
+
color: #768184;
|
|
596
|
+
font-size: 24px;
|
|
597
|
+
line-height: 28px;
|
|
598
|
+
background-color: rgba(255, 255, 255, 0.9); }
|
|
599
|
+
.filerobot-common-DropFilesHereHint-inner {
|
|
600
|
+
display: flex;
|
|
601
|
+
flex-direction: column;
|
|
602
|
+
align-items: center;
|
|
603
|
+
justify-content: center;
|
|
604
|
+
position: absolute;
|
|
605
|
+
top: 7px;
|
|
606
|
+
right: 7px;
|
|
607
|
+
bottom: 7px;
|
|
608
|
+
left: 7px;
|
|
609
|
+
border: 1px dashed #5282DB;
|
|
610
|
+
border-radius: 3px; }
|
|
611
|
+
.filerobot-common-DropFilesHereHint-inner svg {
|
|
612
|
+
margin-bottom: 25px;
|
|
613
|
+
animation: 2s moving ease infinite; }
|
|
614
|
+
|
|
615
|
+
@keyframes moving {
|
|
616
|
+
0%,
|
|
617
|
+
100% {
|
|
618
|
+
transform: scale(1) translate(0, 0); }
|
|
619
|
+
50% {
|
|
620
|
+
transform: scale(1.1) translate(0, -10px); } }
|
|
621
|
+
[data-filerobot-theme="dark"] .filerobot-common-DropFilesHereHint {
|
|
622
|
+
color: #bbb;
|
|
623
|
+
border-color: #02baf2;
|
|
624
|
+
background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z' fill='%2302BAF2' fillRule='nonzero'/%3E%3C/svg%3E"); }
|
|
625
|
+
|
|
626
|
+
.filerobot-common-DropFilesTarget * {
|
|
627
|
+
pointer-events: none; }
|
|
628
|
+
|
|
629
|
+
.filerobot-common-DropFilesHereHint-visible {
|
|
630
|
+
visibility: visible; }
|
|
631
|
+
|
|
632
|
+
.filerobot-common-Search .filerobot-c-separator {
|
|
633
|
+
height: 70%;
|
|
634
|
+
margin: 0; }
|
|
635
|
+
|
|
636
|
+
.filerobot-common-Search-searchButton {
|
|
637
|
+
height: 100%;
|
|
638
|
+
padding: 12px;
|
|
639
|
+
padding-top: 10px;
|
|
640
|
+
cursor: pointer; }
|
|
641
|
+
|
|
642
|
+
.filerobot-common-Search {
|
|
643
|
+
display: flex;
|
|
644
|
+
position: relative;
|
|
645
|
+
height: 40px;
|
|
646
|
+
background: #fff;
|
|
647
|
+
border: 1px solid #DFE7ED;
|
|
648
|
+
border-radius: 4px;
|
|
649
|
+
align-items: center;
|
|
650
|
+
white-space: nowrap; }
|
|
651
|
+
|
|
652
|
+
.filerobot-common-Search:focus-within,
|
|
653
|
+
.filerobot-common-Search:active {
|
|
654
|
+
background-color: white !important; }
|
|
655
|
+
.filerobot-common-Search:focus-within .filerobot-common-Search-searchInput,
|
|
656
|
+
.filerobot-common-Search:active .filerobot-common-Search-searchInput {
|
|
657
|
+
background-color: white !important; }
|
|
658
|
+
|
|
659
|
+
.filerobot-common-Search-searchInput {
|
|
660
|
+
height: -moz-fit-content;
|
|
661
|
+
height: fit-content;
|
|
662
|
+
flex-grow: 1;
|
|
663
|
+
box-sizing: border-box;
|
|
664
|
+
display: flex;
|
|
665
|
+
align-items: center;
|
|
666
|
+
font-size: 14px;
|
|
667
|
+
outline: none;
|
|
668
|
+
border: none;
|
|
669
|
+
min-width: 24px;
|
|
670
|
+
width: 100%;
|
|
671
|
+
margin: 6px 0px; }
|
|
672
|
+
.filerobot-common-Search-searchInput button {
|
|
673
|
+
height: 100%; }
|
|
674
|
+
.filerobot-common-Search-searchInput .filerobot-common-TopBar-input-fragment {
|
|
675
|
+
display: inherit;
|
|
676
|
+
height: inherit;
|
|
677
|
+
width: inherit; }
|
|
678
|
+
.filerobot-common-Search-searchInput:focus {
|
|
679
|
+
outline: none; }
|
|
680
|
+
[data-filerobot-theme="dark"] .filerobot-common-Search-searchInput {
|
|
681
|
+
background-color: #1f1f1f; }
|
|
682
|
+
[data-filerobot-theme="dark"] .filerobot-common-Search-searchInput {
|
|
683
|
+
color: #fff; }
|
|
684
|
+
.filerobot-common-Search-searchInput::-moz-placeholder {
|
|
685
|
+
font-size: 14px;
|
|
686
|
+
font-style: normal;
|
|
687
|
+
font-weight: 400;
|
|
688
|
+
color: #A9B6C2; }
|
|
689
|
+
.filerobot-common-Search-searchInput::placeholder {
|
|
690
|
+
font-size: 14px;
|
|
691
|
+
font-style: normal;
|
|
692
|
+
font-weight: 400;
|
|
693
|
+
color: #A9B6C2; }
|
|
694
|
+
|
|
695
|
+
.filerobot-common-Search-searchAndAppendedOptions {
|
|
696
|
+
display: flex;
|
|
697
|
+
align-items: center;
|
|
698
|
+
height: 100%; }
|
|
699
|
+
|
|
700
|
+
.filerobot-common-Search-searchAndFiltersInputs {
|
|
701
|
+
position: relative;
|
|
702
|
+
display: flex;
|
|
703
|
+
align-items: center;
|
|
704
|
+
height: 100%;
|
|
705
|
+
max-height: 100%;
|
|
706
|
+
flex-grow: 1;
|
|
707
|
+
overflow: auto hidden;
|
|
708
|
+
white-space: nowrap;
|
|
709
|
+
-ms-overflow-style: none; }
|
|
710
|
+
|
|
711
|
+
.filerobot-common-PoweredBy-label {
|
|
712
|
+
border: 1px solid #DFE7ED;
|
|
713
|
+
border-bottom: 0;
|
|
714
|
+
background-color: #F8FAFB;
|
|
715
|
+
border-radius: 0;
|
|
716
|
+
color: #778285;
|
|
717
|
+
position: absolute;
|
|
718
|
+
right: 0;
|
|
719
|
+
bottom: 0;
|
|
720
|
+
padding: 4px 14px;
|
|
721
|
+
border-top-left-radius: 40px;
|
|
722
|
+
font-size: 10px;
|
|
723
|
+
-webkit-user-select: none;
|
|
724
|
+
-moz-user-select: none;
|
|
725
|
+
user-select: none;
|
|
726
|
+
z-index: 1001;
|
|
727
|
+
margin-right: -1px; }
|
|
728
|
+
|
|
729
|
+
.filerobot-common-secondaryTxt {
|
|
730
|
+
color: #939393;
|
|
731
|
+
font-size: 12px;
|
|
732
|
+
line-height: 14px; }
|
|
733
|
+
|
|
734
|
+
.filerobot-TransitionWrapper {
|
|
735
|
+
--translateX: 0;
|
|
736
|
+
--translateY-shown: 0;
|
|
737
|
+
--translateY-hidden: -105%;
|
|
738
|
+
display: none;
|
|
739
|
+
position: absolute;
|
|
740
|
+
top: 0;
|
|
741
|
+
background: #fff;
|
|
742
|
+
overflow-y: hidden; }
|
|
743
|
+
.filerobot-TransitionWrapper.--applied {
|
|
744
|
+
display: block;
|
|
745
|
+
z-index: 1002;
|
|
746
|
+
height: 100%;
|
|
747
|
+
width: 100%; }
|
|
748
|
+
|
|
749
|
+
.filerobot-transition-slideDownUp-enter {
|
|
750
|
+
opacity: 0.01;
|
|
751
|
+
transform: translate3d(var(--translateX), var(--translateY-hidden), 0);
|
|
752
|
+
transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out; }
|
|
753
|
+
|
|
754
|
+
.filerobot-transition-slideDownUp-enter.filerobot-transition-slideDownUp-enter-active {
|
|
755
|
+
opacity: 1;
|
|
756
|
+
transform: translate3d(var(--translateX), var(--translateY-shown), 0); }
|
|
757
|
+
|
|
758
|
+
.filerobot-transition-slideDownUp-leave {
|
|
759
|
+
opacity: 1;
|
|
760
|
+
transform: translate3d(var(--translateX), var(--translateY-shown), 0);
|
|
761
|
+
transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out; }
|
|
762
|
+
|
|
763
|
+
.filerobot-transition-slideDownUp-leave.filerobot-transition-slideDownUp-leave-active {
|
|
764
|
+
opacity: 0.01;
|
|
765
|
+
transform: translate3d(var(--translateX), var(--translateY-hidden), 0); }
|
|
766
|
+
|
|
767
|
+
.filerobot-common-datePicker {
|
|
768
|
+
position: relative; }
|
|
769
|
+
.filerobot-common-datePicker * {
|
|
770
|
+
-webkit-touch-callout: none;
|
|
771
|
+
/* iOS Safari */
|
|
772
|
+
-webkit-user-select: none;
|
|
773
|
+
/* Chrome/Safari/Opera */
|
|
774
|
+
/* Konqueror */
|
|
775
|
+
-moz-user-select: none;
|
|
776
|
+
/* Firefox */
|
|
777
|
+
/* Internet Explorer/Edge */
|
|
778
|
+
user-select: none;
|
|
779
|
+
/* Non-prefixed version, currently */ }
|
|
780
|
+
.filerobot-common-datePicker-overlay {
|
|
781
|
+
position: absolute;
|
|
782
|
+
top: 0;
|
|
783
|
+
left: 0;
|
|
784
|
+
right: 0;
|
|
785
|
+
bottom: 0; }
|
|
786
|
+
.filerobot-common-datePicker-input {
|
|
787
|
+
overflow: hidden; }
|
|
788
|
+
.filerobot-common-datePicker-input input {
|
|
789
|
+
cursor: pointer; }
|
|
790
|
+
.filerobot-common-datePicker-input input:focus {
|
|
791
|
+
outline: none; }
|
|
792
|
+
.filerobot-common-datePicker-container {
|
|
793
|
+
position: absolute;
|
|
794
|
+
width: 215px;
|
|
795
|
+
min-height: 200px;
|
|
796
|
+
max-height: 240px;
|
|
797
|
+
background: #fff;
|
|
798
|
+
box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
|
|
799
|
+
border-radius: 4px;
|
|
800
|
+
overflow: hidden;
|
|
801
|
+
padding: 12px 12px;
|
|
802
|
+
z-index: 11111111111111; }
|
|
803
|
+
.filerobot-common-datePicker-container-head {
|
|
804
|
+
display: flex;
|
|
805
|
+
align-items: center; }
|
|
806
|
+
.filerobot-common-datePicker-container-head-body {
|
|
807
|
+
float: left;
|
|
808
|
+
width: 120px;
|
|
809
|
+
height: 100%; }
|
|
810
|
+
.filerobot-common-datePicker-container-head-body-year {
|
|
811
|
+
width: 100%;
|
|
812
|
+
height: 30px;
|
|
813
|
+
font-size: 27px;
|
|
814
|
+
color: #5D6D7E;
|
|
815
|
+
font-weight: 200px;
|
|
816
|
+
text-align: center;
|
|
817
|
+
float: left; }
|
|
818
|
+
.filerobot-common-datePicker-container-head-body-month {
|
|
819
|
+
float: left;
|
|
820
|
+
width: 100%;
|
|
821
|
+
height: 15px;
|
|
822
|
+
font-size: 13px;
|
|
823
|
+
color: #5D6D7E;
|
|
824
|
+
font-weight: 200px;
|
|
825
|
+
text-align: center; }
|
|
826
|
+
.filerobot-common-datePicker-container-head-button {
|
|
827
|
+
width: 45px;
|
|
828
|
+
height: 100%;
|
|
829
|
+
box-sizing: border-box;
|
|
830
|
+
position: relative; }
|
|
831
|
+
.filerobot-common-datePicker-container-head-button-inner {
|
|
832
|
+
float: left;
|
|
833
|
+
height: 25px;
|
|
834
|
+
width: 25px;
|
|
835
|
+
background: #f4f4f4;
|
|
836
|
+
border-radius: 2px;
|
|
837
|
+
line-height: 35px;
|
|
838
|
+
text-align: center;
|
|
839
|
+
position: absolute;
|
|
840
|
+
top: 50%;
|
|
841
|
+
left: 50%;
|
|
842
|
+
margin-left: -17px;
|
|
843
|
+
margin-top: -17px; }
|
|
844
|
+
.filerobot-common-datePicker-container-head-button-inner:hover > span {
|
|
845
|
+
border-color: #555 !important; }
|
|
846
|
+
.filerobot-common-datePicker-container-head-button-inner:hover {
|
|
847
|
+
cursor: pointer;
|
|
848
|
+
background: #eee; }
|
|
849
|
+
.filerobot-common-datePicker-calendar {
|
|
850
|
+
width: 100%;
|
|
851
|
+
height: 100%; }
|
|
852
|
+
.filerobot-common-datePicker-calendar-body,
|
|
853
|
+
.filerobot-common-datePicker-calendar-day span, .filerobot-common-datePicker-calendar-day, .filerobot-common-datePicker-calendar-day-container {
|
|
854
|
+
position: relative;
|
|
855
|
+
display: block;
|
|
856
|
+
float: left;
|
|
857
|
+
box-sizing: border-box; }
|
|
858
|
+
.filerobot-common-datePicker-calendar-body {
|
|
859
|
+
height: 250px;
|
|
860
|
+
width: 100%; }
|
|
861
|
+
.filerobot-common-datePicker-calendar-day {
|
|
862
|
+
width: 14%;
|
|
863
|
+
height: 10%; }
|
|
864
|
+
.filerobot-common-datePicker-calendar-day-container {
|
|
865
|
+
width: 100%;
|
|
866
|
+
height: 100%;
|
|
867
|
+
font-size: 12px;
|
|
868
|
+
font-weight: 300;
|
|
869
|
+
color: #37414B;
|
|
870
|
+
text-align: center; }
|
|
871
|
+
.filerobot-common-datePicker-calendar-day-container span {
|
|
872
|
+
width: 25px;
|
|
873
|
+
height: 25px;
|
|
874
|
+
margin-top: -15px;
|
|
875
|
+
margin-left: -15px;
|
|
876
|
+
left: 50%;
|
|
877
|
+
top: 50%;
|
|
878
|
+
font-weight: 400;
|
|
879
|
+
border-radius: 2px;
|
|
880
|
+
line-height: 30px; }
|
|
881
|
+
.filerobot-common-datePicker-calendar-day-container span:hover {
|
|
882
|
+
cursor: pointer;
|
|
883
|
+
background: #E9EEF2; }
|
|
884
|
+
.filerobot-common-datePicker-calendar-day.disabled {
|
|
885
|
+
pointer-events: none; }
|
|
886
|
+
.filerobot-common-datePicker-calendar-day.disabled .filerobot-common-datePicker-calendar-day-container span {
|
|
887
|
+
color: #ddd; }
|
|
888
|
+
.filerobot-common-datePicker-calendar-day.disabled .filerobot-common-datePicker-calendar-day-container span {
|
|
889
|
+
background: #fff !important; }
|
|
890
|
+
.filerobot-common-datePicker-calendar-day.highlight .filerobot-common-datePicker-calendar-day-container span {
|
|
891
|
+
background: #5D6D7E; }
|
|
892
|
+
.filerobot-common-datePicker-calendar-day.highlight-green .filerobot-common-datePicker-calendar-day-container span {
|
|
893
|
+
background: #4958BC;
|
|
894
|
+
color: #fff; }
|
|
895
|
+
.filerobot-common-datePicker-calendar-head {
|
|
896
|
+
display: flex;
|
|
897
|
+
height: 20px;
|
|
898
|
+
width: 100%;
|
|
899
|
+
margin-top: 2px;
|
|
900
|
+
margin-bottom: 5px; }
|
|
901
|
+
.filerobot-common-datePicker-calendar-head-name {
|
|
902
|
+
width: 14.285%;
|
|
903
|
+
height: 30px;
|
|
904
|
+
line-height: 30px;
|
|
905
|
+
font-weight: 700;
|
|
906
|
+
color: #5D6D7E;
|
|
907
|
+
font-size: 9px;
|
|
908
|
+
text-align: center; }
|
|
909
|
+
|
|
910
|
+
.mdpchbi-right-arrows:after,
|
|
911
|
+
.mdpchbi-left-arrows:after,
|
|
912
|
+
.mdpchbi-right-arrow,
|
|
913
|
+
.mdpchbi-right-arrows,
|
|
914
|
+
.mdpchbi-left-arrow,
|
|
915
|
+
.mdpchbi-left-arrows {
|
|
916
|
+
display: block;
|
|
917
|
+
float: left;
|
|
918
|
+
width: 6px;
|
|
919
|
+
height: 6px;
|
|
920
|
+
border-left: 2px solid #888;
|
|
921
|
+
border-bottom: 2px solid #888;
|
|
922
|
+
position: absolute; }
|
|
923
|
+
|
|
924
|
+
.mdpchbi-right-arrow,
|
|
925
|
+
.mdpchbi-right-arrows,
|
|
926
|
+
.mdpchbi-left-arrow,
|
|
927
|
+
.mdpchbi-left-arrows {
|
|
928
|
+
transform: rotate(45deg);
|
|
929
|
+
left: 50%;
|
|
930
|
+
top: 50%;
|
|
931
|
+
margin-left: -2px;
|
|
932
|
+
margin-top: -4px; }
|
|
933
|
+
|
|
934
|
+
.mdpchbi-right-arrows,
|
|
935
|
+
.mdpchbi-right-arrow {
|
|
936
|
+
transform: rotate(225deg);
|
|
937
|
+
margin-left: -4px; }
|
|
938
|
+
|
|
939
|
+
.mdpchbi-right-arrows:after,
|
|
940
|
+
.mdpchbi-left-arrows:after {
|
|
941
|
+
content: ''; }
|
|
942
|
+
|
|
943
|
+
.mdpchbi-left-arrows {
|
|
944
|
+
margin-left: -5px; }
|
|
945
|
+
|
|
946
|
+
.mdpchbi-right-arrows {
|
|
947
|
+
margin-left: -2px; }
|
|
948
|
+
|
|
949
|
+
.mdpchbi-right-arrows:after,
|
|
950
|
+
.mdpchbi-left-arrows:after {
|
|
951
|
+
left: 3px;
|
|
952
|
+
top: -5px; }
|
|
953
|
+
|
|
954
|
+
.filerobot-ProviderBrowser-layoutType--grid ul.filerobot-ProviderBrowser-list::after {
|
|
955
|
+
content: '';
|
|
956
|
+
flex: auto; }
|
|
957
|
+
|
|
958
|
+
.filerobot-ProviderBrowser-layoutType--grid ul.filerobot-ProviderBrowser-list:focus {
|
|
959
|
+
outline: none; }
|
|
960
|
+
|
|
961
|
+
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-header {
|
|
962
|
+
display: flex;
|
|
963
|
+
align-items: center;
|
|
964
|
+
font-weight: 400;
|
|
965
|
+
width: 100%;
|
|
966
|
+
max-width: 130px;
|
|
967
|
+
padding: 0 12px;
|
|
968
|
+
margin-top: 12px;
|
|
969
|
+
cursor: pointer;
|
|
970
|
+
font-size: 12px; }
|
|
971
|
+
|
|
972
|
+
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-wrapper {
|
|
973
|
+
padding: 8px 24px 12px; }
|
|
974
|
+
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-wrapper-list {
|
|
975
|
+
list-style: none;
|
|
976
|
+
padding: 0;
|
|
977
|
+
width: 100%;
|
|
978
|
+
display: grid;
|
|
979
|
+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
|
|
980
|
+
|
|
981
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem {
|
|
982
|
+
min-width: 200px;
|
|
983
|
+
position: relative;
|
|
984
|
+
margin: 0; }
|
|
985
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem::before {
|
|
986
|
+
content: '';
|
|
987
|
+
padding-top: 88%;
|
|
988
|
+
display: block; }
|
|
989
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.item-folder .filerobot-ProviderBrowserItem-folderSelectBox, .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem.item-folder:hover .filerobot-ProviderBrowserItem-folderSelectBox {
|
|
990
|
+
display: flex; }
|
|
991
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.filerobot-ProviderBrowserItem--beingRenamed):hover .filerobot-Explorer-dots-menu-icon {
|
|
992
|
+
display: block; }
|
|
993
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder) {
|
|
994
|
+
outline: none;
|
|
995
|
+
border: 4px solid transparent; }
|
|
996
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder) {
|
|
997
|
+
border: 4px solid #000;
|
|
998
|
+
background-color: #4D4E4E; }
|
|
999
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):hover *,
|
|
1000
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):focus * {
|
|
1001
|
+
color: #000; }
|
|
1002
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder).no-selection .filerobot-ProviderBrowserItem-inner {
|
|
1003
|
+
cursor: auto; }
|
|
1004
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):not(.no-selection) .filerobot-ProviderBrowserItem-inner:hover {
|
|
1005
|
+
background-color: #EFF3F6; }
|
|
1006
|
+
|
|
1007
|
+
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-videoDuration {
|
|
1008
|
+
position: absolute;
|
|
1009
|
+
bottom: 33%;
|
|
1010
|
+
z-index: 2;
|
|
1011
|
+
background: rgba(79, 98, 118, 0.7);
|
|
1012
|
+
border-radius: 2px;
|
|
1013
|
+
left: 16px;
|
|
1014
|
+
padding: 2px 4px;
|
|
1015
|
+
text-align: center;
|
|
1016
|
+
font-weight: 500;
|
|
1017
|
+
line-height: 12px;
|
|
1018
|
+
font-size: 11px;
|
|
1019
|
+
box-shadow: 0px 1px 2px 0px rgba(77, 78, 78, 0.15);
|
|
1020
|
+
color: #fff !important; }
|
|
1021
|
+
|
|
1022
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-inner {
|
|
1023
|
+
background-color: #5D6D7E !important; }
|
|
1024
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-inner * {
|
|
1025
|
+
fill: #fff;
|
|
1026
|
+
color: #fff; }
|
|
1027
|
+
|
|
1028
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.with-meta input {
|
|
1029
|
+
text-align: center;
|
|
1030
|
+
color: #000 !important;
|
|
1031
|
+
margin-top: 4px;
|
|
1032
|
+
margin-bottom: -1px; }
|
|
1033
|
+
|
|
1034
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.with-meta button.filerobot-ProviderBrowserItem-inner:focus {
|
|
1035
|
+
box-shadow: none !important; }
|
|
1036
|
+
|
|
1037
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-Explorer-Item-fileInfoAndButtons {
|
|
1038
|
+
background-color: inherit; }
|
|
1039
|
+
|
|
1040
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview .filerobot-ProviderBrowserItem-inner {
|
|
1041
|
+
background-color: rgba(147, 147, 147, 0.2); }
|
|
1042
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview .filerobot-ProviderBrowserItem-inner {
|
|
1043
|
+
background-color: rgba(234, 234, 234, 0.2); }
|
|
1044
|
+
|
|
1045
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview svg {
|
|
1046
|
+
fill: rgba(0, 0, 0, 0.7);
|
|
1047
|
+
width: 30%;
|
|
1048
|
+
height: 30%; }
|
|
1049
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview svg {
|
|
1050
|
+
fill: rgba(255, 255, 255, 0.8); }
|
|
1051
|
+
|
|
1052
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner {
|
|
1053
|
+
overflow: hidden;
|
|
1054
|
+
position: absolute;
|
|
1055
|
+
text-align: center;
|
|
1056
|
+
top: 0;
|
|
1057
|
+
left: 0;
|
|
1058
|
+
width: 100%;
|
|
1059
|
+
height: 100%;
|
|
1060
|
+
border-radius: 2px;
|
|
1061
|
+
box-shadow: 0px 1px 2px 0px rgba(77, 78, 78, 0.15);
|
|
1062
|
+
background-color: #EFF3F6; }
|
|
1063
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner:focus {
|
|
1064
|
+
outline: none; }
|
|
1065
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta {
|
|
1066
|
+
display: flex;
|
|
1067
|
+
flex-direction: column-reverse;
|
|
1068
|
+
align-items: center;
|
|
1069
|
+
justify-content: flex-end; }
|
|
1070
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta:focus {
|
|
1071
|
+
box-shadow: none; }
|
|
1072
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta img {
|
|
1073
|
+
-o-object-fit: contain;
|
|
1074
|
+
object-fit: contain;
|
|
1075
|
+
width: 100%;
|
|
1076
|
+
height: 100%;
|
|
1077
|
+
max-width: 100%;
|
|
1078
|
+
max-height: 100%; }
|
|
1079
|
+
|
|
1080
|
+
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-fakeCheckbox {
|
|
1081
|
+
display: none;
|
|
1082
|
+
position: absolute;
|
|
1083
|
+
z-index: 3;
|
|
1084
|
+
top: 8px;
|
|
1085
|
+
left: 8px; }
|
|
1086
|
+
|
|
1087
|
+
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-folderSelectBox {
|
|
1088
|
+
top: 26px;
|
|
1089
|
+
left: 14px;
|
|
1090
|
+
position: absolute;
|
|
1091
|
+
display: none; }
|
|
1092
|
+
|
|
1093
|
+
.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-fakeCheckbox {
|
|
1094
|
+
display: block; }
|
|
1095
|
+
|
|
1096
|
+
*:hover > .filerobot-ProviderBrowserItem-fakeCheckbox {
|
|
1097
|
+
display: block; }
|
|
1098
|
+
|
|
1099
|
+
.filerobot-Dragging-folders > *,
|
|
1100
|
+
.filerobot-Dragging-files > * {
|
|
1101
|
+
pointer-events: none; }
|
|
1102
|
+
|
|
1103
|
+
.filerobot-ProviderBrowser-layoutType--list,
|
|
1104
|
+
.filerobot-ProviderBrowser-layoutType--tiles {
|
|
1105
|
+
background-color: #fff; }
|
|
1106
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-layoutType--list, [data-filerobot-theme="dark"]
|
|
1107
|
+
.filerobot-ProviderBrowser-layoutType--tiles {
|
|
1108
|
+
background-color: #1f1f1f; }
|
|
1109
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell,
|
|
1110
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell {
|
|
1111
|
+
text-overflow: ellipsis;
|
|
1112
|
+
white-space: nowrap;
|
|
1113
|
+
overflow: hidden;
|
|
1114
|
+
white-space: nowrap;
|
|
1115
|
+
text-align: left;
|
|
1116
|
+
cursor: pointer;
|
|
1117
|
+
font-size: 14px;
|
|
1118
|
+
flex: 0.5 0; }
|
|
1119
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell-cursor-default,
|
|
1120
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-cursor-default {
|
|
1121
|
+
cursor: default !important; }
|
|
1122
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell-icon,
|
|
1123
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon {
|
|
1124
|
+
max-width: 24px;
|
|
1125
|
+
min-width: 20px; }
|
|
1126
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn,
|
|
1127
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn {
|
|
1128
|
+
display: flex;
|
|
1129
|
+
align-items: center;
|
|
1130
|
+
flex: 1 0; }
|
|
1131
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn input, .filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn label,
|
|
1132
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn input,
|
|
1133
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn label {
|
|
1134
|
+
width: 80%; }
|
|
1135
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn label,
|
|
1136
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn label {
|
|
1137
|
+
text-overflow: ellipsis;
|
|
1138
|
+
white-space: nowrap;
|
|
1139
|
+
overflow: hidden; }
|
|
1140
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowser-list,
|
|
1141
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowser-list {
|
|
1142
|
+
outline: none; }
|
|
1143
|
+
.filerobot-ProviderBrowser-layoutType--list li.filerobot-ProviderBrowserItem,
|
|
1144
|
+
.filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
|
|
1145
|
+
outline: none;
|
|
1146
|
+
display: flex;
|
|
1147
|
+
align-items: center;
|
|
1148
|
+
padding: 11px 12px;
|
|
1149
|
+
margin: 0;
|
|
1150
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
|
|
1151
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-layoutType--list li.filerobot-ProviderBrowserItem, [data-filerobot-theme="dark"]
|
|
1152
|
+
.filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
|
|
1153
|
+
color: #eaeaea; }
|
|
1154
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowser-body,
|
|
1155
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowser-body {
|
|
1156
|
+
width: 100%;
|
|
1157
|
+
overflow-x: auto; }
|
|
1158
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header,
|
|
1159
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header {
|
|
1160
|
+
text-overflow: ellipsis;
|
|
1161
|
+
white-space: nowrap;
|
|
1162
|
+
overflow: hidden;
|
|
1163
|
+
display: flex;
|
|
1164
|
+
align-items: center;
|
|
1165
|
+
text-align: left;
|
|
1166
|
+
padding: 12px;
|
|
1167
|
+
font-weight: 400;
|
|
1168
|
+
font-size: 14px;
|
|
1169
|
+
line-height: 16px;
|
|
1170
|
+
border-bottom: 1.5px solid rgba(0, 0, 0, 0.07);
|
|
1171
|
+
position: sticky;
|
|
1172
|
+
top: -1px;
|
|
1173
|
+
background-color: #fff;
|
|
1174
|
+
z-index: 11; }
|
|
1175
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header:last-child,
|
|
1176
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header:last-child {
|
|
1177
|
+
margin-right: 0; }
|
|
1178
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header .filerobot-c-icon,
|
|
1179
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header .filerobot-c-icon {
|
|
1180
|
+
vertical-align: middle; }
|
|
1181
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-wrapper-list,
|
|
1182
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-wrapper-list {
|
|
1183
|
+
padding: 0; }
|
|
1184
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-fakeCheckbox,
|
|
1185
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-fakeCheckbox {
|
|
1186
|
+
margin-right: 8px;
|
|
1187
|
+
vertical-align: middle; }
|
|
1188
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem,
|
|
1189
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem {
|
|
1190
|
+
color: #4D4E4E; }
|
|
1191
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner,
|
|
1192
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner {
|
|
1193
|
+
text-overflow: ellipsis;
|
|
1194
|
+
white-space: nowrap;
|
|
1195
|
+
overflow: hidden;
|
|
1196
|
+
display: flex;
|
|
1197
|
+
align-items: center;
|
|
1198
|
+
width: 100%;
|
|
1199
|
+
line-height: 1.3;
|
|
1200
|
+
outline: none; }
|
|
1201
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner input,
|
|
1202
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner input {
|
|
1203
|
+
height: 17px; }
|
|
1204
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner img, .filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner svg,
|
|
1205
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner img,
|
|
1206
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner svg {
|
|
1207
|
+
max-width: 20px;
|
|
1208
|
+
max-height: 20px; }
|
|
1209
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem--selected,
|
|
1210
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem--selected {
|
|
1211
|
+
background: #5D6D7E;
|
|
1212
|
+
color: #fff;
|
|
1213
|
+
border-bottom: 1px solid #DFE7ED !important; }
|
|
1214
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem--selected svg path,
|
|
1215
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem--selected svg path {
|
|
1216
|
+
fill: #DFE7ED; }
|
|
1217
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-listHead-checkbox,
|
|
1218
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-listHead-checkbox {
|
|
1219
|
+
min-width: 16px; }
|
|
1220
|
+
|
|
1221
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-common-Checkbox {
|
|
1222
|
+
margin-right: 8px; }
|
|
1223
|
+
|
|
1224
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header .filerobot-Provider-list-cell-icon {
|
|
1225
|
+
display: flex;
|
|
1226
|
+
padding-left: 2px; }
|
|
1227
|
+
|
|
1228
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header {
|
|
1229
|
+
padding: 11px 12px; }
|
|
1230
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header .filerobot-Provider-list-cell-icon {
|
|
1231
|
+
display: flex;
|
|
1232
|
+
padding-left: 4px;
|
|
1233
|
+
margin-left: 4px; }
|
|
1234
|
+
|
|
1235
|
+
.filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
|
|
1236
|
+
padding: 11px 12px; }
|
|
1237
|
+
|
|
1238
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon {
|
|
1239
|
+
max-width: 36px;
|
|
1240
|
+
min-width: 36px;
|
|
1241
|
+
margin-right: 8px; }
|
|
1242
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon svg:not(.context-menu-icon), .filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon img {
|
|
1243
|
+
width: 36px;
|
|
1244
|
+
max-width: 36px;
|
|
1245
|
+
max-height: 36px; }
|
|
1246
|
+
|
|
1247
|
+
.filerobot-Explorer-Details-header {
|
|
1248
|
+
display: flex;
|
|
1249
|
+
align-items: center;
|
|
1250
|
+
margin-left: 30px;
|
|
1251
|
+
font-size: 12px; }
|
|
1252
|
+
.filerobot-Explorer-Details-header-icon {
|
|
1253
|
+
margin-left: 6px; }
|
|
1254
|
+
.filerobot-Explorer-Details-header-title {
|
|
1255
|
+
margin-top: 12px;
|
|
1256
|
+
display: flex;
|
|
1257
|
+
align-items: center;
|
|
1258
|
+
max-width: 90%; }
|
|
1259
|
+
.filerobot-Explorer-Details-header-title label {
|
|
1260
|
+
text-overflow: ellipsis;
|
|
1261
|
+
white-space: nowrap;
|
|
1262
|
+
overflow: hidden; }
|
|
1263
|
+
|
|
1264
|
+
.filerobot-Explorer-Details-tabs {
|
|
1265
|
+
display: flex;
|
|
1266
|
+
padding: 0 8px;
|
|
1267
|
+
margin-top: 8px;
|
|
1268
|
+
font-size: 12px;
|
|
1269
|
+
cursor: pointer; }
|
|
1270
|
+
.filerobot-Explorer-Details-tabs-details, .filerobot-Explorer-Details-tabs-comments {
|
|
1271
|
+
display: flex;
|
|
1272
|
+
justify-content: center;
|
|
1273
|
+
align-items: center;
|
|
1274
|
+
width: 50%;
|
|
1275
|
+
height: 30px;
|
|
1276
|
+
color: #4D4E4E;
|
|
1277
|
+
border: 1px solid transparent;
|
|
1278
|
+
border-top-left-radius: .10rem;
|
|
1279
|
+
border-top-right-radius: .10rem; }
|
|
1280
|
+
.filerobot-Explorer-Details-tabs-details label, .filerobot-Explorer-Details-tabs-comments label {
|
|
1281
|
+
width: 100%;
|
|
1282
|
+
height: 100%;
|
|
1283
|
+
display: flex;
|
|
1284
|
+
align-items: center;
|
|
1285
|
+
justify-content: center;
|
|
1286
|
+
cursor: pointer; }
|
|
1287
|
+
.filerobot-Explorer-Details-tabs-details label:hover, .filerobot-Explorer-Details-tabs-comments label:hover {
|
|
1288
|
+
margin-bottom: -1px;
|
|
1289
|
+
border-bottom: 2px solid #6879EB;
|
|
1290
|
+
background-color: #F8FAFB;
|
|
1291
|
+
color: #6879EB; }
|
|
1292
|
+
.filerobot-Explorer-Details-tabs-details > input[type="radio"], .filerobot-Explorer-Details-tabs-comments > input[type="radio"] {
|
|
1293
|
+
position: absolute;
|
|
1294
|
+
left: -200vw; }
|
|
1295
|
+
.filerobot-Explorer-Details-tabs-details > input:checked + label, .filerobot-Explorer-Details-tabs-comments > input:checked + label {
|
|
1296
|
+
margin-bottom: -1px;
|
|
1297
|
+
border-bottom: 2px solid #6879EB;
|
|
1298
|
+
background-color: #F8FAFB;
|
|
1299
|
+
color: #6879EB; }
|
|
1300
|
+
|
|
1301
|
+
.filerobot-Explorer-Details-icon-preview {
|
|
1302
|
+
display: flex;
|
|
1303
|
+
justify-content: center;
|
|
1304
|
+
margin-top: 8px;
|
|
1305
|
+
margin-bottom: 21px; }
|
|
1306
|
+
|
|
1307
|
+
.filerobot-Explorer-Details-file-preview {
|
|
1308
|
+
margin: 8px 5px 12px 8px;
|
|
1309
|
+
height: 146px;
|
|
1310
|
+
position: relative; }
|
|
1311
|
+
.filerobot-Explorer-Details-file-preview:hover .filerobot-Explorer-Details-thumbnailZoomOverlay {
|
|
1312
|
+
display: flex; }
|
|
1313
|
+
|
|
1314
|
+
.filerobot-Explorer-Details-thumbnail {
|
|
1315
|
+
position: relative;
|
|
1316
|
+
z-index: 1;
|
|
1317
|
+
width: 100%;
|
|
1318
|
+
height: 100%;
|
|
1319
|
+
max-width: 100%;
|
|
1320
|
+
max-height: 100%;
|
|
1321
|
+
-o-object-fit: contain;
|
|
1322
|
+
object-fit: contain; }
|
|
1323
|
+
|
|
1324
|
+
.filerobot-Explorer-Details-info {
|
|
1325
|
+
font-size: 12px;
|
|
1326
|
+
margin: 0;
|
|
1327
|
+
padding: 0;
|
|
1328
|
+
margin-top: 12px;
|
|
1329
|
+
padding-left: 12px; }
|
|
1330
|
+
.filerobot-Explorer-Details-info-list {
|
|
1331
|
+
display: flex;
|
|
1332
|
+
list-style: none;
|
|
1333
|
+
margin-bottom: 8px; }
|
|
1334
|
+
.filerobot-Explorer-Details-info-list-name {
|
|
1335
|
+
display: flex;
|
|
1336
|
+
font-weight: 400;
|
|
1337
|
+
width: 68px;
|
|
1338
|
+
padding-right: 2px;
|
|
1339
|
+
color: #768184; }
|
|
1340
|
+
.filerobot-Explorer-Details-info-list-name > span {
|
|
1341
|
+
text-overflow: ellipsis;
|
|
1342
|
+
white-space: nowrap;
|
|
1343
|
+
overflow: hidden; }
|
|
1344
|
+
.filerobot-Explorer-Details-info-list-value {
|
|
1345
|
+
display: inline-block;
|
|
1346
|
+
color: #4D4E4E;
|
|
1347
|
+
font-weight: 400;
|
|
1348
|
+
width: calc(100% - 68px); }
|
|
1349
|
+
|
|
1350
|
+
.filerobot-Explorer-Details-section {
|
|
1351
|
+
margin-top: 8px;
|
|
1352
|
+
padding-top: 12px;
|
|
1353
|
+
margin-right: 12px;
|
|
1354
|
+
margin-left: 12px;
|
|
1355
|
+
font-size: 12px;
|
|
1356
|
+
border-top: 1px solid #DFE7ED; }
|
|
1357
|
+
.filerobot-Explorer-Details-section-header {
|
|
1358
|
+
display: flex;
|
|
1359
|
+
justify-content: space-between;
|
|
1360
|
+
align-items: center;
|
|
1361
|
+
margin-bottom: 9px;
|
|
1362
|
+
padding-right: 5px; }
|
|
1363
|
+
.filerobot-Explorer-Details-section-header-title {
|
|
1364
|
+
color: #768184; }
|
|
1365
|
+
.filerobot-Explorer-Details-section-content-list {
|
|
1366
|
+
display: inline-flex;
|
|
1367
|
+
flex-wrap: wrap;
|
|
1368
|
+
margin: 0;
|
|
1369
|
+
padding: 0;
|
|
1370
|
+
width: 100%;
|
|
1371
|
+
list-style: none; }
|
|
1372
|
+
.filerobot-Explorer-Details-section-content-list li {
|
|
1373
|
+
position: relative;
|
|
1374
|
+
display: flex;
|
|
1375
|
+
align-items: center;
|
|
1376
|
+
margin: 0 5px 5px 0;
|
|
1377
|
+
padding: 4px 6px;
|
|
1378
|
+
border-radius: 2px;
|
|
1379
|
+
color: #4D4E4E;
|
|
1380
|
+
background: #F8FAFB;
|
|
1381
|
+
font-family: 'Roboto';
|
|
1382
|
+
font-weight: 400; }
|
|
1383
|
+
|
|
1384
|
+
.filerobot-Explorer-Details-thumbnailZoomOverlay {
|
|
1385
|
+
position: absolute;
|
|
1386
|
+
display: none;
|
|
1387
|
+
align-items: center;
|
|
1388
|
+
justify-content: center;
|
|
1389
|
+
width: 100%;
|
|
1390
|
+
height: 100%;
|
|
1391
|
+
background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 100%);
|
|
1392
|
+
-webkit-user-select: none;
|
|
1393
|
+
-moz-user-select: none;
|
|
1394
|
+
user-select: none;
|
|
1395
|
+
z-index: 111; }
|
|
1396
|
+
|
|
1397
|
+
.filerobot-Explorer-Details-thumbnailZoomOverlayButton {
|
|
1398
|
+
width: 100%;
|
|
1399
|
+
height: 100%; }
|
|
1400
|
+
.filerobot-Explorer-Details-thumbnailZoomOverlayButton:hover {
|
|
1401
|
+
background: transparent !important; }
|
|
1402
|
+
.filerobot-Explorer-Details-thumbnailZoomOverlayButton:active:before {
|
|
1403
|
+
opacity: 0.5 !important; }
|
|
1404
|
+
|
|
1405
|
+
.filerobot-ProviderBrowser {
|
|
1406
|
+
display: flex;
|
|
1407
|
+
flex-direction: column;
|
|
1408
|
+
flex: 1;
|
|
1409
|
+
font-size: 14px;
|
|
1410
|
+
font-weight: 400;
|
|
1411
|
+
height: 100%;
|
|
1412
|
+
position: relative;
|
|
1413
|
+
background-color: #fff; }
|
|
1414
|
+
|
|
1415
|
+
.filerobot-ProviderBrowser-user {
|
|
1416
|
+
margin: 0 8px 0 0;
|
|
1417
|
+
font-weight: 500;
|
|
1418
|
+
color: #333; }
|
|
1419
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-user {
|
|
1420
|
+
color: #eaeaea; }
|
|
1421
|
+
|
|
1422
|
+
.filerobot-ProviderBrowser-select {
|
|
1423
|
+
cursor: pointer;
|
|
1424
|
+
line-height: 1.5;
|
|
1425
|
+
color: #000; }
|
|
1426
|
+
.filerobot-ProviderBrowser-select.--filter {
|
|
1427
|
+
max-width: 120px;
|
|
1428
|
+
white-space: nowrap;
|
|
1429
|
+
text-overflow: ellipsis;
|
|
1430
|
+
overflow: hidden;
|
|
1431
|
+
padding-right: 2px; }
|
|
1432
|
+
.filerobot-ProviderBrowser-select:focus {
|
|
1433
|
+
outline: none;
|
|
1434
|
+
border-color: transparent; }
|
|
1435
|
+
|
|
1436
|
+
.filerobot-ProviderBrowser-user:after {
|
|
1437
|
+
content: '\00B7';
|
|
1438
|
+
position: relative;
|
|
1439
|
+
left: 4px;
|
|
1440
|
+
color: #939393;
|
|
1441
|
+
font-weight: normal; }
|
|
1442
|
+
|
|
1443
|
+
.filerobot-ProviderBrowser-headerBar--simple {
|
|
1444
|
+
text-align: center;
|
|
1445
|
+
display: block;
|
|
1446
|
+
justify-content: center; }
|
|
1447
|
+
|
|
1448
|
+
.filerobot-ProviderBrowser-headerBar {
|
|
1449
|
+
display: flex;
|
|
1450
|
+
align-items: center;
|
|
1451
|
+
padding: 12px;
|
|
1452
|
+
color: #757575;
|
|
1453
|
+
line-height: 1.4;
|
|
1454
|
+
font-size: 12px;
|
|
1455
|
+
position: relative;
|
|
1456
|
+
width: 100%; }
|
|
1457
|
+
.filerobot-size--md .filerobot-ProviderBrowser-headerBar {
|
|
1458
|
+
display: flex;
|
|
1459
|
+
align-items: center;
|
|
1460
|
+
justify-content: space-between; }
|
|
1461
|
+
.filerobot-size--height-md .filerobot-ProviderBrowser-headerBar {
|
|
1462
|
+
display: flex;
|
|
1463
|
+
align-items: center; }
|
|
1464
|
+
[data-filerobot-theme="dark"] .filerobot-ProviderBrowser-headerBar {
|
|
1465
|
+
border-bottom: 1px solid #333;
|
|
1466
|
+
background-color: #1f1f1f; }
|
|
1467
|
+
|
|
1468
|
+
.filerobot-ProviderBrowser-headerBar--simple {
|
|
1469
|
+
text-align: center;
|
|
1470
|
+
display: block;
|
|
1471
|
+
justify-content: center; }
|
|
1472
|
+
|
|
1473
|
+
.filerobot-ProviderBrowser-body {
|
|
1474
|
+
flex: 1;
|
|
1475
|
+
z-index: 1000;
|
|
1476
|
+
position: relative;
|
|
1477
|
+
display: flex;
|
|
1478
|
+
height: 100%; }
|
|
1479
|
+
|
|
1480
|
+
.filerobot-ProviderBrowser-body-list {
|
|
1481
|
+
width: 100%;
|
|
1482
|
+
overflow-x: auto; }
|
|
1483
|
+
|
|
1484
|
+
.item-folder.filerobot-ProviderBrowserItem {
|
|
1485
|
+
padding: 4px;
|
|
1486
|
+
border-radius: 7px;
|
|
1487
|
+
outline: none; }
|
|
1488
|
+
.item-folder.filerobot-ProviderBrowserItem::before {
|
|
1489
|
+
content: unset !important;
|
|
1490
|
+
display: none !important;
|
|
1491
|
+
padding-top: 0 !important; }
|
|
1492
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder {
|
|
1493
|
+
display: flex;
|
|
1494
|
+
align-items: center;
|
|
1495
|
+
padding: 10px 12px;
|
|
1496
|
+
border: 1px solid #DFE7ED;
|
|
1497
|
+
border-radius: 2px;
|
|
1498
|
+
box-sizing: border-box;
|
|
1499
|
+
width: 100%;
|
|
1500
|
+
height: 36px;
|
|
1501
|
+
outline: none; }
|
|
1502
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder .filerobot-ProviderBrowserItem-folderLiIcon > * {
|
|
1503
|
+
width: 20px;
|
|
1504
|
+
height: 20px; }
|
|
1505
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder input {
|
|
1506
|
+
width: 96%; }
|
|
1507
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder .filerobot-Explorer-dots-menu-icon {
|
|
1508
|
+
display: none; }
|
|
1509
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder-title {
|
|
1510
|
+
flex-grow: 1;
|
|
1511
|
+
font-weight: 500;
|
|
1512
|
+
white-space: nowrap;
|
|
1513
|
+
text-overflow: ellipsis;
|
|
1514
|
+
overflow: hidden;
|
|
1515
|
+
font-size: 14px;
|
|
1516
|
+
line-height: 16px;
|
|
1517
|
+
color: #4D4E4E;
|
|
1518
|
+
margin-left: 8px; }
|
|
1519
|
+
.item-folder.filerobot-ProviderBrowserItem button.filerobot-ProviderBrowserItem-inner-folder:hover {
|
|
1520
|
+
background-color: #EFF3F6; }
|
|
1521
|
+
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder {
|
|
1522
|
+
background-color: #5D6D7E !important;
|
|
1523
|
+
outline: none; }
|
|
1524
|
+
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder input {
|
|
1525
|
+
color: #000;
|
|
1526
|
+
width: 96%; }
|
|
1527
|
+
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder * {
|
|
1528
|
+
fill: #DFE7ED;
|
|
1529
|
+
color: #fff; }
|
|
1530
|
+
|
|
1531
|
+
.filerobot-ProviderBrowserItem-inner {
|
|
1532
|
+
cursor: pointer;
|
|
1533
|
+
font-weight: 400;
|
|
1534
|
+
font-size: 14px;
|
|
1535
|
+
line-height: 16px; }
|
|
1536
|
+
|
|
1537
|
+
.filerobot-Provider-list-cell-header-title {
|
|
1538
|
+
white-space: nowrap;
|
|
1539
|
+
overflow: hidden;
|
|
1540
|
+
text-overflow: ellipsis; }
|
|
1541
|
+
|
|
1542
|
+
.filerobot-Provider-list-cell-header-hidableIcon {
|
|
1543
|
+
visibility: hidden; }
|
|
1544
|
+
|
|
1545
|
+
.filerobot-Provider-list-cell-wrapper {
|
|
1546
|
+
font-size: 12px;
|
|
1547
|
+
display: flex;
|
|
1548
|
+
align-items: center; }
|
|
1549
|
+
.filerobot-Provider-list-cell-wrapper:hover .filerobot-Provider-list-cell-header-hidableIcon {
|
|
1550
|
+
visibility: visible; }
|
|
1551
|
+
|
|
1552
|
+
.filerobot-ProviderBrowser-mainContent {
|
|
1553
|
+
flex-grow: 1;
|
|
1554
|
+
overflow: hidden;
|
|
1555
|
+
overflow-x: auto;
|
|
1556
|
+
-webkit-overflow-scrolling: touch;
|
|
1557
|
+
position: relative; }
|
|
1558
|
+
|
|
1559
|
+
.filerobot-ProviderBrowserItem--draggable-block {
|
|
1560
|
+
position: sticky;
|
|
1561
|
+
top: 0;
|
|
1562
|
+
width: 1px;
|
|
1563
|
+
height: 100%;
|
|
1564
|
+
cursor: col-resize;
|
|
1565
|
+
z-index: 100;
|
|
1566
|
+
background: #DFE7ED; }
|
|
1567
|
+
|
|
1568
|
+
.filerobot-ProviderBrowserItem-SideNav-addNew {
|
|
1569
|
+
color: #5D6D7E;
|
|
1570
|
+
font-weight: 500;
|
|
1571
|
+
cursor: pointer; }
|
|
1572
|
+
|
|
1573
|
+
.filerobot-ProviderBrowser-body-sideButtons {
|
|
1574
|
+
min-width: 40px;
|
|
1575
|
+
max-width: 40px; }
|
|
1576
|
+
|
|
1577
|
+
.filerobot-ProviderBrowser-body-leftSideButtons {
|
|
1578
|
+
margin-right: 20px; }
|
|
1579
|
+
|
|
1580
|
+
.filerobot-ProviderBrowser-body-leftNavigationButton {
|
|
1581
|
+
background: #F8FAFB;
|
|
1582
|
+
box-shadow: 0px 1px 4px rgba(77, 78, 78, 0.15);
|
|
1583
|
+
border-radius: 0px 50px 50px 0px;
|
|
1584
|
+
padding: 10px 14px 10px 10px;
|
|
1585
|
+
margin-top: 10px;
|
|
1586
|
+
width: 100%;
|
|
1587
|
+
position: sticky;
|
|
1588
|
+
top: 91px; }
|
|
1589
|
+
|
|
1590
|
+
.filerobot-ProviderBrowser-body-rightSideButtons {
|
|
1591
|
+
margin-left: 20px; }
|
|
1592
|
+
|
|
1593
|
+
.filerobot-ProviderBrowser-body-rightNavigationButton {
|
|
1594
|
+
background: #F8FAFB;
|
|
1595
|
+
box-shadow: 0px 1px 4px rgba(77, 78, 78, 0.15);
|
|
1596
|
+
border-radius: 50px 0px 0px 50px;
|
|
1597
|
+
padding: 10px 10px 10px 14px;
|
|
1598
|
+
margin-top: 10px;
|
|
1599
|
+
width: 100%;
|
|
1600
|
+
position: sticky;
|
|
1601
|
+
top: 91px; }
|
|
1602
|
+
|
|
1603
|
+
.filerobot-Provider-LabelsListLi-selectMode,
|
|
1604
|
+
.filerobot-Provider-LabelsListLi-selectMode * {
|
|
1605
|
+
cursor: pointer; }
|
|
1606
|
+
|
|
1607
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions {
|
|
1608
|
+
bottom: 4%;
|
|
1609
|
+
right: 3%;
|
|
1610
|
+
top: auto; }
|
|
1611
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected {
|
|
1612
|
+
display: flex;
|
|
1613
|
+
visibility: visible; }
|
|
1614
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button {
|
|
1615
|
+
background: #fff; }
|
|
1616
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active) svg * {
|
|
1617
|
+
color: #6879EB;
|
|
1618
|
+
fill: #6879EB; }
|
|
1619
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active):hover {
|
|
1620
|
+
background: #EFF3F6; }
|
|
1621
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active):hover svg * {
|
|
1622
|
+
fill: #606FD1;
|
|
1623
|
+
color: #606FD1; }
|
|
1624
|
+
|
|
1625
|
+
.filerobot-Explorer-ImageOptions-options {
|
|
1626
|
+
display: flex;
|
|
1627
|
+
justify-content: space-between;
|
|
1628
|
+
margin-bottom: 8px; }
|
|
1629
|
+
.filerobot-Explorer-ImageOptions-options-select {
|
|
1630
|
+
width: 60%;
|
|
1631
|
+
text-align: left;
|
|
1632
|
+
text-transform: capitalize; }
|
|
1633
|
+
.filerobot-Explorer-ImageOptions-options-select-fullWidth {
|
|
1634
|
+
width: 100%; }
|
|
1635
|
+
|
|
1636
|
+
.filerobot-Explorer-ImageOptions-size-options {
|
|
1637
|
+
display: flex;
|
|
1638
|
+
align-items: flex-start;
|
|
1639
|
+
flex-direction: column;
|
|
1640
|
+
row-gap: 4px; }
|
|
1641
|
+
|
|
1642
|
+
.filerobot-Explorer-ImageOptions-description {
|
|
1643
|
+
display: flex;
|
|
1644
|
+
justify-content: space-between;
|
|
1645
|
+
margin-top: 20px; }
|
|
1646
|
+
|
|
1647
|
+
.filerobot-Explorer-ImageOptions-settings {
|
|
1648
|
+
margin-bottom: 10px; }
|
|
1649
|
+
|
|
1650
|
+
.filerobot-Explorer-ImageOptions-resize-options {
|
|
1651
|
+
display: flex;
|
|
1652
|
+
align-items: center;
|
|
1653
|
+
-moz-column-gap: 8px;
|
|
1654
|
+
column-gap: 8px; }
|
|
1655
|
+
|
|
1656
|
+
.filerobot-Explorer-ImageOptions-download-zip {
|
|
1657
|
+
display: flex;
|
|
1658
|
+
margin-top: 16px; }
|
|
1659
|
+
|
|
1660
|
+
#SfxPopper {
|
|
1661
|
+
position: absolute;
|
|
1662
|
+
top: -10000px; }
|
|
1663
|
+
|
|
1664
|
+
.filerobot-Explorer-TopBar-PrependedOptions {
|
|
1665
|
+
display: flex;
|
|
1666
|
+
align-items: center;
|
|
1667
|
+
height: 100%; }
|
|
1668
|
+
|
|
1669
|
+
.filerobot-Explorer-TopBar-AppendedOptions {
|
|
1670
|
+
display: flex;
|
|
1671
|
+
align-items: center;
|
|
1672
|
+
float: right; }
|
|
1673
|
+
|
|
1674
|
+
.filerobot-Explorer-TopBar-Search-ContextDropdown-SubList-container {
|
|
1675
|
+
padding: 0 !important;
|
|
1676
|
+
cursor: default !important;
|
|
1677
|
+
background: #ffffff !important; }
|
|
1678
|
+
|
|
1679
|
+
@keyframes filerobot-Explorer-fadeIn {
|
|
1680
|
+
from {
|
|
1681
|
+
opacity: 0; }
|
|
1682
|
+
to {
|
|
1683
|
+
opacity: 1; } }
|
|
1684
|
+
|
|
1685
|
+
@keyframes filerobot-Explorer-fadeOut {
|
|
1686
|
+
from {
|
|
1687
|
+
opacity: 1; }
|
|
1688
|
+
to {
|
|
1689
|
+
opacity: 0; } }
|
|
1690
|
+
|
|
1691
|
+
@keyframes filerobot-Explorer-slideDownAndFadeIn {
|
|
1692
|
+
from {
|
|
1693
|
+
transform: translate3d(-50%, -70%, 0);
|
|
1694
|
+
opacity: 0; }
|
|
1695
|
+
to {
|
|
1696
|
+
transform: translate3d(-50%, -50%, 0);
|
|
1697
|
+
opacity: 1; } }
|
|
1698
|
+
|
|
1699
|
+
@keyframes filerobot-Explorer-slideDownAndFadeIn--small {
|
|
1700
|
+
from {
|
|
1701
|
+
transform: translate3d(0, -20%, 0);
|
|
1702
|
+
opacity: 0; }
|
|
1703
|
+
to {
|
|
1704
|
+
transform: translate3d(0, 0, 0);
|
|
1705
|
+
opacity: 1; } }
|
|
1706
|
+
|
|
1707
|
+
@keyframes filerobot-Explorer-slideUpFadeOut {
|
|
1708
|
+
from {
|
|
1709
|
+
transform: translate3d(-50%, -50%, 0);
|
|
1710
|
+
opacity: 1; }
|
|
1711
|
+
to {
|
|
1712
|
+
transform: translate3d(-50%, -70%, 0);
|
|
1713
|
+
opacity: 0; } }
|
|
1714
|
+
|
|
1715
|
+
@keyframes filerobot-Explorer-slideUpFadeOut--small {
|
|
1716
|
+
from {
|
|
1717
|
+
transform: translate3d(0, 0, 0);
|
|
1718
|
+
opacity: 1; }
|
|
1719
|
+
to {
|
|
1720
|
+
transform: translate3d(0, -20%, 0);
|
|
1721
|
+
opacity: 0; } }
|
|
1722
|
+
|
|
1723
|
+
.filerobot-Explorer--modal {
|
|
1724
|
+
z-index: 1200; }
|
|
1725
|
+
|
|
1726
|
+
.filerobot-Explorer-assets-picker-modal {
|
|
1727
|
+
z-index: 100000; }
|
|
1728
|
+
|
|
1729
|
+
.filerobot-Explorer--modal[aria-hidden=true] {
|
|
1730
|
+
display: none; }
|
|
1731
|
+
|
|
1732
|
+
.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose > .filerobot-Explorer-inner {
|
|
1733
|
+
animation: filerobot-Explorer-slideDownAndFadeIn--small 0.3s cubic-bezier(0, 0, 0.2, 1); }
|
|
1734
|
+
@media only screen and (min-width: 820px) {
|
|
1735
|
+
.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose > .filerobot-Explorer-inner {
|
|
1736
|
+
animation: filerobot-Explorer-slideDownAndFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1); } }
|
|
1737
|
+
|
|
1738
|
+
.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose > .filerobot-Explorer-overlay {
|
|
1739
|
+
animation: filerobot-Explorer-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1); }
|
|
1740
|
+
|
|
1741
|
+
.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose.filerobot-Explorer--isClosing > .filerobot-Explorer-inner {
|
|
1742
|
+
animation: filerobot-Explorer-slideUpFadeOut--small 0.3s cubic-bezier(0, 0, 0.2, 1); }
|
|
1743
|
+
@media only screen and (min-width: 820px) {
|
|
1744
|
+
.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose.filerobot-Explorer--isClosing > .filerobot-Explorer-inner {
|
|
1745
|
+
animation: filerobot-Explorer-slideUpFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1); } }
|
|
1746
|
+
|
|
1747
|
+
.filerobot-Explorer--modal.filerobot-Explorer--animateOpenClose.filerobot-Explorer--isClosing > .filerobot-Explorer-overlay {
|
|
1748
|
+
animation: filerobot-Explorer-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1); }
|
|
1749
|
+
|
|
1750
|
+
.filerobot-Explorer--modal .filerobot-Explorer-overlay {
|
|
1751
|
+
position: fixed;
|
|
1752
|
+
top: 0;
|
|
1753
|
+
left: 0;
|
|
1754
|
+
right: 0;
|
|
1755
|
+
bottom: 0;
|
|
1756
|
+
background-color: rgba(79, 98, 118, 0.3);
|
|
1757
|
+
z-index: 1002;
|
|
1758
|
+
outline: none; }
|
|
1759
|
+
|
|
1760
|
+
.filerobot-Explorer-inner {
|
|
1761
|
+
position: relative;
|
|
1762
|
+
max-width: 100%;
|
|
1763
|
+
max-height: 100%;
|
|
1764
|
+
outline: none;
|
|
1765
|
+
border: 1px solid #eaeaea;
|
|
1766
|
+
border-radius: 5px; }
|
|
1767
|
+
.filerobot-size--md .filerobot-Explorer-inner {
|
|
1768
|
+
min-height: auto; }
|
|
1769
|
+
.filerobot-Explorer--modal .filerobot-Explorer-inner {
|
|
1770
|
+
z-index: 1003; }
|
|
1771
|
+
[data-filerobot-theme="dark"] .filerobot-Explorer-inner {
|
|
1772
|
+
background-color: #1f1f1f; }
|
|
1773
|
+
|
|
1774
|
+
.filerobot-Explorer-innerWrap {
|
|
1775
|
+
display: flex;
|
|
1776
|
+
flex-direction: column;
|
|
1777
|
+
height: 100%;
|
|
1778
|
+
position: relative;
|
|
1779
|
+
border-radius: 5px;
|
|
1780
|
+
opacity: 0;
|
|
1781
|
+
overflow: hidden;
|
|
1782
|
+
background: #fff; }
|
|
1783
|
+
|
|
1784
|
+
.filerobot-Explorer-close {
|
|
1785
|
+
display: block;
|
|
1786
|
+
position: absolute;
|
|
1787
|
+
top: -33px;
|
|
1788
|
+
right: -2px;
|
|
1789
|
+
cursor: pointer;
|
|
1790
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1791
|
+
font-size: 27px;
|
|
1792
|
+
z-index: 1005; }
|
|
1793
|
+
.filerobot-Explorer-close:focus {
|
|
1794
|
+
outline: none; }
|
|
1795
|
+
.filerobot-Explorer-close::-moz-focus-inner {
|
|
1796
|
+
border: 0; }
|
|
1797
|
+
@media only screen and (min-width: 820px) {
|
|
1798
|
+
.filerobot-Explorer-close {
|
|
1799
|
+
font-size: 35px;
|
|
1800
|
+
top: -10px;
|
|
1801
|
+
right: -35px; } }
|
|
1802
|
+
|
|
1803
|
+
.filerobot-Explorer--isInnerWrapVisible .filerobot-Explorer-innerWrap {
|
|
1804
|
+
opacity: 1; }
|
|
1805
|
+
|
|
1806
|
+
.filerobot-Explorer--modal .filerobot-Explorer-inner {
|
|
1807
|
+
position: fixed;
|
|
1808
|
+
top: 5px;
|
|
1809
|
+
left: 0;
|
|
1810
|
+
right: 0;
|
|
1811
|
+
bottom: 15px;
|
|
1812
|
+
border: none; }
|
|
1813
|
+
@media only screen and (min-width: 820px) {
|
|
1814
|
+
.filerobot-Explorer--modal .filerobot-Explorer-inner {
|
|
1815
|
+
top: 50%;
|
|
1816
|
+
left: 50%;
|
|
1817
|
+
transform: translate(-50%, -50%);
|
|
1818
|
+
box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.15); } }
|
|
1819
|
+
|
|
1820
|
+
.filerobot-Explorer--move-informer .filerobot.filerobot-Informer {
|
|
1821
|
+
bottom: 80px; }
|
|
1822
|
+
|
|
1823
|
+
.filerobot-Explorer-isFixed {
|
|
1824
|
+
overflow: hidden;
|
|
1825
|
+
height: 100vh; }
|
|
1826
|
+
|
|
1827
|
+
.filerobot-Explorer-input {
|
|
1828
|
+
width: 0.1px;
|
|
1829
|
+
height: 0.1px;
|
|
1830
|
+
opacity: 0;
|
|
1831
|
+
overflow: hidden;
|
|
1832
|
+
position: absolute;
|
|
1833
|
+
z-index: -1; }
|
|
1834
|
+
|
|
1835
|
+
.filerobot-Explorer-TopBar-leftSide {
|
|
1836
|
+
height: 100%;
|
|
1837
|
+
margin-right: 12px; }
|
|
1838
|
+
|
|
1839
|
+
.filerobot-Explorer-Search-filtersInside-newFilterChip {
|
|
1840
|
+
margin-top: 0;
|
|
1841
|
+
margin-right: 8px;
|
|
1842
|
+
outline: none; }
|
|
1843
|
+
.filerobot-Explorer-Search-filtersInside-newFilterChip * {
|
|
1844
|
+
outline: none; }
|
|
1845
|
+
|
|
1846
|
+
.filerobot-common-FormControl .SfxTagField-listWrapper {
|
|
1847
|
+
width: 100%; }
|
|
1848
|
+
|
|
1849
|
+
.sort-menuitem.SfxMenuItem-root .SfxMenuItem-Icon.SfxMenuItem-Actions {
|
|
1850
|
+
display: none; }
|