custom.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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. .flex-align-center {
  34. align-items: center;
  35. }
  36. .hidden {
  37. display: none;
  38. }
  39. .disabled{
  40. pointer-events: none;
  41. color: #cccccc !important;
  42. }
  43. .fa {
  44. margin-right: 0.3em;
  45. }
  46. select[multiple] {
  47. padding-top: 0.8em;
  48. min-height: 5em;
  49. }
  50. .tool-btn {
  51. padding-top: 0;
  52. padding-right: 1em;
  53. height: 2.5em;
  54. font-size: 1em;
  55. line-height: 2.5em;
  56. }
  57. .description {
  58. padding: 1em;
  59. margin: 1em 1em 2em 1em;
  60. }
  61. .description h1, h2, h3, h4, h5 {
  62. color: #333333;
  63. }
  64. .tags-list {
  65. list-style: none;
  66. }
  67. .tags-list li {
  68. display: inline;
  69. }
  70. .tags-list li:not(:first-child) {
  71. border-left: solid 1px #bfbfbf;
  72. margin-left: 1em;
  73. }
  74. [data-url] {
  75. cursor: pointer;
  76. }
  77. [data-url]:hover{
  78. background-color: #b3d9ff;
  79. }
  80. td {
  81. vertical-align: middle;
  82. }
  83. .helptext {
  84. display: none;
  85. }
  86. .errorlist {
  87. color: red
  88. }
  89. /* The container <div> - needed to position the dropdown content */
  90. .dropdown {
  91. position: relative;
  92. display: inline-block;
  93. }
  94. /* Dropdown Content (Hidden by Default) */
  95. .dropdown-content {
  96. display: none;
  97. position: absolute;
  98. background-color: #f1f1f1;
  99. min-width: 320px;
  100. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  101. z-index: 1;
  102. right: 0;
  103. }
  104. /* Links inside the dropdown */
  105. .dropdown-content a {
  106. color: black;
  107. padding: 0 16px;
  108. text-decoration: none;
  109. display: block;
  110. }
  111. /* Change color of dropdown links on hover */
  112. .dropdown-content a:hover {
  113. text-decoration: underline !important;
  114. }
  115. /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  116. .show {display:block;}
  117. /* Breadcrumb */
  118. #breadcrumb {
  119. margin: 1em 15%;
  120. list-style: none;
  121. overflow: hidden;
  122. }
  123. #breadcrumb li {
  124. display: inline;
  125. }
  126. #breadcrumb a {
  127. font-size: 12px;
  128. color: #f6755e;
  129. cursor: pointer;
  130. }
  131. #breadcrumb a:not([href]){
  132. cursor: default;
  133. }
  134. #breadcrumb a[href]:hover {
  135. text-decoration: underline;
  136. color: #727a82;
  137. }
  138. /* Add a slash symbol (/) before/behind each list item */
  139. #breadcrumb li+li:before {
  140. padding: 8px;
  141. color: #f6755e;
  142. content: "/\00a0";
  143. }
  144. /* Index */
  145. .issue-title a {
  146. color: #2e2e2e;
  147. font-size: 14px;
  148. font-wright: 600;
  149. text-decoration: none;
  150. }
  151. .issue-title a:hover {
  152. text-decoration: underline;
  153. }
  154. /* Epic details */
  155. .story-closed {
  156. text-decoration: line-through #666666 !important;
  157. color: #666666 !important;
  158. }
  159. /* Stories index */
  160. .filters-bar {
  161. align-items: center;
  162. display: flex;
  163. flex-direction: row;
  164. margin-bottom: 1.5em;
  165. }
  166. .filters-bar > * {
  167. margin: 0 0.5em;
  168. height: 2em;
  169. }
  170. .controls {
  171. display: flex;
  172. flex-direction: row;
  173. justify-content: flex-end;
  174. margin: 0;
  175. }
  176. .controls > * {
  177. margin: 0 0.5em;
  178. }