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.
 
 
 

101 lines
1.2 KiB

  1. @import "../../../css/colors.less";
  2. .uiOnline {
  3. display: none;
  4. background-color: @blackB;
  5. border: 5px solid @blackB;
  6. text-align: center;
  7. width: 450px;
  8. height: 396px;
  9. > .heading {
  10. color: @blueA;
  11. width: 100%;
  12. height: 36px;
  13. background-color: @blackB;
  14. .heading-text {
  15. padding-top: 8px;
  16. margin: auto;
  17. }
  18. }
  19. .bottom {
  20. height: calc(100% - 36px);
  21. background-color: @blackC;
  22. padding: 8px;
  23. .list {
  24. width: 100%;
  25. height: 100%;
  26. overflow-y: auto;
  27. background-color: @blackC;
  28. display: flex;
  29. flex-direction: column;
  30. .heading {
  31. height: 24px;
  32. color: @white;
  33. > div {
  34. float: left;
  35. padding: 4px;
  36. height: 24px;
  37. &:nth-child(1) {
  38. width: 10%;
  39. }
  40. &:nth-child(2) {
  41. width: 55%;
  42. }
  43. &:nth-child(3) {
  44. width: 35%;
  45. }
  46. }
  47. }
  48. .onlineUser {
  49. color: @grayC;
  50. height: 24px;
  51. cursor: pointer;
  52. > div {
  53. float: left;
  54. padding: 4px;
  55. height: 24px;
  56. &:nth-child(1) {
  57. width: 10%;
  58. }
  59. &:nth-child(2) {
  60. width: 55%;
  61. }
  62. &:nth-child(3) {
  63. width: 35%;
  64. }
  65. }
  66. &:hover {
  67. background-color: @blackB;
  68. }
  69. }
  70. }
  71. }
  72. }
  73. .mobile .uiOnline {
  74. z-index: 2;
  75. }