選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

49 行
628 B

  1. @import "../../../css/ui.less";
  2. .uiEvents {
  3. margin-top: 10px;
  4. width: 320px;
  5. .heading {
  6. color: @yellow;
  7. padding: 8px;
  8. background-color: fade(#3a3b4a, 90%);
  9. }
  10. .list {
  11. .event {
  12. cursor: pointer;
  13. padding: 8px;
  14. background-color: fade(#3a3b4a, 90%);
  15. &:hover {
  16. background-color: fade(lighten(#3a3b4a, 15%), 90%);
  17. }
  18. .name {
  19. color: @white;
  20. margin-bottom: 3px;
  21. }
  22. .description {
  23. color: darken(@white, 35%);
  24. }
  25. &.active {
  26. .name {
  27. color: @blue;
  28. }
  29. }
  30. &.ready {
  31. .name {
  32. color: @green;
  33. }
  34. .description {
  35. display: none;
  36. }
  37. }
  38. }
  39. }
  40. }