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.

_dashboard.less 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. .dashboard {
  2. padding-top: 15px;
  3. &.feeds,
  4. &.issues {
  5. .context.user.menu {
  6. z-index: 101;
  7. min-width: 200px;
  8. .ui.header {
  9. font-size: 1rem;
  10. text-transform: none;
  11. }
  12. }
  13. .filter.menu {
  14. width: initial;
  15. .item {
  16. text-align: left;
  17. .text {
  18. height: 16px;
  19. vertical-align: middle;
  20. &.truncate {
  21. width: 75%;
  22. }
  23. }
  24. .floating.label {
  25. top: 7px;
  26. left: 90%;
  27. width: 15%;
  28. @media only screen and (max-width: 768px) {
  29. top: 10px;
  30. left: auto;
  31. width: auto;
  32. right: 13px;
  33. }
  34. }
  35. }
  36. // Sort
  37. .jump.item {
  38. margin: 1px;
  39. padding-right: 0;
  40. }
  41. .menu {
  42. max-height: 300px;
  43. overflow-x: auto;
  44. right: 0 !important;
  45. left: auto !important;
  46. }
  47. @media only screen and (max-width: 768px) {
  48. width: 100%;
  49. }
  50. }
  51. .right.stackable.menu > .item.active {
  52. color: #d9453d;
  53. }
  54. }
  55. /* Accomodate for Semantic's 1px hacks on .attached elements */
  56. .dashboard-repos {
  57. margin: 0 1px;
  58. }
  59. .dashboard-navbar {
  60. width: 100vw;
  61. padding: 0 .5rem;
  62. }
  63. }
  64. &.feeds {
  65. .news {
  66. li {
  67. display: flex;
  68. align-items: baseline;
  69. margin-top: .5rem;
  70. margin-bottom: .5rem;
  71. img {
  72. align-self: flex-start;
  73. }
  74. }
  75. li > * + * {
  76. margin-left: .35rem;
  77. }
  78. line-height: 1.2;
  79. > .ui.grid {
  80. margin-left: auto;
  81. margin-right: auto;
  82. }
  83. .ui.avatar {
  84. margin-top: 13px;
  85. }
  86. .time-since {
  87. font-size: 13px;
  88. }
  89. .issue.title {
  90. width: 80%;
  91. }
  92. .push.news .content ul {
  93. line-height: 18px;
  94. font-size: 13px;
  95. list-style: none;
  96. padding-left: 10px;
  97. .text.truncate {
  98. width: 80%;
  99. }
  100. }
  101. .commit-id {
  102. font-family: @monospaced-fonts, monospace;
  103. }
  104. code {
  105. padding: 1px;
  106. font-size: 85%;
  107. background-color: rgba(0, 0, 0, .04);
  108. border-radius: 3px;
  109. word-break: break-all;
  110. }
  111. }
  112. .list {
  113. .header {
  114. .ui.label {
  115. margin-top: -4px;
  116. padding: 4px 5px;
  117. font-weight: normal;
  118. }
  119. .plus.icon {
  120. margin-top: 5px;
  121. }
  122. }
  123. ul {
  124. list-style: none;
  125. margin: 0;
  126. padding-left: 0;
  127. li {
  128. &:not(:last-child) {
  129. border-bottom: 1px solid #ebebeb;
  130. }
  131. &.private {
  132. background-color: #fcf8e9;
  133. }
  134. a {
  135. padding: 6px 1.2em;
  136. display: block;
  137. .svg {
  138. color: #888888;
  139. &.rear {
  140. font-size: 15px;
  141. }
  142. }
  143. .star-num {
  144. font-size: 12px;
  145. }
  146. }
  147. }
  148. }
  149. #privateFilterCheckbox .svg {
  150. color: #888888;
  151. margin-right: .25rem;
  152. }
  153. .repo-owner-name-list {
  154. .item-name {
  155. max-width: 70%;
  156. margin-bottom: -4px;
  157. }
  158. }
  159. #collaborative-repo-list {
  160. .owner-and-repo {
  161. max-width: 80%;
  162. margin-bottom: -5px;
  163. }
  164. .owner-name {
  165. max-width: 120px;
  166. margin-bottom: -5px;
  167. }
  168. }
  169. }
  170. }