| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .main {
- .logo-con {
- height: 50px;
- img {
- height: 44px;
- width: auto;
- display: block;
- margin: 0 auto;
- }
- }
- .header-con {
- background: #fff;
- padding: 0 20px;
- width: 100%;
- }
- .ivu-layout-header {
- height: 50px;
- line-height: 50px;
- }
- .main-layout-con {
- height: 100%;
- overflow: hidden;
- }
- .main-content-con {
- height: ~'calc(100% - 70px)';
- overflow: hidden;
- }
- .tag-nav-wrapper {
- padding: 0;
- height: 42px;
- background: #f0f0f0;
- }
- .content-wrapper {
- margin: 0 16px;
- height: ~'calc(100% - 80px)';
- overflow: auto;
- }
- .left-sider {
- .ivu-layout-sider-children {
- overflow-y: scroll;
- margin-right: -16px;
- overflow-x: hidden;
- }
- }
- }
- .ivu-menu-item > i {
- margin-right: 8px !important;
- }
- .ivu-menu-submenu > .ivu-menu > .ivu-menu-item > i {
- margin-right: 8px !important;
- }
- .collased-menu-dropdown {
- width: 100%;
- margin: 0;
- line-height: normal;
- padding: 7px 0 6px 16px;
- clear: both;
- font-size: 12px !important;
- white-space: nowrap;
- list-style: none;
- cursor: pointer;
- transition: background 0.2s ease-in-out;
- &:hover {
- background: rgba(100, 100, 100, 0.1);
- }
- & * {
- color: #515a6e;
- }
- .ivu-menu-item > i {
- margin-right: 12px !important;
- }
- .ivu-menu-submenu > .ivu-menu > .ivu-menu-item > i {
- margin-right: 8px !important;
- }
- }
- .ivu-select-dropdown.ivu-dropdown-transfer {
- max-height: 400px;
- }
|