@steedos-widgets/amis-object 1.0.11 → 1.0.12

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.
@@ -1,3 +1,4 @@
1
+ import './AmisGlobalHeader.less';
1
2
  export declare const AmisGlobalHeader: (props: any) => Promise<{
2
3
  type: string;
3
4
  id: string;
@@ -635,6 +635,10 @@ body {
635
635
  }
636
636
 
637
637
 
638
+ .steedos-dropdown-button-overlay .ant-dropdown-menu-item {
639
+ padding: 0px !important;
640
+ }
641
+
638
642
  @media (min-width: 767px) {
639
643
  .steedos-amis-form .antd-Collapse .antd-Form--normal,
640
644
  .steedos-amis-form .antd-Form--normal .antd-Tabs .antd-Tabs-content .antd-Tabs-pane .form-content {
@@ -654,20 +658,6 @@ body {
654
658
  }
655
659
  }
656
660
 
657
- body.sidebar #sidebar {
658
- margin-top: 50px;
659
- }
660
- body.sidebar.sidebar-open #main {
661
- padding-left: 220px;
662
- }
663
- @media (max-width: 768px) {
664
- body.sidebar.sidebar-open #sidebar {
665
- margin-top: 50px;
666
- }
667
- body.sidebar.sidebar-open #main {
668
- padding-left: 0;
669
- }
670
- }
671
661
  .steedos-context-bar .antd-Nav-list {
672
662
  border-bottom: 0px;
673
663
  height: 40px;
@@ -679,6 +669,7 @@ body.sidebar.sidebar-open #main {
679
669
  border: 0px;
680
670
  padding-left: 12px;
681
671
  padding-right: 12px;
672
+ border-top: solid transparent 3px;
682
673
  }
683
674
  .steedos-context-bar .antd-Nav .antd-Nav-list--tabs .antd-Nav-item:hover > a,
684
675
  .steedos-context-bar .antd-Nav .antd-Nav-list--tabs .antd-Nav-item > a:focus {
@@ -697,3 +688,27 @@ body.sidebar.sidebar-open #main {
697
688
  .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemToggler {
698
689
  height: auto;
699
690
  }
691
+
692
+ .sidebar-wrapper {
693
+ background: #1f2937;
694
+ transition: 0.5s ease translate;
695
+ translate: -100% 0;
696
+ will-change: transform;
697
+ }
698
+ body.sidebar-open .sidebar-wrapper {
699
+ translate: 0 0;
700
+ }
701
+ body.sidebar #sidebar {
702
+ margin-top: 50px;
703
+ }
704
+ body.sidebar.sidebar-open #main {
705
+ padding-left: 220px;
706
+ }
707
+ @media (max-width: 768px) {
708
+ body.sidebar.sidebar-open #sidebar {
709
+ margin-top: 50px;
710
+ }
711
+ body.sidebar.sidebar-open #main {
712
+ padding-left: 0;
713
+ }
714
+ }