@agilemotion/oui-react-js 1.6.1 → 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.
Files changed (228) hide show
  1. package/dist/ApplicationManager.js +698 -421
  2. package/dist/BasicApp.js +5 -5
  3. package/dist/BasicAppHome.js +55 -26
  4. package/dist/DynamicJS.js +147 -65
  5. package/dist/InteractionPortalApp.css +1 -1
  6. package/dist/InteractionPortalApp.js +5 -5
  7. package/dist/InteractionPortalAppHome.js +57 -22
  8. package/dist/InteractionPortalApp_old.js +107 -61
  9. package/dist/RestUtils.js +339 -287
  10. package/dist/TypedValue.js +18 -15
  11. package/dist/Utils.js +375 -276
  12. package/dist/WithRouter.js +6 -6
  13. package/dist/assets/jss/components/authNavbarStyle.js +166 -164
  14. package/dist/assets/jss/components/buttonStyle.js +1 -1
  15. package/dist/assets/jss/components/cardAvatarStyle.js +1 -1
  16. package/dist/assets/jss/components/cardBodyStyle.js +1 -1
  17. package/dist/assets/jss/components/cardFooterStyle.js +1 -1
  18. package/dist/assets/jss/components/cardHeaderStyle.js +13 -13
  19. package/dist/assets/jss/components/cardIconStyle.js +1 -1
  20. package/dist/assets/jss/components/cardStyle.js +1 -1
  21. package/dist/assets/jss/components/cardTextStyle.js +1 -1
  22. package/dist/assets/jss/components/customDropdownStyle.js +168 -169
  23. package/dist/assets/jss/components/customInputStyle.js +9 -3
  24. package/dist/assets/jss/components/dropdownStyle.js +69 -69
  25. package/dist/assets/jss/components/footerStyle.js +19 -13
  26. package/dist/assets/jss/components/headerLinksStyle.js +45 -48
  27. package/dist/assets/jss/components/headerStyle.js +68 -65
  28. package/dist/assets/jss/components/navbarLinksStyle.js +66 -77
  29. package/dist/assets/jss/components/navbarStyle.js +79 -76
  30. package/dist/assets/jss/components/sidebarStyle.js +436 -436
  31. package/dist/assets/jss/components/typographyStyle.js +9 -3
  32. package/dist/assets/jss/rootStyle.js +96 -81
  33. package/dist/assets/jss/views/layoutStyle.js +44 -41
  34. package/dist/assets/jss/views/loginBasicStyle.js +1 -1
  35. package/dist/assets/jss/views/loginBusinessPortalStyle.js +1 -1
  36. package/dist/assets/jss/views/loginStyle.js +82 -77
  37. package/dist/components/AlertBar.js +50 -17
  38. package/dist/components/AlertItem.js +35 -12
  39. package/dist/components/AlertTemplate.js +30 -29
  40. package/dist/components/Button.js +62 -34
  41. package/dist/components/Calendar.js +140 -91
  42. package/dist/components/ConfirmationDialog.js +36 -11
  43. package/dist/components/DataGrid.js +512 -270
  44. package/dist/components/DataGridColumn.js +47 -22
  45. package/dist/components/DataGridFilter.js +186 -105
  46. package/dist/components/DataGridHeading.js +50 -32
  47. package/dist/components/Dialog.js +90 -35
  48. package/dist/components/DocumentTemplateDesigner.js +34 -16
  49. package/dist/components/DocumentTemplateDesignerComponent.js +124 -48
  50. package/dist/components/DocumentTemplatePlaceholderDialog.js +52 -30
  51. package/dist/components/DocumentViewer.js +34 -18
  52. package/dist/components/DocumentViewerComponent.js +26 -9
  53. package/dist/components/ElementResizeHandler.js +229 -207
  54. package/dist/components/FileThumb.js +32 -10
  55. package/dist/components/Graph.js +153 -85
  56. package/dist/components/GraphNode.js +58 -38
  57. package/dist/components/HtmlPanel.js +67 -39
  58. package/dist/components/Icon.js +206 -166
  59. package/dist/components/LoadingIndicator.js +3 -3
  60. package/dist/components/LottieIcon.js +1 -1
  61. package/dist/components/PopupView.js +39 -19
  62. package/dist/components/Portlet.js +32 -17
  63. package/dist/components/RegularButton.js +28 -32
  64. package/dist/components/SignaturePanel.js +37 -17
  65. package/dist/components/SocketManager.js +178 -119
  66. package/dist/components/StepperTitleBar.js +62 -42
  67. package/dist/components/TabPage.js +30 -25
  68. package/dist/components/TabPanel.js +86 -33
  69. package/dist/components/TableCellContent.js +51 -32
  70. package/dist/components/TemplateDesigner.js +173 -121
  71. package/dist/components/TemplateItemEventHandler.js +335 -221
  72. package/dist/components/TemplateTable.js +183 -118
  73. package/dist/components/TitleBar.js +26 -11
  74. package/dist/components/Toolbar.js +67 -38
  75. package/dist/components/Tooltip.js +43 -35
  76. package/dist/components/Tree.js +85 -44
  77. package/dist/components/UseIsVisible.js +25 -4
  78. package/dist/components/card/Card.js +27 -33
  79. package/dist/components/card/CardAvatar.js +20 -19
  80. package/dist/components/card/CardBody.js +24 -27
  81. package/dist/components/card/CardFooter.js +23 -24
  82. package/dist/components/card/CardHeader.js +24 -27
  83. package/dist/components/card/CardIcon.js +17 -13
  84. package/dist/components/card/CardText.js +17 -13
  85. package/dist/components/customInput/CustomInput.js +22 -36
  86. package/dist/components/dashboard/{BasicBusinessAppDashboard.js → FoldingSideTabDashboard.js} +111 -63
  87. package/dist/components/dashboard/SideMenuModuleDashboard.css +60 -0
  88. package/dist/components/dashboard/SideMenuModuleDashboard.js +423 -0
  89. package/dist/components/dashboard/TopMenuModuleDashboard.js +138 -0
  90. package/dist/components/dashboard/components/Header.js +29 -12
  91. package/dist/components/dashboard/components/LeftDrawer.js +3 -5
  92. package/dist/components/dashboard/components/UserIdentity.js +2 -2
  93. package/dist/components/dashboard/components/blackDashboard/fixedPlugin/FixedPlugin.js +131 -87
  94. package/dist/components/dashboard/components/blackDashboard/sidebar/FoldingTabSidebar.js +488 -0
  95. package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenu.js +64 -0
  96. package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenuSidebar.css +65 -0
  97. package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenuSidebar.js +556 -0
  98. package/dist/components/dashboard/components/portal/Timeline.js +1 -1
  99. package/dist/components/dashboard/components/portal/Workspace.js +5 -11
  100. package/dist/components/footer/Footer.js +31 -24
  101. package/dist/components/footer/HomeFooter.js +68 -34
  102. package/dist/components/form/AddressSearch.js +78 -42
  103. package/dist/components/form/AutoComplete.js +136 -55
  104. package/dist/components/form/BaseField.js +108 -56
  105. package/dist/components/form/Checkbox.js +10 -8
  106. package/dist/components/form/DatePicker.js +47 -25
  107. package/dist/components/form/FieldSet.js +217 -84
  108. package/dist/components/form/Form.js +334 -200
  109. package/dist/components/form/GridField.js +185 -82
  110. package/dist/components/form/IconField.js +9 -7
  111. package/dist/components/form/ImageEditor.js +141 -92
  112. package/dist/components/form/LabelField.js +12 -10
  113. package/dist/components/form/LookupField.js +54 -32
  114. package/dist/components/form/MultiFileUploadField.js +101 -67
  115. package/dist/components/form/RadioGroup.js +33 -16
  116. package/dist/components/form/Section.js +84 -34
  117. package/dist/components/form/SelectItem.js +55 -33
  118. package/dist/components/form/SignatureTemplateDesignerField.js +11 -9
  119. package/dist/components/form/Switch.js +10 -8
  120. package/dist/components/form/TextField.js +34 -16
  121. package/dist/components/form/TimePicker.js +19 -15
  122. package/dist/components/form/TransferList.js +153 -75
  123. package/dist/components/form/UploadField.js +183 -128
  124. package/dist/components/grid/GridContainer.js +12 -8
  125. package/dist/components/grid/GridItem.js +12 -8
  126. package/dist/components/layout/CollapsiblePanel.js +44 -18
  127. package/dist/components/layout/Layout.js +81 -40
  128. package/dist/components/layout/VC.css +1 -1
  129. package/dist/components/layout/View.js +136 -62
  130. package/dist/components/layout/ViewContainer.js +13 -11
  131. package/dist/components/layout/ViewPort.js +25 -10
  132. package/dist/components/layout/Window.js +87 -53
  133. package/dist/components/layout/WindowViewPort.js +38 -16
  134. package/dist/components/media/ClosablePanel.js +7 -7
  135. package/dist/components/media/LobbyWaitingList.js +7 -9
  136. package/dist/components/media/MediaSoupHelper.js +379 -187
  137. package/dist/components/media/SideBarContent.js +22 -14
  138. package/dist/components/media/SocketRequest.js +5 -1
  139. package/dist/components/media/SocketResponse.js +5 -1
  140. package/dist/components/media/Timer.js +35 -15
  141. package/dist/components/media/Toolbar.css +5 -0
  142. package/dist/components/media/Toolbar.js +220 -102
  143. package/dist/components/media/ToolbarButton.js +82 -33
  144. package/dist/components/media/Toolbar_bck.js +142 -70
  145. package/dist/components/media/Tracks.js +31 -28
  146. package/dist/components/media/TrainingRoom.js +284 -121
  147. package/dist/components/media/Transports.js +27 -24
  148. package/dist/components/media/VCEventManager.js +95 -31
  149. package/dist/components/media/VCEventType.js +5 -1
  150. package/dist/components/media/VCParticipantList.js +40 -14
  151. package/dist/components/media/VCParticipantListItem.js +92 -41
  152. package/dist/components/media/VCRoom.js +29 -11
  153. package/dist/components/media/VCRoomParticipant.js +488 -242
  154. package/dist/components/media/VCRoomRecorder.js +236 -175
  155. package/dist/components/media/VCRoomWorkspace.js +505 -245
  156. package/dist/components/media/Video.js +89 -25
  157. package/dist/components/media/VideoPlayer.js +56 -22
  158. package/dist/components/media/chat/ChatRoom.js +255 -132
  159. package/dist/components/media/chat/ChatRoomItem.js +35 -14
  160. package/dist/components/media/chat/ChatRoomList.js +43 -13
  161. package/dist/components/menu/CollapsibleMenu.js +39 -20
  162. package/dist/components/menu/MenuBars.js +81 -48
  163. package/dist/components/menu/MenuButton.js +95 -60
  164. package/dist/components/menu/MenuItem.js +28 -9
  165. package/dist/components/menu/MenuLink.js +12 -10
  166. package/dist/components/menu/PopupMenu.js +16 -12
  167. package/dist/components/navbars/AuthNavbar.js +27 -18
  168. package/dist/components/navbars/HomeNavbar.js +243 -194
  169. package/dist/components/navbars/PortalNavbar.js +50 -26
  170. package/dist/components/signatures/AgilitySignaturePanel.js +96 -39
  171. package/dist/components/signatures/AlertItem.js +36 -13
  172. package/dist/components/signatures/Card.js +4 -4
  173. package/dist/components/signatures/DocumentContainer.js +141 -57
  174. package/dist/components/signatures/ImageSignatureInput.js +90 -59
  175. package/dist/components/signatures/MenuButton.js +53 -33
  176. package/dist/components/signatures/Prompt.js +26 -5
  177. package/dist/components/signatures/ResponsiveTable.js +302 -197
  178. package/dist/components/signatures/SearchView.js +77 -36
  179. package/dist/components/signatures/SignatorySearch.js +30 -10
  180. package/dist/components/signatures/SignatorySearchForm.js +35 -18
  181. package/dist/components/signatures/SignatureInput.js +56 -26
  182. package/dist/components/signatures/SignatureInputProps.js +107 -55
  183. package/dist/components/signatures/SignatureTemplateDesigner.js +340 -235
  184. package/dist/components/signatures/Toolbar.js +135 -94
  185. package/dist/components/signatures/ViewUtils.js +273 -224
  186. package/dist/components/typography/Danger.js +3 -5
  187. package/dist/components/typography/Info.js +3 -5
  188. package/dist/components/typography/Link.js +3 -5
  189. package/dist/event/ActionHandlers.js +57 -43
  190. package/dist/event/Event.js +16 -13
  191. package/dist/event/EventListener.js +39 -36
  192. package/dist/event/EventType.js +5 -1
  193. package/dist/event/LoadDataActionHandler.js +20 -8
  194. package/dist/event/Observable.js +323 -142
  195. package/dist/event/RouteActionHandler.js +139 -125
  196. package/dist/event/ScriptActionHandler.js +20 -8
  197. package/dist/event/ServiceCallActionHandler.js +51 -39
  198. package/dist/event/SignalGraphActionHandler.js +19 -7
  199. package/dist/js/Addresses.js +38 -24
  200. package/dist/js/Calendar.js +168 -161
  201. package/dist/js/DynamicLib.js +14 -11
  202. package/dist/js/Media.js +213 -120
  203. package/dist/js/Validators.js +6 -5
  204. package/dist/js/Windows.js +48 -47
  205. package/dist/redux/store/ConfigureStore.js +17 -9
  206. package/dist/redux/store/DashboardStore.js +110 -43
  207. package/dist/redux/store/History.js +1 -1
  208. package/dist/redux/store/SecurityStore.js +59 -20
  209. package/dist/security/TokenManager.js +44 -30
  210. package/dist/theme-default.js +1 -1
  211. package/dist/view/Dashboard.js +230 -137
  212. package/dist/view/PortalDashboard.js +4 -4
  213. package/dist/view/Settings.js +4 -2
  214. package/dist/view/Views.js +27 -14
  215. package/dist/view/security/ChangePasswordBasic.js +97 -40
  216. package/dist/view/security/ForgotPassword.js +59 -22
  217. package/dist/view/security/ForgotPasswordBasic.js +62 -21
  218. package/dist/view/security/Login.js +64 -24
  219. package/dist/view/security/LoginBasic.js +65 -26
  220. package/dist/view/security/LoginInteractionPortal.js +62 -25
  221. package/dist/view/security/ResetPassword.js +65 -23
  222. package/dist/view/security/ResetPasswordBasic.js +91 -37
  223. package/dist/view/security/Security.js +12 -12
  224. package/package.json +1 -2
  225. package/dist/components/dashboard/BusinessPortalAppDashboard.js +0 -115
  226. package/dist/components/dashboard/components/blackDashboard/sidebar/Sidebar.js +0 -447
  227. /package/dist/components/dashboard/{BusinessPortalAppDashboard.css → TopMenuModuleDashboard.css} +0 -0
  228. /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
- const sidebarStyle = theme => ({
11
- drawerPaperRTL: {
12
- [theme.breakpoints.up("md")]: {
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
- drawerPaper: {
22
- border: "none",
23
- position: "fixed",
24
- top: "0",
25
- bottom: "0",
26
- left: "0",
27
- zIndex: "1032",
28
- transitionProperty: "top, bottom, width",
29
- transitionDuration: ".2s, .2s, .35s",
30
- transitionTimingFunction: "linear, linear, ease",
31
- // overflow: 'auto',
32
- ..._rootStyle.boxShadow,
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
- [theme.breakpoints.down("sm")]: {
40
- width: _rootStyle.drawerWidth,
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
- ..._rootStyle.transition
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
- blackBackground: {
69
- color: _rootStyle.whiteColor,
70
- "&:after": {
71
- background: _rootStyle.blackColor,
72
- opacity: ".8"
73
- }
74
- },
75
- blueBackground: {
76
- color: _rootStyle.whiteColor,
77
- "&:after": {
78
- background: _rootStyle.infoColor[0],
79
- opacity: ".93"
80
- }
81
- },
82
- whiteBackground: {
83
- color: _rootStyle.grayColor[2],
84
- "&:after": {
85
- background: _rootStyle.whiteColor,
86
- opacity: ".93"
87
- }
88
- },
89
- whiteAfter: {
90
- "&:after": {
91
- backgroundColor: "hsla(0,0%,71%,.3) !important"
92
- }
93
- },
94
- drawerPaperMini: {
95
- width: _rootStyle.drawerMiniWidth + "px!important"
96
- },
97
- logo: {
98
- padding: "15px 0px",
99
- margin: "0",
100
- display: "block",
101
- position: "relative",
102
- zIndex: "4",
103
- "&:after": {
104
- content: '""',
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
- bottom: "0",
107
- height: "1px",
108
- right: "15px",
109
- width: "calc(100% - 30px)",
110
- backgroundColor: "hsla(0,0%,100%,.3)"
111
- }
112
- },
113
- logoMini: {
114
- transition: "all 300ms linear",
115
- opacity: 1,
116
- float: "left",
117
- textAlign: "center",
118
- width: "30px",
119
- display: "inline-block",
120
- maxHeight: "30px",
121
- marginLeft: "22px",
122
- marginRight: "18px",
123
- marginTop: "7px",
124
- color: "inherit"
125
- },
126
- logoMiniRTL: {
127
- float: "right",
128
- marginRight: "30px",
129
- marginLeft: "26px"
130
- },
131
- logoNormal: { ..._rootStyle.defaultFont,
132
- transition: "all 300ms linear",
133
- display: "block",
134
- opacity: "1",
135
- transform: "translate3d(0px, 0, 0)",
136
- textTransform: "uppercase",
137
- padding: "5px 0px",
138
- fontSize: "18px",
139
- whiteSpace: "nowrap",
140
- fontWeight: "400",
141
- lineHeight: "30px",
142
- overflow: "hidden",
143
- "&,&:hover,&:focus": {
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
- logoNormalRTL: {
148
- textAlign: "right"
149
- },
150
- logoNormalSidebarMini: {
151
- opacity: "0",
152
- transform: "translate3d(-25px, 0, 0)"
153
- },
154
- logoNormalSidebarMiniRTL: {
155
- transform: "translate3d(25px, 0, 0)"
156
- },
157
- img: {
158
- width: "35px",
159
- verticalAlign: "middle",
160
- border: "0"
161
- },
162
- background: {
163
- position: "absolute",
164
- zIndex: "1",
165
- height: "100%",
166
- width: "100%",
167
- display: "block",
168
- top: "0",
169
- left: "0",
170
- backgroundSize: "cover",
171
- backgroundPosition: "center center",
172
- transition: "all 300ms linear"
173
- },
174
- list: {
175
- marginTop: "15px",
176
- paddingLeft: "0",
177
- paddingTop: "0",
178
- paddingBottom: "0",
179
- marginBottom: "0",
180
- listStyle: "none",
181
- color: "inherit",
182
- "&:before,&:after": {
183
- display: "table",
184
- content: '" "'
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
- "&,&:hover,&:focus": {
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
- itemIcon: {
225
- color: "inherit",
226
- width: "30px",
227
- height: "24px",
228
- float: "left",
229
- position: "inherit",
230
- top: "3px",
231
- marginRight: "15px",
232
- textAlign: "center",
233
- verticalAlign: "middle",
234
- opacity: "0.8"
235
- },
236
- itemIconRTL: {
237
- float: "right",
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
- "&,&:hover,&:focus": {
327
+ collapseItemText: _objectSpread(_objectSpread({
304
328
  color: "inherit"
305
- }
306
- },
307
- collapseItemMini: {
308
- color: "inherit",
309
- ..._rootStyle.defaultFont,
310
- textTransform: "uppercase",
311
- width: "30px",
312
- marginRight: "15px",
313
- textAlign: "center",
314
- letterSpacing: "1px",
315
- position: "relative",
316
- float: "left",
317
- display: "inherit",
318
- transition: "transform 300ms ease 0s, opacity 300ms ease 0s",
319
- fontSize: "14px"
320
- },
321
- collapseItemMiniRTL: {
322
- float: "right",
323
- marginLeft: "30px",
324
- marginRight: "1px"
325
- },
326
- collapseItemText: {
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
- bottom: "0",
445
- right: "15px",
446
- height: "1px",
447
- width: "calc(100% - 30px)",
448
- backgroundColor: "hsla(0,0%,100%,.3)"
449
- }
450
- },
451
- photo: {
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
- },
463
- photoRTL: {
464
- float: "right",
465
- marginLeft: "12px",
466
- marginRight: "24px"
467
- },
468
- avatarImg: {
469
- width: "100%",
470
- verticalAlign: "middle",
471
- border: "0"
472
- },
473
- userCollapseButton: {
474
- margin: "0",
475
- padding: "6px 15px",
476
- "&:hover": {
477
- background: "none"
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
- userCollapseLinks: {
481
- marginTop: "-4px"
482
- }
483
- });
482
+ };
483
+ };
484
484
 
485
485
  var _default = sidebarStyle;
486
486
  exports.default = _default;