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.

82 lines
1.5 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. .field-box {
  2. display: flex;
  3. margin-right: 5px;
  4. align-items: center;
  5. cursor: pointer;
  6. height: 40px;
  7. line-height: 40px;
  8. .field-avater {
  9. background-color: #ff9f73;
  10. }
  11. .field-info {
  12. height: 40px;
  13. line-height: 40px;
  14. margin-left: 10px;
  15. display: flex;
  16. flex-direction: column;
  17. .field-value {
  18. height: 20px;
  19. line-height: 20px;
  20. font-size: 0.75rem;
  21. }
  22. .field-value-center {
  23. line-height: 40px;
  24. font-size: 0.75rem;
  25. }
  26. .field-label {
  27. height: 20px;
  28. line-height: 20px;
  29. font-size: 0.75rem;
  30. color: #c0c4cc;
  31. }
  32. }
  33. .field-oper {
  34. height: 40px;
  35. line-height: 40px;
  36. margin-left: 5px;
  37. margin-right: 5px;
  38. display: none;
  39. }
  40. }
  41. .field-box:hover .field-info.enabled {
  42. display: none;
  43. }
  44. .field-box:hover .field-oper.enabled {
  45. display: inline;
  46. }
  47. .dashed-circle {
  48. width: 40px;
  49. height: 40px;
  50. border: 2px dashed #000000;
  51. border-radius: 40px/40px;
  52. }
  53. .field-box:hover .dashed-circle {
  54. border: 2px dashed #409eff;
  55. }
  56. .avatar-container {
  57. height: 40px;
  58. display: flex;
  59. align-items: center;
  60. .avatar-wrapper {
  61. cursor: pointer;
  62. display: flex;
  63. flex-direction: row;
  64. align-items: center;
  65. .user-avatar {
  66. height: 36px;
  67. width: 36px;
  68. border-radius: 50%;
  69. margin-right: 12px;
  70. }
  71. .username{
  72. color: #7D7D7D;
  73. font-size: 0.75rem;
  74. }
  75. .el-icon-caret-bottom {
  76. font-size: 22px;
  77. }
  78. }
  79. }