_inbox.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .email-head {
  2. background-color: #fff;
  3. .email-head-subject {
  4. padding: 25px 25px;
  5. border-bottom: 1px solid #e6e6f2;
  6. .icons{
  7. font-size: 14px;
  8. float: right;
  9. .icon{
  10. color: #71738d;
  11. vertical-align: middle;
  12. }
  13. }
  14. .title {
  15. display: block;
  16. font-size: 1.769rem;
  17. font-weight: 500;
  18. color: #3d405c;
  19. a{
  20. .icon{
  21. color: silver;
  22. font-size: 14px;
  23. margin-right: 6px;
  24. vertical-align: middle;
  25. line-height: 31px;
  26. position: relative;
  27. top: -1px;
  28. }
  29. &.active{
  30. .icon{
  31. color: #ffc600;
  32. }
  33. }
  34. }
  35. }
  36. }
  37. .email-head-sender {
  38. padding: 13px 25px;
  39. line-height: 40px;
  40. .date {
  41. float: right;
  42. font-size: 12px;
  43. }
  44. .avatar{
  45. float: left;
  46. margin-right: 10px;
  47. width: 2.25rem;
  48. height: 2.25rem;
  49. border-radius: 50%;
  50. border: 2px solid #e6e6f2;
  51. background: #F7F9FA;
  52. color: #fff;
  53. }
  54. .sender{
  55. font-size: 1.15rem;
  56. .email{
  57. font-size: 12px;
  58. }
  59. }
  60. }
  61. }
  62. .email-body{
  63. background-color: #fff;
  64. border-top: 1px solid #e6e6f2;
  65. padding: 30px 28px;
  66. }
  67. .email-attachments{
  68. background-color: #fff;
  69. padding: 25px 28px;
  70. border-top: 1px solid #e6e6f2;
  71. .title{
  72. display: block;
  73. font-weight: 500;
  74. }
  75. ul{
  76. list-style: none;
  77. margin: 15px 0 0;
  78. padding: 0;
  79. li{
  80. line-height: 23px;
  81. a{
  82. color: #404040;
  83. font-weight: 500;
  84. }
  85. }
  86. }
  87. }