custom.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* Transversal */
  2. .error {
  3. color: red;
  4. font-weight: 700;
  5. }
  6. .valid {
  7. color: green;
  8. }
  9. .annotation {
  10. color: #595959;
  11. font-size: 0.8em;
  12. }
  13. .datatable {
  14. width: 100% !important;
  15. }
  16. .flex-row{
  17. display: flex;
  18. flex-direction: row;
  19. }
  20. .flex-col{
  21. display: flex;
  22. flex-direction: column;
  23. }
  24. .flex-extend{
  25. flex: 1;
  26. }
  27. .flex-end{
  28. justify-content: flex-end;
  29. }
  30. .flex-space-around {
  31. justify-content: space-around;
  32. }
  33. .hidden {
  34. display: none;
  35. }
  36. .disabled{
  37. pointer-events: none;
  38. }
  39. .fa {
  40. margin-right: 0.3em;
  41. }
  42. select[multiple] {
  43. padding-top: 0.8em;
  44. min-height: 5em;
  45. }
  46. .tool-btn {
  47. padding-top: 0;
  48. padding-right: 1em;
  49. height: 2.5em;
  50. font-size: 1em;
  51. line-height: 2.5em;
  52. }
  53. .description {
  54. padding: 1em;
  55. margin: 1em 1em 2em 1em;
  56. }
  57. .description h1, h2, h3, h4, h5 {
  58. color: #333333;
  59. }
  60. .tags-list {
  61. list-style: none;
  62. }
  63. .tags-list li {
  64. display: inline;
  65. }
  66. .tags-list li:not(:first-child) {
  67. border-left: solid 1px #bfbfbf;
  68. margin-left: 1em;
  69. }
  70. [data-url] {
  71. cursor: pointer;
  72. }
  73. [data-url]:hover{
  74. background-color: #b3d9ff;
  75. }
  76. /* Index */
  77. .issue-title a {
  78. color: #2e2e2e;
  79. font-size: 14px;
  80. font-wright: 600;
  81. text-decoration: none;
  82. }
  83. .issue-title a:hover {
  84. text-decoration: underline;
  85. }
  86. /* Epic details */
  87. .story-closed {
  88. text-decoration: line-through #666666 !important;
  89. color: #666666 !important;
  90. }