|
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
-
- <script>
- export default {
- name: 'App'
- }
- </script>
-
- <style>
- .el-tooltip__popper.is-light.inviteCodeTips {
- border: 1px solid #eee;
- box-shadow: 0 0 5px 2px #999;
- color: #1890ff;
- }
-
- .el-tooltip__popper.is-light.inviteCodeTips .popper__arrow {
- border-color: #ddd transparent;
- }
-
- .el-table thead {
- color: #333;
- font-size: 14px;
- font-weight: 500;
- }
-
- .el-button--mini {
- padding: 8px 15px;
- font-size: 14px;
- }
-
- .el-input--mini .el-input__inner {
- height: 32px;
- line-height: 32px;
- }
-
- .el-table--border th,
- .el-table--border td {
- border-right: 1px solid #f4f4f4;
- }
- .el-table th.is-leaf,
- .el-table td {
- border-bottom: 1px solid #f4f4f4;
- }
- .el-table::before,
- .el-table--group::after,
- .el-table--border::after {
- background-color: #f4f4f4;
- }
-
- /** 分页 */
- .el-pagination {
- font-weight: 400;
- }
- .el-pagination button,
- .el-pagination span:not([class*='suffix']),
- .el-pager li {
- height: 32px;
- line-height: 32px;
- }
- .el-pagination__jump {
- margin-left: 0;
- }
- .el-pagination__jump .el-input__inner {
- border-radius: 2px;
- }
- .el-pagination .el-select .el-input .el-input__inner {
- border-radius: 2px;
- }
- .el-pagination.is-background .el-pager li:not(.disabled).active {
- background: none !important;
- border: 1px solid #1890ff;
- color: #1890ff;
- }
- </style>
|