| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- ::-webkit-scrollbar-track-piece {
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 6px;
- background-color: #99a9bf;
- }
- .el-message-box__message {
- word-wrap: break-word;
- }
- .el-range-separator {
- box-sizing: content-box;
- }
- .el-pagination__jump {
- margin-left: $spacing--xs;
- }
- .el-result {
- padding: $padding--2xl $padding--lg;
- }
- .el-drawer__body {
- display: flex;
- flex-direction: column;
- }
- .el-tree.inline-flex {
- display: inline-flex;
- flex-direction: column;
- min-width: 100%;
- }
- .el-tree.ellipsis {
- .el-tree-node__label {
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
|