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.

141 lines
1.9 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. p {
  45. margin-bottom: 20px;
  46. &:last-child {
  47. margin-bottom: 0;
  48. }
  49. }
  50. a {
  51. color: #d9e1e8;
  52. text-decoration: none;
  53. &:hover {
  54. text-decoration: underline;
  55. }
  56. &.mention {
  57. &:hover {
  58. text-decoration: none;
  59. span {
  60. text-decoration: underline;
  61. }
  62. }
  63. }
  64. }
  65. }
  66. .detailed-status {
  67. .status__content {
  68. font-size: 19px;
  69. line-height: 24px;
  70. }
  71. }
  72. .reply-indicator__content {
  73. color: #282c37;
  74. font-size: 14px;
  75. a {
  76. color: #535b72;
  77. }
  78. }
  79. .status__display-name, .status__relative-time, .detailed-status__display-name, .detailed-status__datetime {
  80. text-decoration: none;
  81. }
  82. .status__display-name {
  83. strong {
  84. color: #fff;
  85. }
  86. }
  87. .status__display-name, .reply-indicator__display-name, .detailed-status__display-name {
  88. &:hover {
  89. strong {
  90. text-decoration: underline;
  91. }
  92. }
  93. }
  94. .detailed-status__display-name {
  95. color: #d9e1e8;
  96. line-height: 24px;
  97. strong, span {
  98. display: block;
  99. }
  100. strong {
  101. font-size: 16px;
  102. color: #fff;
  103. }
  104. }
  105. .status__relative-time, .detailed-status__datetime {
  106. &:hover {
  107. text-decoration: underline;
  108. }
  109. }
  110. .transparent-background {
  111. background: image-url('void.png');
  112. }