common.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .vue-main {
  2. min-height: 100px;
  3. }
  4. .vue-main + .vue-main {
  5. margin-top: 20px;
  6. }
  7. .all {
  8. background: none;
  9. }
  10. .vue-main-title-sub {
  11. padding-left: 20px;
  12. text-align: left;
  13. font-size: 14px;
  14. color: rgb(153, 153, 153);
  15. }
  16. .input-merge-row .el-col:first-child .el-input-group__append {
  17. border-right-width: 0;
  18. border-top-right-radius: 0;
  19. border-bottom-right-radius: 0;
  20. }
  21. .input-merge-row .el-col:nth-child(2) .el-input-group {
  22. margin-left: -1px;
  23. }
  24. .input-merge-row .el-col:nth-child(2) .el-input-group input {
  25. border-top-left-radius: 0;
  26. border-bottom-left-radius: 0;
  27. }
  28. .tabs {
  29. margin: 20px 10px;
  30. }
  31. .tab-item {
  32. display: inline-block;
  33. padding: 10px 20px;
  34. color: #333;
  35. cursor: pointer;
  36. }
  37. .tab-item:hover,
  38. .tab-item-active {
  39. color: white;
  40. border-radius: 50px;
  41. background-color: #13c7a7;
  42. }
  43. .member-info {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .member-info .member-avatar {
  48. flex-shrink: 0;
  49. margin: 0 5px;
  50. width: 40px;
  51. height: 40px;
  52. border-radius: 50%;
  53. }
  54. .ellipsis1 {
  55. text-overflow: ellipsis;
  56. overflow: hidden;
  57. white-space: nowrap;
  58. }