小说后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

79 lines
1.3 KiB

  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. .el-tooltip__popper.is-light.inviteCodeTips {
  13. border: 1px solid #eee;
  14. box-shadow: 0 0 5px 2px #999;
  15. color: #1890ff;
  16. }
  17. .el-tooltip__popper.is-light.inviteCodeTips .popper__arrow {
  18. border-color: #ddd transparent;
  19. }
  20. .el-table thead {
  21. color: #333;
  22. font-size: 14px;
  23. font-weight: 500;
  24. }
  25. .el-button--mini {
  26. padding: 8px 15px;
  27. font-size: 14px;
  28. }
  29. .el-input--mini .el-input__inner {
  30. height: 32px;
  31. line-height: 32px;
  32. }
  33. .el-table--border th,
  34. .el-table--border td {
  35. border-right: 1px solid #f4f4f4;
  36. }
  37. .el-table th.is-leaf,
  38. .el-table td {
  39. border-bottom: 1px solid #f4f4f4;
  40. }
  41. .el-table::before,
  42. .el-table--group::after,
  43. .el-table--border::after {
  44. background-color: #f4f4f4;
  45. }
  46. /** 分页 */
  47. .el-pagination {
  48. font-weight: 400;
  49. }
  50. .el-pagination button,
  51. .el-pagination span:not([class*='suffix']),
  52. .el-pager li {
  53. height: 32px;
  54. line-height: 32px;
  55. }
  56. .el-pagination__jump {
  57. margin-left: 0;
  58. }
  59. .el-pagination__jump .el-input__inner {
  60. border-radius: 2px;
  61. }
  62. .el-pagination .el-select .el-input .el-input__inner {
  63. border-radius: 2px;
  64. }
  65. .el-pagination.is-background .el-pager li:not(.disabled).active {
  66. background: none !important;
  67. border: 1px solid #1890ff;
  68. color: #1890ff;
  69. }
  70. </style>