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

83 行
1008 B

  1. @import "../../../css/ui.less";
  2. .uiQuests {
  3. width: 320px;
  4. .heading {
  5. color: @yellow;
  6. padding: 8px;
  7. background-color: fade(#3a3b4a, 90%);
  8. }
  9. .list {
  10. .quest {
  11. cursor: pointer;
  12. padding: 8px;
  13. background-color: fade(#3a3b4a, 90%);
  14. &:hover {
  15. background-color: fade(lighten(#3a3b4a, 15%), 90%);
  16. }
  17. .zone {
  18. color: @grayD;
  19. margin-bottom: 4px;
  20. text-align: right;
  21. }
  22. .name {
  23. color: @white;
  24. margin-bottom: 3px;
  25. }
  26. .description {
  27. color: darken(@white, 35%);
  28. }
  29. .reward {
  30. display: none;
  31. color: @tealC;
  32. }
  33. &:hover {
  34. > .description {
  35. display: none;
  36. }
  37. > .reward {
  38. display: block;
  39. }
  40. }
  41. .ready-text {
  42. display: none;
  43. }
  44. &.active {
  45. .name {
  46. color: @blue;
  47. }
  48. }
  49. &.ready {
  50. .name {
  51. color: @green;
  52. }
  53. .description {
  54. display: none;
  55. }
  56. .reward {
  57. display: none;
  58. }
  59. .ready-text {
  60. display: block;
  61. color: @white;
  62. }
  63. }
  64. }
  65. }
  66. }