12345678910111213141516171819202122232425262728293031 |
- /* Popover 弹出框(图标选择器)
- ------------------------------- */
- .icon-selector-popper {
- padding: 0 !important;
- .icon-selector-warp {
- height: 260px;
- overflow: hidden;
- position: relative;
- .icon-selector-warp-title {
- position: absolute;
- height: 40px;
- line-height: 40px;
- left: 15px;
- }
- .el-tabs__header {
- display: flex;
- justify-content: flex-end;
- padding: 0 15px;
- border-bottom: 1px solid var(--el-border-color-light);
- margin: 0 !important;
- .el-tabs__nav-wrap {
- &::after {
- height: 0 !important;
- }
- .el-tabs__item {
- padding: 0 5px !important;
- }
- }
- }
- }
- }
|