_user.less 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #panel div.user-panel {
  2. float: right;
  3. height: @panel-height;
  4. line-height: @panel-height;
  5. font-size: 14px;
  6. color: @ui-fore;
  7. vertical-align: baseline;
  8. .loading-tip {
  9. text-indent: 100000px;
  10. display: inline-block;
  11. width: 50px;
  12. height: @panel-height;
  13. line-height: @panel-height;
  14. position: relative;
  15. &:before {
  16. content: ' ';
  17. display: block;
  18. position: absolute;
  19. left: 9px;
  20. top: 7px;
  21. .loading-circle(16px);
  22. box-shadow: none;
  23. }
  24. }
  25. .fui-button {
  26. padding: 5px 10px;
  27. height: @panel-height - 10px;
  28. line-height: @panel-height - 10px;
  29. &:hover {
  30. background-color: @tab-hover;
  31. }
  32. &:active {
  33. background-color: @tab-active;
  34. }
  35. .fui-label {
  36. font-size: 14px;
  37. color: @ui-fore;
  38. vertical-align: baseline;
  39. }
  40. &.user-button .fui-label {
  41. display: none;
  42. }
  43. .fui-icon {
  44. vertical-align: baseline;
  45. border-radius: 100%;
  46. img {
  47. width: 30px;
  48. height: 30px;
  49. }
  50. }
  51. &.login-button {
  52. .fui-icon {
  53. border-radius: 100%;
  54. width: 25px;
  55. height: 25px;
  56. margin-right: 3px;
  57. vertical-align: baseline;
  58. background: url(../images/icons.png) 0 -320px;
  59. }
  60. .fui-label {
  61. display: none;
  62. }
  63. }
  64. }
  65. }
  66. .login-tip {
  67. display: none;
  68. }
  69. .login-required {
  70. & > * {
  71. display: none;
  72. }
  73. & > .login-tip {
  74. display: block;
  75. text-align: center;
  76. font-size: 16px;
  77. color: #999;
  78. margin-top: 30px;
  79. a {
  80. text-decoration: underline;
  81. color: @main-menu-theme-color;
  82. cursor: pointer;
  83. &:hover {
  84. color: lighten(@main-menu-theme-color, 10%);
  85. }
  86. }
  87. }
  88. }