@agilemotion/oui-react-js 1.6.0 → 1.6.2
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/dist/ApplicationManager.js +698 -421
- package/dist/BasicApp.js +5 -5
- package/dist/BasicAppHome.js +55 -26
- package/dist/DynamicJS.js +147 -65
- package/dist/InteractionPortalApp.css +1 -1
- package/dist/InteractionPortalApp.js +5 -5
- package/dist/InteractionPortalAppHome.js +65 -18
- package/dist/InteractionPortalApp_old.js +107 -61
- package/dist/RestUtils.js +339 -287
- package/dist/TypedValue.js +18 -15
- package/dist/Utils.js +375 -276
- package/dist/WithRouter.js +6 -6
- package/dist/assets/jss/components/authNavbarStyle.js +166 -164
- package/dist/assets/jss/components/buttonStyle.js +1 -1
- package/dist/assets/jss/components/cardAvatarStyle.js +1 -1
- package/dist/assets/jss/components/cardBodyStyle.js +1 -1
- package/dist/assets/jss/components/cardFooterStyle.js +1 -1
- package/dist/assets/jss/components/cardHeaderStyle.js +13 -13
- package/dist/assets/jss/components/cardIconStyle.js +1 -1
- package/dist/assets/jss/components/cardStyle.js +1 -1
- package/dist/assets/jss/components/cardTextStyle.js +1 -1
- package/dist/assets/jss/components/customDropdownStyle.js +168 -169
- package/dist/assets/jss/components/customInputStyle.js +9 -3
- package/dist/assets/jss/components/dropdownStyle.js +69 -69
- package/dist/assets/jss/components/footerStyle.js +19 -13
- package/dist/assets/jss/components/headerLinksStyle.js +45 -48
- package/dist/assets/jss/components/headerStyle.js +68 -65
- package/dist/assets/jss/components/navbarLinksStyle.js +66 -77
- package/dist/assets/jss/components/navbarStyle.js +79 -76
- package/dist/assets/jss/components/sidebarStyle.js +436 -436
- package/dist/assets/jss/components/typographyStyle.js +9 -3
- package/dist/assets/jss/rootStyle.js +96 -81
- package/dist/assets/jss/views/layoutStyle.js +44 -41
- package/dist/assets/jss/views/loginBasicStyle.js +1 -1
- package/dist/assets/jss/views/loginBusinessPortalStyle.js +1 -1
- package/dist/assets/jss/views/loginStyle.js +82 -77
- package/dist/components/AlertBar.js +50 -17
- package/dist/components/AlertItem.js +35 -12
- package/dist/components/AlertTemplate.js +30 -29
- package/dist/components/Button.js +62 -34
- package/dist/components/Calendar.js +140 -91
- package/dist/components/ConfirmationDialog.js +36 -11
- package/dist/components/DataGrid.js +512 -270
- package/dist/components/DataGridColumn.js +47 -22
- package/dist/components/DataGridFilter.js +186 -105
- package/dist/components/DataGridHeading.js +50 -32
- package/dist/components/Dialog.js +90 -35
- package/dist/components/DocumentTemplateDesigner.js +34 -16
- package/dist/components/DocumentTemplateDesignerComponent.css +0 -157
- package/dist/components/DocumentTemplateDesignerComponent.js +118 -62
- package/dist/components/DocumentTemplatePlaceholderDialog.js +52 -30
- package/dist/components/DocumentViewer.js +34 -18
- package/dist/components/DocumentViewerComponent.js +26 -9
- package/dist/components/ElementResizeHandler.js +229 -207
- package/dist/components/FileThumb.js +32 -10
- package/dist/components/Graph.js +153 -85
- package/dist/components/GraphNode.js +58 -38
- package/dist/components/HtmlPanel.js +67 -39
- package/dist/components/Icon.js +206 -166
- package/dist/components/LoadingIndicator.js +3 -3
- package/dist/components/LottieIcon.js +1 -1
- package/dist/components/PopupView.js +39 -19
- package/dist/components/Portlet.js +35 -19
- package/dist/components/RegularButton.js +28 -32
- package/dist/components/SignaturePanel.js +37 -17
- package/dist/components/SocketManager.js +178 -119
- package/dist/components/StepperTitleBar.js +62 -42
- package/dist/components/TabPage.js +30 -25
- package/dist/components/TabPanel.js +86 -33
- package/dist/components/TableCellContent.js +51 -32
- package/dist/components/TemplateDesigner.js +173 -121
- package/dist/components/TemplateItemEventHandler.js +335 -221
- package/dist/components/TemplateTable.js +183 -118
- package/dist/components/TitleBar.js +26 -11
- package/dist/components/Toolbar.js +67 -38
- package/dist/components/Tooltip.js +43 -35
- package/dist/components/Tree.js +85 -44
- package/dist/components/UseIsVisible.js +25 -4
- package/dist/components/card/Card.js +27 -33
- package/dist/components/card/CardAvatar.js +20 -19
- package/dist/components/card/CardBody.js +24 -27
- package/dist/components/card/CardFooter.js +23 -24
- package/dist/components/card/CardHeader.js +24 -27
- package/dist/components/card/CardIcon.js +17 -13
- package/dist/components/card/CardText.js +17 -13
- package/dist/components/customInput/CustomInput.js +22 -36
- package/dist/components/dashboard/{BasicBusinessAppDashboard.js → FoldingSideTabDashboard.js} +111 -63
- package/dist/components/dashboard/SideMenuModuleDashboard.css +60 -0
- package/dist/components/dashboard/SideMenuModuleDashboard.js +423 -0
- package/dist/components/dashboard/TopMenuModuleDashboard.js +138 -0
- package/dist/components/dashboard/components/Header.js +29 -12
- package/dist/components/dashboard/components/LeftDrawer.js +3 -5
- package/dist/components/dashboard/components/UserIdentity.js +2 -2
- package/dist/components/dashboard/components/blackDashboard/fixedPlugin/FixedPlugin.js +131 -87
- package/dist/components/dashboard/components/blackDashboard/sidebar/FoldingTabSidebar.js +488 -0
- package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenu.js +64 -0
- package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenuSidebar.css +65 -0
- package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenuSidebar.js +556 -0
- package/dist/components/dashboard/components/portal/Timeline.js +1 -1
- package/dist/components/dashboard/components/portal/Workspace.js +5 -11
- package/dist/components/footer/Footer.js +31 -24
- package/dist/components/footer/HomeFooter.js +68 -34
- package/dist/components/form/AddressSearch.js +78 -42
- package/dist/components/form/AutoComplete.js +136 -55
- package/dist/components/form/BaseField.js +108 -56
- package/dist/components/form/Checkbox.js +10 -8
- package/dist/components/form/DatePicker.js +47 -25
- package/dist/components/form/FieldSet.js +217 -84
- package/dist/components/form/Form.js +334 -200
- package/dist/components/form/GridField.js +185 -82
- package/dist/components/form/IconField.js +9 -7
- package/dist/components/form/ImageEditor.js +141 -92
- package/dist/components/form/LabelField.js +12 -10
- package/dist/components/form/LookupField.js +54 -32
- package/dist/components/form/MultiFileUploadField.js +101 -67
- package/dist/components/form/RadioGroup.js +33 -16
- package/dist/components/form/Section.js +84 -34
- package/dist/components/form/SelectItem.js +55 -33
- package/dist/components/form/SignatureTemplateDesignerField.js +11 -9
- package/dist/components/form/Switch.js +10 -8
- package/dist/components/form/TextField.js +34 -16
- package/dist/components/form/TimePicker.js +19 -15
- package/dist/components/form/TransferList.js +153 -75
- package/dist/components/form/UploadField.js +183 -128
- package/dist/components/grid/GridContainer.js +12 -8
- package/dist/components/grid/GridItem.js +12 -8
- package/dist/components/layout/CollapsiblePanel.js +44 -18
- package/dist/components/layout/Layout.js +81 -40
- package/dist/components/layout/VC.css +1 -1
- package/dist/components/layout/View.js +136 -62
- package/dist/components/layout/ViewContainer.js +13 -11
- package/dist/components/layout/ViewPort.js +25 -10
- package/dist/components/layout/Window.js +87 -53
- package/dist/components/layout/WindowViewPort.js +38 -16
- package/dist/components/media/ClosablePanel.js +7 -7
- package/dist/components/media/LobbyWaitingList.js +7 -9
- package/dist/components/media/MediaSoupHelper.js +379 -187
- package/dist/components/media/SideBarContent.js +22 -14
- package/dist/components/media/SocketRequest.js +5 -1
- package/dist/components/media/SocketResponse.js +5 -1
- package/dist/components/media/Timer.js +35 -15
- package/dist/components/media/Toolbar.css +5 -0
- package/dist/components/media/Toolbar.js +220 -102
- package/dist/components/media/ToolbarButton.js +82 -33
- package/dist/components/media/Toolbar_bck.js +142 -70
- package/dist/components/media/Tracks.js +31 -28
- package/dist/components/media/TrainingRoom.js +284 -121
- package/dist/components/media/Transports.js +27 -24
- package/dist/components/media/VCEventManager.js +95 -31
- package/dist/components/media/VCEventType.js +5 -1
- package/dist/components/media/VCParticipantList.js +40 -14
- package/dist/components/media/VCParticipantListItem.js +92 -41
- package/dist/components/media/VCRoom.js +29 -11
- package/dist/components/media/VCRoomParticipant.js +488 -242
- package/dist/components/media/VCRoomRecorder.js +236 -175
- package/dist/components/media/VCRoomWorkspace.js +505 -245
- package/dist/components/media/Video.js +89 -25
- package/dist/components/media/VideoPlayer.js +56 -22
- package/dist/components/media/chat/ChatRoom.js +255 -132
- package/dist/components/media/chat/ChatRoomItem.js +35 -14
- package/dist/components/media/chat/ChatRoomList.js +43 -13
- package/dist/components/menu/CollapsibleMenu.js +39 -20
- package/dist/components/menu/MenuBars.js +81 -48
- package/dist/components/menu/MenuButton.js +95 -60
- package/dist/components/menu/MenuItem.js +28 -9
- package/dist/components/menu/MenuLink.js +12 -10
- package/dist/components/menu/PopupMenu.js +16 -12
- package/dist/components/navbars/AuthNavbar.js +27 -18
- package/dist/components/navbars/HomeNavbar.js +243 -194
- package/dist/components/navbars/PortalNavbar.js +50 -26
- package/dist/components/signatures/AgilitySignaturePanel.js +96 -39
- package/dist/components/signatures/AlertItem.js +36 -13
- package/dist/components/signatures/Card.js +4 -4
- package/dist/components/signatures/DocumentContainer.js +141 -57
- package/dist/components/signatures/ImageSignatureInput.js +90 -59
- package/dist/components/signatures/MenuButton.js +53 -33
- package/dist/components/signatures/Prompt.js +26 -5
- package/dist/components/signatures/ResponsiveTable.js +302 -197
- package/dist/components/signatures/SearchView.js +77 -36
- package/dist/components/signatures/SignatorySearch.js +30 -10
- package/dist/components/signatures/SignatorySearchForm.js +35 -18
- package/dist/components/signatures/SignatureInput.js +56 -26
- package/dist/components/signatures/SignatureInputProps.js +107 -55
- package/dist/components/signatures/SignatureTemplateDesigner.js +340 -235
- package/dist/components/signatures/Toolbar.js +135 -94
- package/dist/components/signatures/ViewUtils.js +273 -224
- package/dist/components/typography/Danger.js +3 -5
- package/dist/components/typography/Info.js +3 -5
- package/dist/components/typography/Link.js +3 -5
- package/dist/event/ActionHandlers.js +57 -43
- package/dist/event/Event.js +16 -13
- package/dist/event/EventListener.js +39 -36
- package/dist/event/EventType.js +5 -1
- package/dist/event/LoadDataActionHandler.js +20 -8
- package/dist/event/Observable.js +323 -142
- package/dist/event/RouteActionHandler.js +139 -125
- package/dist/event/ScriptActionHandler.js +20 -8
- package/dist/event/ServiceCallActionHandler.js +51 -39
- package/dist/event/SignalGraphActionHandler.js +19 -7
- package/dist/js/Addresses.js +38 -24
- package/dist/js/Calendar.js +168 -161
- package/dist/js/DynamicLib.js +14 -11
- package/dist/js/Media.js +213 -120
- package/dist/js/Validators.js +6 -5
- package/dist/js/Windows.js +48 -47
- package/dist/redux/store/ConfigureStore.js +17 -9
- package/dist/redux/store/DashboardStore.js +110 -43
- package/dist/redux/store/History.js +1 -1
- package/dist/redux/store/SecurityStore.js +59 -20
- package/dist/security/TokenManager.js +44 -30
- package/dist/theme-default.js +1 -1
- package/dist/view/Dashboard.js +230 -137
- package/dist/view/PortalDashboard.js +5 -5
- package/dist/view/Settings.js +4 -2
- package/dist/view/Views.js +27 -14
- package/dist/view/security/ChangePasswordBasic.js +97 -40
- package/dist/view/security/ForgotPassword.js +59 -22
- package/dist/view/security/ForgotPasswordBasic.js +62 -21
- package/dist/view/security/Login.js +64 -24
- package/dist/view/security/LoginBasic.js +65 -26
- package/dist/view/security/LoginInteractionPortal.js +62 -25
- package/dist/view/security/ResetPassword.js +65 -23
- package/dist/view/security/ResetPasswordBasic.js +91 -37
- package/dist/view/security/Security.js +12 -12
- package/package.json +1 -2
- package/dist/components/dashboard/BusinessPortalAppDashboard.js +0 -154
- package/dist/components/dashboard/components/blackDashboard/sidebar/Sidebar.js +0 -447
- /package/dist/components/dashboard/{BusinessPortalAppDashboard.css → TopMenuModuleDashboard.css} +0 -0
- /package/dist/components/dashboard/components/blackDashboard/sidebar/{Sidebar.css → FoldingTabSidebar.css} +0 -0
|
@@ -7,38 +7,42 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _rootStyle = require("../rootStyle");
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
11
|
+
|
|
12
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
13
|
+
|
|
14
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
+
|
|
16
|
+
var sidebarStyle = function sidebarStyle(theme) {
|
|
17
|
+
var _drawerPaperRTL, _objectSpread2;
|
|
18
|
+
|
|
19
|
+
return {
|
|
20
|
+
drawerPaperRTL: (_drawerPaperRTL = {}, _defineProperty(_drawerPaperRTL, theme.breakpoints.up("md"), {
|
|
13
21
|
left: "auto !important",
|
|
14
22
|
right: "0 !important"
|
|
15
|
-
},
|
|
16
|
-
[theme.breakpoints.down("sm")]: {
|
|
23
|
+
}), _defineProperty(_drawerPaperRTL, theme.breakpoints.down("sm"), {
|
|
17
24
|
left: "0 !important",
|
|
18
25
|
right: "auto !important"
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
width: _rootStyle.drawerWidth,
|
|
34
|
-
[theme.breakpoints.up("md")]: {
|
|
26
|
+
}), _drawerPaperRTL),
|
|
27
|
+
drawerPaper: _objectSpread(_objectSpread({
|
|
28
|
+
border: "none",
|
|
29
|
+
position: "fixed",
|
|
30
|
+
top: "0",
|
|
31
|
+
bottom: "0",
|
|
32
|
+
left: "0",
|
|
33
|
+
zIndex: "1032",
|
|
34
|
+
transitionProperty: "top, bottom, width",
|
|
35
|
+
transitionDuration: ".2s, .2s, .35s",
|
|
36
|
+
transitionTimingFunction: "linear, linear, ease"
|
|
37
|
+
}, _rootStyle.boxShadow), {}, (_objectSpread2 = {
|
|
38
|
+
width: _rootStyle.drawerWidth
|
|
39
|
+
}, _defineProperty(_objectSpread2, theme.breakpoints.up("md"), {
|
|
35
40
|
width: _rootStyle.drawerWidth,
|
|
36
41
|
position: "fixed",
|
|
37
42
|
height: "100%"
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
..._rootStyle.boxShadow,
|
|
43
|
+
}), _defineProperty(_objectSpread2, theme.breakpoints.down("sm"), _objectSpread(_objectSpread({
|
|
44
|
+
width: _rootStyle.drawerWidth
|
|
45
|
+
}, _rootStyle.boxShadow), {}, {
|
|
42
46
|
position: "fixed",
|
|
43
47
|
display: "block",
|
|
44
48
|
top: "0",
|
|
@@ -52,10 +56,8 @@ const sidebarStyle = theme => ({
|
|
|
52
56
|
textAlign: "left",
|
|
53
57
|
paddingRight: "0px",
|
|
54
58
|
paddingLeft: "0",
|
|
55
|
-
transform: "translate3d(".concat(_rootStyle.drawerWidth, "px, 0, 0)")
|
|
56
|
-
|
|
57
|
-
},
|
|
58
|
-
"&:before,&:after": {
|
|
59
|
+
transform: "translate3d(".concat(_rootStyle.drawerWidth, "px, 0, 0)")
|
|
60
|
+
}, _rootStyle.transition)), _defineProperty(_objectSpread2, "&:before,&:after", {
|
|
59
61
|
position: "absolute",
|
|
60
62
|
zIndex: "3",
|
|
61
63
|
width: "100%",
|
|
@@ -63,424 +65,422 @@ const sidebarStyle = theme => ({
|
|
|
63
65
|
content: '""',
|
|
64
66
|
display: "block",
|
|
65
67
|
top: "0"
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
68
|
+
}), _objectSpread2)),
|
|
69
|
+
blackBackground: {
|
|
70
|
+
color: _rootStyle.whiteColor,
|
|
71
|
+
"&:after": {
|
|
72
|
+
background: _rootStyle.blackColor,
|
|
73
|
+
opacity: ".8"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
blueBackground: {
|
|
77
|
+
color: _rootStyle.whiteColor,
|
|
78
|
+
"&:after": {
|
|
79
|
+
background: _rootStyle.infoColor[0],
|
|
80
|
+
opacity: ".93"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
whiteBackground: {
|
|
84
|
+
color: _rootStyle.grayColor[2],
|
|
85
|
+
"&:after": {
|
|
86
|
+
background: _rootStyle.whiteColor,
|
|
87
|
+
opacity: ".93"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
whiteAfter: {
|
|
91
|
+
"&:after": {
|
|
92
|
+
backgroundColor: "hsla(0,0%,71%,.3) !important"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
drawerPaperMini: {
|
|
96
|
+
width: _rootStyle.drawerMiniWidth + "px!important"
|
|
97
|
+
},
|
|
98
|
+
logo: {
|
|
99
|
+
padding: "15px 0px",
|
|
100
|
+
margin: "0",
|
|
101
|
+
display: "block",
|
|
102
|
+
position: "relative",
|
|
103
|
+
zIndex: "4",
|
|
104
|
+
"&:after": {
|
|
105
|
+
content: '""',
|
|
106
|
+
position: "absolute",
|
|
107
|
+
bottom: "0",
|
|
108
|
+
height: "1px",
|
|
109
|
+
right: "15px",
|
|
110
|
+
width: "calc(100% - 30px)",
|
|
111
|
+
backgroundColor: "hsla(0,0%,100%,.3)"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
logoMini: {
|
|
115
|
+
transition: "all 300ms linear",
|
|
116
|
+
opacity: 1,
|
|
117
|
+
float: "left",
|
|
118
|
+
textAlign: "center",
|
|
119
|
+
width: "30px",
|
|
120
|
+
display: "inline-block",
|
|
121
|
+
maxHeight: "30px",
|
|
122
|
+
marginLeft: "22px",
|
|
123
|
+
marginRight: "18px",
|
|
124
|
+
marginTop: "7px",
|
|
125
|
+
color: "inherit"
|
|
126
|
+
},
|
|
127
|
+
logoMiniRTL: {
|
|
128
|
+
float: "right",
|
|
129
|
+
marginRight: "30px",
|
|
130
|
+
marginLeft: "26px"
|
|
131
|
+
},
|
|
132
|
+
logoNormal: _objectSpread(_objectSpread({}, _rootStyle.defaultFont), {}, {
|
|
133
|
+
transition: "all 300ms linear",
|
|
134
|
+
display: "block",
|
|
135
|
+
opacity: "1",
|
|
136
|
+
transform: "translate3d(0px, 0, 0)",
|
|
137
|
+
textTransform: "uppercase",
|
|
138
|
+
padding: "5px 0px",
|
|
139
|
+
fontSize: "18px",
|
|
140
|
+
whiteSpace: "nowrap",
|
|
141
|
+
fontWeight: "400",
|
|
142
|
+
lineHeight: "30px",
|
|
143
|
+
overflow: "hidden",
|
|
144
|
+
"&,&:hover,&:focus": {
|
|
145
|
+
color: "inherit"
|
|
146
|
+
}
|
|
147
|
+
}),
|
|
148
|
+
logoNormalRTL: {
|
|
149
|
+
textAlign: "right"
|
|
150
|
+
},
|
|
151
|
+
logoNormalSidebarMini: {
|
|
152
|
+
opacity: "0",
|
|
153
|
+
transform: "translate3d(-25px, 0, 0)"
|
|
154
|
+
},
|
|
155
|
+
logoNormalSidebarMiniRTL: {
|
|
156
|
+
transform: "translate3d(25px, 0, 0)"
|
|
157
|
+
},
|
|
158
|
+
img: {
|
|
159
|
+
width: "35px",
|
|
160
|
+
verticalAlign: "middle",
|
|
161
|
+
border: "0"
|
|
162
|
+
},
|
|
163
|
+
background: {
|
|
105
164
|
position: "absolute",
|
|
106
|
-
|
|
107
|
-
height: "
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
165
|
+
zIndex: "1",
|
|
166
|
+
height: "100%",
|
|
167
|
+
width: "100%",
|
|
168
|
+
display: "block",
|
|
169
|
+
top: "0",
|
|
170
|
+
left: "0",
|
|
171
|
+
backgroundSize: "cover",
|
|
172
|
+
backgroundPosition: "center center",
|
|
173
|
+
transition: "all 300ms linear"
|
|
174
|
+
},
|
|
175
|
+
list: {
|
|
176
|
+
marginTop: "15px",
|
|
177
|
+
paddingLeft: "0",
|
|
178
|
+
paddingTop: "0",
|
|
179
|
+
paddingBottom: "0",
|
|
180
|
+
marginBottom: "0",
|
|
181
|
+
listStyle: "none",
|
|
182
|
+
color: "inherit",
|
|
183
|
+
"&:before,&:after": {
|
|
184
|
+
display: "table",
|
|
185
|
+
content: '" "'
|
|
186
|
+
},
|
|
187
|
+
"&:after": {
|
|
188
|
+
clear: "both"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
item: {
|
|
192
|
+
color: "inherit",
|
|
193
|
+
position: "relative",
|
|
194
|
+
display: "block",
|
|
195
|
+
textDecoration: "none",
|
|
196
|
+
margin: "0",
|
|
197
|
+
padding: "0"
|
|
198
|
+
},
|
|
199
|
+
userItem: {
|
|
200
|
+
"&:last-child": {
|
|
201
|
+
paddingBottom: "0px"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
itemLink: _objectSpread(_objectSpread({
|
|
205
|
+
paddingLeft: "10px",
|
|
206
|
+
paddingRight: "10px",
|
|
207
|
+
transition: "all 300ms linear",
|
|
208
|
+
margin: "10px 15px 0",
|
|
209
|
+
borderRadius: "3px",
|
|
210
|
+
position: "relative",
|
|
211
|
+
display: "block",
|
|
212
|
+
padding: "10px 15px",
|
|
213
|
+
backgroundColor: "transparent"
|
|
214
|
+
}, _rootStyle.defaultFont), {}, {
|
|
215
|
+
width: "auto",
|
|
216
|
+
"&:hover": {
|
|
217
|
+
outline: "none",
|
|
218
|
+
backgroundColor: "rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.grayColor[17]) + ", 0.2)",
|
|
219
|
+
boxShadow: "none"
|
|
220
|
+
},
|
|
221
|
+
"&,&:hover,&:focus": {
|
|
222
|
+
color: "inherit"
|
|
223
|
+
}
|
|
224
|
+
}),
|
|
225
|
+
itemIcon: {
|
|
226
|
+
color: "inherit",
|
|
227
|
+
width: "30px",
|
|
228
|
+
height: "24px",
|
|
229
|
+
float: "left",
|
|
230
|
+
position: "inherit",
|
|
231
|
+
top: "3px",
|
|
232
|
+
marginRight: "15px",
|
|
233
|
+
textAlign: "center",
|
|
234
|
+
verticalAlign: "middle",
|
|
235
|
+
opacity: "0.8"
|
|
236
|
+
},
|
|
237
|
+
itemIconRTL: {
|
|
238
|
+
float: "right",
|
|
239
|
+
marginLeft: "15px",
|
|
240
|
+
marginRight: "1px"
|
|
241
|
+
},
|
|
242
|
+
itemText: _objectSpread(_objectSpread({
|
|
144
243
|
color: "inherit"
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
"&:after": {
|
|
187
|
-
clear: "both"
|
|
188
|
-
}
|
|
189
|
-
},
|
|
190
|
-
item: {
|
|
191
|
-
color: "inherit",
|
|
192
|
-
position: "relative",
|
|
193
|
-
display: "block",
|
|
194
|
-
textDecoration: "none",
|
|
195
|
-
margin: "0",
|
|
196
|
-
padding: "0"
|
|
197
|
-
},
|
|
198
|
-
userItem: {
|
|
199
|
-
"&:last-child": {
|
|
200
|
-
paddingBottom: "0px"
|
|
201
|
-
}
|
|
202
|
-
},
|
|
203
|
-
itemLink: {
|
|
204
|
-
paddingLeft: "10px",
|
|
205
|
-
paddingRight: "10px",
|
|
206
|
-
transition: "all 300ms linear",
|
|
207
|
-
margin: "10px 15px 0",
|
|
208
|
-
borderRadius: "3px",
|
|
209
|
-
position: "relative",
|
|
210
|
-
display: "block",
|
|
211
|
-
padding: "10px 15px",
|
|
212
|
-
backgroundColor: "transparent",
|
|
213
|
-
..._rootStyle.defaultFont,
|
|
214
|
-
width: "auto",
|
|
215
|
-
"&:hover": {
|
|
244
|
+
}, _rootStyle.defaultFont), {}, {
|
|
245
|
+
margin: "0",
|
|
246
|
+
lineHeight: "30px",
|
|
247
|
+
fontSize: "14px",
|
|
248
|
+
transform: "translate3d(0px, 0, 0)",
|
|
249
|
+
opacity: "1",
|
|
250
|
+
transition: "transform 300ms ease 0s, opacity 300ms ease 0s",
|
|
251
|
+
position: "relative",
|
|
252
|
+
display: "block",
|
|
253
|
+
height: "auto",
|
|
254
|
+
whiteSpace: "nowrap",
|
|
255
|
+
padding: "0 16px !important"
|
|
256
|
+
}),
|
|
257
|
+
userItemText: {
|
|
258
|
+
lineHeight: "22px"
|
|
259
|
+
},
|
|
260
|
+
itemTextRTL: {
|
|
261
|
+
marginRight: "45px",
|
|
262
|
+
textAlign: "right"
|
|
263
|
+
},
|
|
264
|
+
itemTextMini: {
|
|
265
|
+
transform: "translate3d(-25px, 0, 0)",
|
|
266
|
+
opacity: "0"
|
|
267
|
+
},
|
|
268
|
+
itemTextMiniRTL: {
|
|
269
|
+
transform: "translate3d(25px, 0, 0) !important"
|
|
270
|
+
},
|
|
271
|
+
collapseList: {
|
|
272
|
+
marginTop: "0",
|
|
273
|
+
"& $caret": {
|
|
274
|
+
marginTop: "8px"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
collapseItem: {
|
|
278
|
+
position: "relative",
|
|
279
|
+
display: "block",
|
|
280
|
+
textDecoration: "none",
|
|
281
|
+
margin: "10px 0 0 0",
|
|
282
|
+
padding: "0"
|
|
283
|
+
},
|
|
284
|
+
collapseActive: {
|
|
216
285
|
outline: "none",
|
|
217
286
|
backgroundColor: "rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.grayColor[17]) + ", 0.2)",
|
|
218
287
|
boxShadow: "none"
|
|
219
288
|
},
|
|
220
|
-
|
|
289
|
+
collapseItemLink: _objectSpread(_objectSpread({
|
|
290
|
+
transition: "all 300ms linear",
|
|
291
|
+
margin: "0 15px",
|
|
292
|
+
borderRadius: "3px",
|
|
293
|
+
position: "relative",
|
|
294
|
+
display: "block",
|
|
295
|
+
padding: "10px",
|
|
296
|
+
backgroundColor: "transparent"
|
|
297
|
+
}, _rootStyle.defaultFont), {}, {
|
|
298
|
+
width: "auto",
|
|
299
|
+
"&:hover": {
|
|
300
|
+
outline: "none",
|
|
301
|
+
backgroundColor: "rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.grayColor[17]) + ", 0.2)",
|
|
302
|
+
boxShadow: "none"
|
|
303
|
+
},
|
|
304
|
+
"&,&:hover,&:focus": {
|
|
305
|
+
color: "inherit"
|
|
306
|
+
}
|
|
307
|
+
}),
|
|
308
|
+
collapseItemMini: _objectSpread(_objectSpread({
|
|
221
309
|
color: "inherit"
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
marginLeft: "15px",
|
|
239
|
-
marginRight: "1px"
|
|
240
|
-
},
|
|
241
|
-
itemText: {
|
|
242
|
-
color: "inherit",
|
|
243
|
-
..._rootStyle.defaultFont,
|
|
244
|
-
margin: "0",
|
|
245
|
-
lineHeight: "30px",
|
|
246
|
-
fontSize: "14px",
|
|
247
|
-
transform: "translate3d(0px, 0, 0)",
|
|
248
|
-
opacity: "1",
|
|
249
|
-
transition: "transform 300ms ease 0s, opacity 300ms ease 0s",
|
|
250
|
-
position: "relative",
|
|
251
|
-
display: "block",
|
|
252
|
-
height: "auto",
|
|
253
|
-
whiteSpace: "nowrap",
|
|
254
|
-
padding: "0 16px !important"
|
|
255
|
-
},
|
|
256
|
-
userItemText: {
|
|
257
|
-
lineHeight: "22px"
|
|
258
|
-
},
|
|
259
|
-
itemTextRTL: {
|
|
260
|
-
marginRight: "45px",
|
|
261
|
-
textAlign: "right"
|
|
262
|
-
},
|
|
263
|
-
itemTextMini: {
|
|
264
|
-
transform: "translate3d(-25px, 0, 0)",
|
|
265
|
-
opacity: "0"
|
|
266
|
-
},
|
|
267
|
-
itemTextMiniRTL: {
|
|
268
|
-
transform: "translate3d(25px, 0, 0) !important"
|
|
269
|
-
},
|
|
270
|
-
collapseList: {
|
|
271
|
-
marginTop: "0",
|
|
272
|
-
"& $caret": {
|
|
273
|
-
marginTop: "8px"
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
collapseItem: {
|
|
277
|
-
position: "relative",
|
|
278
|
-
display: "block",
|
|
279
|
-
textDecoration: "none",
|
|
280
|
-
margin: "10px 0 0 0",
|
|
281
|
-
padding: "0"
|
|
282
|
-
},
|
|
283
|
-
collapseActive: {
|
|
284
|
-
outline: "none",
|
|
285
|
-
backgroundColor: "rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.grayColor[17]) + ", 0.2)",
|
|
286
|
-
boxShadow: "none"
|
|
287
|
-
},
|
|
288
|
-
collapseItemLink: {
|
|
289
|
-
transition: "all 300ms linear",
|
|
290
|
-
margin: "0 15px",
|
|
291
|
-
borderRadius: "3px",
|
|
292
|
-
position: "relative",
|
|
293
|
-
display: "block",
|
|
294
|
-
padding: "10px",
|
|
295
|
-
backgroundColor: "transparent",
|
|
296
|
-
..._rootStyle.defaultFont,
|
|
297
|
-
width: "auto",
|
|
298
|
-
"&:hover": {
|
|
299
|
-
outline: "none",
|
|
300
|
-
backgroundColor: "rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.grayColor[17]) + ", 0.2)",
|
|
301
|
-
boxShadow: "none"
|
|
310
|
+
}, _rootStyle.defaultFont), {}, {
|
|
311
|
+
textTransform: "uppercase",
|
|
312
|
+
width: "30px",
|
|
313
|
+
marginRight: "15px",
|
|
314
|
+
textAlign: "center",
|
|
315
|
+
letterSpacing: "1px",
|
|
316
|
+
position: "relative",
|
|
317
|
+
float: "left",
|
|
318
|
+
display: "inherit",
|
|
319
|
+
transition: "transform 300ms ease 0s, opacity 300ms ease 0s",
|
|
320
|
+
fontSize: "14px"
|
|
321
|
+
}),
|
|
322
|
+
collapseItemMiniRTL: {
|
|
323
|
+
float: "right",
|
|
324
|
+
marginLeft: "30px",
|
|
325
|
+
marginRight: "1px"
|
|
302
326
|
},
|
|
303
|
-
|
|
327
|
+
collapseItemText: _objectSpread(_objectSpread({
|
|
304
328
|
color: "inherit"
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
color: "inherit",
|
|
328
|
-
..._rootStyle.defaultFont,
|
|
329
|
-
margin: "0",
|
|
330
|
-
position: "relative",
|
|
331
|
-
transform: "translateX(0px)",
|
|
332
|
-
opacity: "1",
|
|
333
|
-
whiteSpace: "nowrap",
|
|
334
|
-
display: "block",
|
|
335
|
-
transition: "transform 300ms ease 0s, opacity 300ms ease 0s",
|
|
336
|
-
fontSize: "14px"
|
|
337
|
-
},
|
|
338
|
-
collapseItemTextRTL: {
|
|
339
|
-
textAlign: "right"
|
|
340
|
-
},
|
|
341
|
-
collapseItemTextMiniRTL: {
|
|
342
|
-
transform: "translate3d(25px, 0, 0) !important"
|
|
343
|
-
},
|
|
344
|
-
collapseItemTextMini: {
|
|
345
|
-
transform: "translate3d(-25px, 0, 0)",
|
|
346
|
-
opacity: "0"
|
|
347
|
-
},
|
|
348
|
-
caret: {
|
|
349
|
-
marginTop: "13px",
|
|
350
|
-
position: "absolute",
|
|
351
|
-
right: "18px",
|
|
352
|
-
transition: "all 150ms ease-in",
|
|
353
|
-
display: "inline-block",
|
|
354
|
-
width: "0",
|
|
355
|
-
height: "0",
|
|
356
|
-
marginLeft: "2px",
|
|
357
|
-
verticalAlign: "middle",
|
|
358
|
-
borderTop: "4px solid",
|
|
359
|
-
borderRight: "4px solid transparent",
|
|
360
|
-
borderLeft: "4px solid transparent"
|
|
361
|
-
},
|
|
362
|
-
userCaret: {
|
|
363
|
-
marginTop: "10px"
|
|
364
|
-
},
|
|
365
|
-
caretRTL: {
|
|
366
|
-
left: "11px",
|
|
367
|
-
right: "auto"
|
|
368
|
-
},
|
|
369
|
-
caretActive: {
|
|
370
|
-
transform: "rotate(-360deg)"
|
|
371
|
-
},
|
|
372
|
-
purple: {
|
|
373
|
-
"&,&:hover,&:focus": {
|
|
374
|
-
color: _rootStyle.whiteColor,
|
|
375
|
-
backgroundColor: _rootStyle.primaryColor[0],
|
|
376
|
-
..._rootStyle.primaryBoxShadow
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
|
-
blue: {
|
|
380
|
-
"&,&:hover,&:focus": {
|
|
381
|
-
color: _rootStyle.whiteColor,
|
|
382
|
-
backgroundColor: _rootStyle.infoColor[0],
|
|
383
|
-
boxShadow: "0 12px 20px -10px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.infoColor[0]) + ",.28), 0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.12), 0 7px 8px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.infoColor[0]) + ",.2)"
|
|
384
|
-
}
|
|
385
|
-
},
|
|
386
|
-
green: {
|
|
387
|
-
"&,&:hover,&:focus": {
|
|
388
|
-
color: _rootStyle.whiteColor,
|
|
389
|
-
backgroundColor: _rootStyle.successColor[0],
|
|
390
|
-
boxShadow: "0 12px 20px -10px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.successColor[0]) + ",.28), 0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.12), 0 7px 8px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.successColor[0]) + ",.2)"
|
|
391
|
-
}
|
|
392
|
-
},
|
|
393
|
-
orange: {
|
|
394
|
-
"&,&:hover,&:focus": {
|
|
395
|
-
color: _rootStyle.whiteColor,
|
|
396
|
-
backgroundColor: _rootStyle.warningColor[0],
|
|
397
|
-
boxShadow: "0 12px 20px -10px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.warningColor[0]) + ",.28), 0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.12), 0 7px 8px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.warningColor[0]) + ",.2)"
|
|
398
|
-
}
|
|
399
|
-
},
|
|
400
|
-
red: {
|
|
401
|
-
"&,&:hover,&:focus": {
|
|
402
|
-
color: _rootStyle.whiteColor,
|
|
403
|
-
backgroundColor: _rootStyle.dangerColor[0],
|
|
404
|
-
boxShadow: "0 12px 20px -10px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.dangerColor[0]) + ",.28), 0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.12), 0 7px 8px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.dangerColor[0]) + ",.2)"
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
white: {
|
|
408
|
-
"&,&:hover,&:focus": {
|
|
409
|
-
color: _rootStyle.grayColor[2],
|
|
410
|
-
backgroundColor: _rootStyle.whiteColor,
|
|
411
|
-
boxShadow: "0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.14), 0 7px 10px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.grayColor[2]) + ",.4)"
|
|
412
|
-
}
|
|
413
|
-
},
|
|
414
|
-
rose: {
|
|
415
|
-
"&,&:hover,&:focus": {
|
|
416
|
-
color: _rootStyle.whiteColor,
|
|
417
|
-
backgroundColor: _rootStyle.roseColor[0],
|
|
418
|
-
boxShadow: "0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.14), 0 7px 10px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.roseColor[0]) + ",.4)"
|
|
419
|
-
}
|
|
420
|
-
},
|
|
421
|
-
sidebarWrapper: {
|
|
422
|
-
position: "relative",
|
|
423
|
-
height: "calc(100vh - 75px)",
|
|
424
|
-
overflow: "auto",
|
|
425
|
-
width: "260px",
|
|
426
|
-
zIndex: "4",
|
|
427
|
-
overflowScrolling: "touch",
|
|
428
|
-
transitionProperty: "top, bottom, width",
|
|
429
|
-
transitionDuration: ".2s, .2s, .35s",
|
|
430
|
-
transitionTimingFunction: "linear, linear, ease",
|
|
431
|
-
color: "inherit",
|
|
432
|
-
paddingBottom: "30px"
|
|
433
|
-
},
|
|
434
|
-
sidebarWrapperWithPerfectScrollbar: {
|
|
435
|
-
overflow: "hidden !important"
|
|
436
|
-
},
|
|
437
|
-
user: {
|
|
438
|
-
paddingBottom: "20px",
|
|
439
|
-
margin: "20px auto 0",
|
|
440
|
-
position: "relative",
|
|
441
|
-
"&:after": {
|
|
442
|
-
content: '""',
|
|
329
|
+
}, _rootStyle.defaultFont), {}, {
|
|
330
|
+
margin: "0",
|
|
331
|
+
position: "relative",
|
|
332
|
+
transform: "translateX(0px)",
|
|
333
|
+
opacity: "1",
|
|
334
|
+
whiteSpace: "nowrap",
|
|
335
|
+
display: "block",
|
|
336
|
+
transition: "transform 300ms ease 0s, opacity 300ms ease 0s",
|
|
337
|
+
fontSize: "14px"
|
|
338
|
+
}),
|
|
339
|
+
collapseItemTextRTL: {
|
|
340
|
+
textAlign: "right"
|
|
341
|
+
},
|
|
342
|
+
collapseItemTextMiniRTL: {
|
|
343
|
+
transform: "translate3d(25px, 0, 0) !important"
|
|
344
|
+
},
|
|
345
|
+
collapseItemTextMini: {
|
|
346
|
+
transform: "translate3d(-25px, 0, 0)",
|
|
347
|
+
opacity: "0"
|
|
348
|
+
},
|
|
349
|
+
caret: {
|
|
350
|
+
marginTop: "13px",
|
|
443
351
|
position: "absolute",
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
width: "
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
352
|
+
right: "18px",
|
|
353
|
+
transition: "all 150ms ease-in",
|
|
354
|
+
display: "inline-block",
|
|
355
|
+
width: "0",
|
|
356
|
+
height: "0",
|
|
357
|
+
marginLeft: "2px",
|
|
358
|
+
verticalAlign: "middle",
|
|
359
|
+
borderTop: "4px solid",
|
|
360
|
+
borderRight: "4px solid transparent",
|
|
361
|
+
borderLeft: "4px solid transparent"
|
|
362
|
+
},
|
|
363
|
+
userCaret: {
|
|
364
|
+
marginTop: "10px"
|
|
365
|
+
},
|
|
366
|
+
caretRTL: {
|
|
367
|
+
left: "11px",
|
|
368
|
+
right: "auto"
|
|
369
|
+
},
|
|
370
|
+
caretActive: {
|
|
371
|
+
transform: "rotate(-360deg)"
|
|
372
|
+
},
|
|
373
|
+
purple: {
|
|
374
|
+
"&,&:hover,&:focus": _objectSpread({
|
|
375
|
+
color: _rootStyle.whiteColor,
|
|
376
|
+
backgroundColor: _rootStyle.primaryColor[0]
|
|
377
|
+
}, _rootStyle.primaryBoxShadow)
|
|
378
|
+
},
|
|
379
|
+
blue: {
|
|
380
|
+
"&,&:hover,&:focus": {
|
|
381
|
+
color: _rootStyle.whiteColor,
|
|
382
|
+
backgroundColor: _rootStyle.infoColor[0],
|
|
383
|
+
boxShadow: "0 12px 20px -10px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.infoColor[0]) + ",.28), 0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.12), 0 7px 8px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.infoColor[0]) + ",.2)"
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
green: {
|
|
387
|
+
"&,&:hover,&:focus": {
|
|
388
|
+
color: _rootStyle.whiteColor,
|
|
389
|
+
backgroundColor: _rootStyle.successColor[0],
|
|
390
|
+
boxShadow: "0 12px 20px -10px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.successColor[0]) + ",.28), 0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.12), 0 7px 8px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.successColor[0]) + ",.2)"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
orange: {
|
|
394
|
+
"&,&:hover,&:focus": {
|
|
395
|
+
color: _rootStyle.whiteColor,
|
|
396
|
+
backgroundColor: _rootStyle.warningColor[0],
|
|
397
|
+
boxShadow: "0 12px 20px -10px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.warningColor[0]) + ",.28), 0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.12), 0 7px 8px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.warningColor[0]) + ",.2)"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
red: {
|
|
401
|
+
"&,&:hover,&:focus": {
|
|
402
|
+
color: _rootStyle.whiteColor,
|
|
403
|
+
backgroundColor: _rootStyle.dangerColor[0],
|
|
404
|
+
boxShadow: "0 12px 20px -10px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.dangerColor[0]) + ",.28), 0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.12), 0 7px 8px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.dangerColor[0]) + ",.2)"
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
white: {
|
|
408
|
+
"&,&:hover,&:focus": {
|
|
409
|
+
color: _rootStyle.grayColor[2],
|
|
410
|
+
backgroundColor: _rootStyle.whiteColor,
|
|
411
|
+
boxShadow: "0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.14), 0 7px 10px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.grayColor[2]) + ",.4)"
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
rose: {
|
|
415
|
+
"&,&:hover,&:focus": {
|
|
416
|
+
color: _rootStyle.whiteColor,
|
|
417
|
+
backgroundColor: _rootStyle.roseColor[0],
|
|
418
|
+
boxShadow: "0 4px 20px 0 rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.blackColor) + ",.14), 0 7px 10px -5px rgba(" + (0, _rootStyle.hexToRgb)(_rootStyle.roseColor[0]) + ",.4)"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
sidebarWrapper: {
|
|
422
|
+
position: "relative",
|
|
423
|
+
height: "calc(100vh - 75px)",
|
|
424
|
+
overflow: "auto",
|
|
425
|
+
width: "260px",
|
|
426
|
+
zIndex: "4",
|
|
427
|
+
overflowScrolling: "touch",
|
|
428
|
+
transitionProperty: "top, bottom, width",
|
|
429
|
+
transitionDuration: ".2s, .2s, .35s",
|
|
430
|
+
transitionTimingFunction: "linear, linear, ease",
|
|
431
|
+
color: "inherit",
|
|
432
|
+
paddingBottom: "30px"
|
|
433
|
+
},
|
|
434
|
+
sidebarWrapperWithPerfectScrollbar: {
|
|
435
|
+
overflow: "hidden !important"
|
|
436
|
+
},
|
|
437
|
+
user: {
|
|
438
|
+
paddingBottom: "20px",
|
|
439
|
+
margin: "20px auto 0",
|
|
440
|
+
position: "relative",
|
|
441
|
+
"&:after": {
|
|
442
|
+
content: '""',
|
|
443
|
+
position: "absolute",
|
|
444
|
+
bottom: "0",
|
|
445
|
+
right: "15px",
|
|
446
|
+
height: "1px",
|
|
447
|
+
width: "calc(100% - 30px)",
|
|
448
|
+
backgroundColor: "hsla(0,0%,100%,.3)"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
photo: _objectSpread({
|
|
452
|
+
transition: "all 300ms linear",
|
|
453
|
+
width: "34px",
|
|
454
|
+
height: "34px",
|
|
455
|
+
overflow: "hidden",
|
|
456
|
+
float: "left",
|
|
457
|
+
zIndex: "5",
|
|
458
|
+
marginRight: "11px",
|
|
459
|
+
borderRadius: "50%",
|
|
460
|
+
marginLeft: "23px"
|
|
461
|
+
}, _rootStyle.boxShadow),
|
|
462
|
+
photoRTL: {
|
|
463
|
+
float: "right",
|
|
464
|
+
marginLeft: "12px",
|
|
465
|
+
marginRight: "24px"
|
|
466
|
+
},
|
|
467
|
+
avatarImg: {
|
|
468
|
+
width: "100%",
|
|
469
|
+
verticalAlign: "middle",
|
|
470
|
+
border: "0"
|
|
471
|
+
},
|
|
472
|
+
userCollapseButton: {
|
|
473
|
+
margin: "0",
|
|
474
|
+
padding: "6px 15px",
|
|
475
|
+
"&:hover": {
|
|
476
|
+
background: "none"
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
userCollapseLinks: {
|
|
480
|
+
marginTop: "-4px"
|
|
478
481
|
}
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
marginTop: "-4px"
|
|
482
|
-
}
|
|
483
|
-
});
|
|
482
|
+
};
|
|
483
|
+
};
|
|
484
484
|
|
|
485
485
|
var _default = sidebarStyle;
|
|
486
486
|
exports.default = _default;
|