releases.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /**
  2. * Release Detail
  3. * ============================================================================
  4. */
  5. .release-details {
  6. position: relative;
  7. margin: 0 0 20px;
  8. border-bottom: 1px solid @trim;
  9. h3 {
  10. margin-bottom: 0;
  11. color: @gray-darkest;
  12. }
  13. .release-stats {
  14. text-align: right;
  15. .avatar-grid {
  16. flex-direction: row-reverse;
  17. }
  18. h6 {
  19. .nav-header;
  20. margin-bottom: 10px;
  21. }
  22. }
  23. .nav-tabs {
  24. margin-bottom: 0;
  25. }
  26. }
  27. .release-meta {
  28. color: @gray;
  29. margin-bottom: 20px;
  30. .icon {
  31. font-size: 13px;
  32. }
  33. a {
  34. color: @gray-dark;
  35. &:hover {
  36. color: @gray-darker;
  37. }
  38. }
  39. }
  40. .release-count {
  41. font-size: 28px;
  42. color: lighten(@gray, 30);
  43. }
  44. /**
  45. * Last Commit in Release Overview
  46. * ============================================================================
  47. */
  48. .commit {
  49. margin-top: 5px;
  50. margin-bottom: 20px;
  51. position: relative;
  52. padding: 1px 0 0 25px;
  53. font-size: 13px;
  54. .commit-avatar {
  55. position: absolute;
  56. width: 19px;
  57. height: 19px;
  58. top: 2px;
  59. left: 0;
  60. .avatar {
  61. width: 19px;
  62. height: 19px;
  63. }
  64. }
  65. .commit-message {
  66. line-height: 1.4;
  67. margin: 2px 0 5px;
  68. }
  69. }