Dashboard sipadu mbip
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.

_mail-pages.scss 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /** =====================
  2. Mail-pages css start
  3. ========================== **/
  4. .card-block.email-card{
  5. padding: 10px 25px;
  6. }
  7. .email-card {
  8. .user-head {
  9. background-color: $primary-color;
  10. padding: 10px;
  11. min-height: 80px;
  12. display: flex;
  13. align-items: center;
  14. .user-name {
  15. margin-left: 10px;
  16. margin-bottom: 10px;
  17. span {
  18. display: block;
  19. color: $white-txt;
  20. }
  21. }
  22. }
  23. label{
  24. margin-bottom: 0;
  25. }
  26. .user-body {
  27. margin-left: -15px;
  28. margin-right: -15px;
  29. background-color: #fff;
  30. .page-list {
  31. border-bottom:0px solid transparent;
  32. li {
  33. text-transform: capitalize;
  34. border-bottom: 1px solid #e9ecef;
  35. transition: all ease-in .3s;
  36. cursor: pointer;
  37. &.mail-section {
  38. display: block;
  39. margin-bottom: 0;
  40. a{
  41. padding: 15px 20px;
  42. border-radius: 0px !important;
  43. color: $inverse-color;
  44. border: 0px solid transparent;
  45. &.active,
  46. &:hover {
  47. color:$primary-color;
  48. background-color: lighten($primary-color,30%);
  49. }
  50. }
  51. }
  52. i {
  53. margin-right: 10px;
  54. }
  55. &:last-child{
  56. border-bottom:0px solid transparent;
  57. }
  58. }
  59. }
  60. .label-list {
  61. a {
  62. padding: 10px 20px;
  63. display: block;
  64. color: #6a6a6a;
  65. position: relative;
  66. padding-left: 25px;
  67. &:before {
  68. content: '';
  69. position: absolute;
  70. height: 10px;
  71. width: 10px;
  72. border-radius: 50px;
  73. left: 0;
  74. top: 16px;
  75. }
  76. &.mail-work {
  77. &:before {
  78. background-color: $primary-color;
  79. }
  80. }
  81. &.mail-design {
  82. &:before {
  83. background-color: $info-color;
  84. }
  85. }
  86. &.mail-family {
  87. &:before {
  88. background-color: $success-color;
  89. }
  90. }
  91. &.mail-friends {
  92. &:before {
  93. background-color: $warning-color;
  94. }
  95. }
  96. &.mail-office {
  97. &:before {
  98. background-color: $danger-color;
  99. }
  100. }
  101. }
  102. }
  103. }
  104. .mail-box-head {
  105. background-color: $primary-color;
  106. min-height: 80px;
  107. padding: 20px 0 0;
  108. .input-group {
  109. margin-bottom: 0;
  110. }
  111. .form-control,.float-label,.material-addone{
  112. color: #fff;
  113. }
  114. }
  115. .mail-body {
  116. padding: 20px 0;
  117. .mail-body-header {
  118. margin-bottom: 20px;
  119. .btn,.btn-group{
  120. margin: 2px;
  121. }
  122. }
  123. }
  124. .mail-body-content {
  125. .check-star {
  126. display: flex;
  127. align-items: center;
  128. .icofont-star {
  129. margin-top: -8px;
  130. }
  131. }
  132. tr {
  133. transition: all ease-in .3s;
  134. }
  135. tr:hover {
  136. background-color: lighten($primary-color,30%);
  137. cursor: pointer;
  138. }
  139. .unread {
  140. a {
  141. color: #222;
  142. font-weight: 500;
  143. }
  144. }
  145. .read {
  146. a {
  147. color: #222;
  148. font-weight: 400;
  149. }
  150. }
  151. }
  152. }
  153. .email-read {
  154. .photo-table {
  155. padding-right: 10px;
  156. }
  157. .user-name{
  158. margin-bottom:10px;
  159. }
  160. }
  161. .mail-body-content.email-read {
  162. .card {
  163. box-shadow: none;
  164. margin-bottom: 0;
  165. }
  166. }
  167. .user-name {
  168. margin-bottom: 20px;
  169. }
  170. .email-card .user-mail h6 {
  171. font-size: 14px;
  172. margin-top: 5px;
  173. margin-bottom: 20px;
  174. color: #292b2c;
  175. }
  176. .email-content {
  177. line-height: 30px;
  178. border-bottom: 1px solid #ccc;
  179. padding-bottom: 15px;
  180. }
  181. .mail-img {
  182. margin-top: 20px;
  183. }
  184. .email-welcome-txt {
  185. font-weight: 500;
  186. }
  187. /**====== Mail-pages css end ======**/