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.

112 lines
1.5 KiB

7 years ago
  1. .button {
  2. background-color: #2b90d9;
  3. &:hover {
  4. background-color: #489fde;
  5. }
  6. &:disabled {
  7. background-color: #9baec8;
  8. }
  9. &.button-secondary {
  10. background-color: #282c37;
  11. &:hover {
  12. background-color: #282c37;
  13. }
  14. &:disabled {
  15. background-color: #9baec8;
  16. }
  17. }
  18. }
  19. .icon-button {
  20. color: #616b86;
  21. cursor: pointer;
  22. &:hover {
  23. color: #717b98;
  24. }
  25. &.disabled {
  26. color: #535b72;
  27. cursor: default;
  28. }
  29. &.active {
  30. color: #2b90d9;
  31. }
  32. }
  33. .compose-form__textarea, .follow-form__input {
  34. background: #fff;
  35. &:disabled {
  36. background: #d9e1e8;
  37. }
  38. }
  39. .status__content, .reply-indicator__content {
  40. font-size: 15px;
  41. line-height: 20px;
  42. word-wrap: break-word;
  43. font-weight: 300;
  44. a {
  45. color: #d9e1e8;
  46. text-decoration: none;
  47. &:hover {
  48. text-decoration: underline;
  49. }
  50. &.mention {
  51. &:hover {
  52. text-decoration: none;
  53. span {
  54. text-decoration: underline;
  55. }
  56. }
  57. }
  58. }
  59. }
  60. .reply-indicator__content {
  61. color: #282c37;
  62. font-size: 14px;
  63. a {
  64. color: #535b72;
  65. }
  66. }
  67. .status__display-name, .status__relative-time {
  68. text-decoration: none;
  69. }
  70. .status__display-name {
  71. strong {
  72. color: #fff;
  73. }
  74. }
  75. .status__display-name, .reply-indicator__display-name {
  76. &:hover {
  77. strong {
  78. text-decoration: underline;
  79. }
  80. }
  81. }
  82. .status__relative-time {
  83. &:hover {
  84. text-decoration: underline;
  85. }
  86. }
  87. .transparent-background {
  88. background: image-url('void.png');
  89. }