Dialog.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. $create-account-background-color: dynamic(#a1a1a2);
  2. $dialog-trigger-color: dynamic(#e5e5e5);
  3. .auth-dialog {
  4. .auth-profile-wrap {
  5. background: $base-color;
  6. color: $lightest-color;
  7. line-height: 24px;
  8. .user-name-text {
  9. font-size: 18px;
  10. font-weight: bold;
  11. }
  12. .user-post-text {
  13. font-size: 14px;
  14. }
  15. .auth-profile-img {
  16. @include border-radius($circle-border-radius);
  17. }
  18. }
  19. .x-form-text-default,
  20. .x-placeholder-label-default {
  21. padding: 15px;
  22. }
  23. .register-page-back-button,
  24. .register-page-back-button .x-frame-mc {
  25. background-color: $lightest-color;
  26. border: none;
  27. padding: 5px 0 0 0;
  28. .x-btn-inner-default-small {
  29. padding: 0;
  30. height: 20px;
  31. color: $base-color;
  32. &:hover {
  33. text-decoration: underline;
  34. }
  35. }
  36. &.x-btn-pressed.x-btn-default-small {
  37. background-color: transparent;
  38. }
  39. }
  40. .trigger-glyph-noop {
  41. cursor: default;
  42. }
  43. .x-form-trigger {
  44. text-align: right;
  45. width: 50px;
  46. }
  47. .password-trigger,
  48. .auth-email-trigger,
  49. .auth-password-trigger,
  50. .auth-envelope-trigger {
  51. &:before{
  52. top: 10px;
  53. left: -18px;
  54. position: relative;
  55. color: $dialog-trigger-color;
  56. font-size: 30px;
  57. }
  58. &.password-trigger:before,
  59. &.auth-password-trigger:before {
  60. content: "\f023";
  61. }
  62. &.auth-email-trigger:before {
  63. content: "\f007";
  64. }
  65. &.auth-envelope-trigger:before {
  66. content: "\f0e0";
  67. }
  68. }
  69. .seperator {
  70. text-align: center;
  71. color: $create-account-background-color;
  72. font-family: "Open Sans";
  73. display: inline-block;
  74. background: $lightest-color;
  75. position: relative;
  76. z-index: 1;
  77. padding: 0 8px;
  78. }
  79. .link-forgot-password {
  80. line-height: 32px;
  81. color: $base-color;
  82. text-decoration: none;
  83. margin-left: 5px;
  84. &:hover {
  85. text-decoration: underline;
  86. }
  87. }
  88. .x-btn {
  89. .x-btn-icon-el {
  90. &:before {
  91. right: 10px;
  92. font-size: 24px;
  93. position: absolute;
  94. }
  95. }
  96. }
  97. .auth-weixin-button .x-fa {
  98. color: $lightest-color;
  99. font-size: 24px;
  100. top: 10px;
  101. right: 13px;
  102. }
  103. .auth-login-button .x-fa,
  104. .auth-resetpassword-button .x-fa {
  105. font-size: 32px;
  106. right: 11px;
  107. top: 10px;
  108. line-height: 16px;
  109. }
  110. .auth-create-account-button .x-fa {
  111. color: $lightest-color;
  112. right: 24px;
  113. top: 10px;
  114. }
  115. .outer-div {
  116. width: 100%;
  117. text-align: center;
  118. &:after {
  119. content: " ";
  120. width: 100%;
  121. height: 1px;
  122. background-color: $blank-page-color;
  123. position: absolute;
  124. left: 0;
  125. top: 9px;
  126. }
  127. }
  128. }