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.

78 lines
1.4 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 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-label {
  23. height: 20px;
  24. line-height: 20px;
  25. font-size: 0.75rem;
  26. color: #c0c4cc;
  27. }
  28. }
  29. .field-oper {
  30. height: 40px;
  31. line-height: 40px;
  32. margin-left: 5px;
  33. margin-right: 5px;
  34. display: none;
  35. }
  36. }
  37. .field-box:hover .field-info.enabled {
  38. display: none;
  39. }
  40. .field-box:hover .field-oper.enabled {
  41. display: inline;
  42. }
  43. .dashed-circle {
  44. width: 40px;
  45. height: 40px;
  46. border: 2px dashed #000000;
  47. border-radius: 40px/40px;
  48. }
  49. .field-box:hover .dashed-circle {
  50. border: 2px dashed #409eff;
  51. }
  52. .avatar-container {
  53. height: 40px;
  54. display: flex;
  55. align-items: center;
  56. .avatar-wrapper {
  57. cursor: pointer;
  58. display: flex;
  59. flex-direction: row;
  60. align-items: center;
  61. .user-avatar {
  62. height: 36px;
  63. width: 36px;
  64. border-radius: 50%;
  65. margin-right: 12px;
  66. }
  67. .username{
  68. color: #7D7D7D;
  69. font-size: 0.75rem;
  70. }
  71. .el-icon-caret-bottom {
  72. font-size: 22px;
  73. }
  74. }
  75. }