custom.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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. .clickable {
  14. cursor: pointer;
  15. }
  16. .datatable {
  17. width: 100% !important;
  18. }
  19. .flex-row{
  20. display: flex;
  21. flex-direction: row;
  22. }
  23. .flex-col{
  24. display: flex;
  25. flex-direction: column;
  26. }
  27. .flex-extend{
  28. flex: 1;
  29. }
  30. .flex-end{
  31. justify-content: flex-end;
  32. }
  33. .flex-space-around {
  34. justify-content: space-around;
  35. }
  36. .flex-align-center {
  37. align-items: center;
  38. }
  39. .hidden {
  40. display: none;
  41. }
  42. a.anchor {
  43. display: block;
  44. position: relative;
  45. top: -100px;
  46. visibility: hidden;
  47. }
  48. @media screen and (max-width: 1280px) {
  49. .hide-on-small-screen {
  50. display: none;
  51. }
  52. }
  53. .disabled{
  54. pointer-events: none;
  55. color: #cccccc !important;
  56. }
  57. .fa {
  58. margin-right: 0.3em;
  59. }
  60. select[multiple] {
  61. padding-top: 0.8em;
  62. min-height: 5em;
  63. }
  64. .tool-btn {
  65. padding-top: 0;
  66. padding-right: 1em;
  67. height: 2.5em;
  68. font-size: 1em;
  69. line-height: 2.5em;
  70. }
  71. .description {
  72. padding: 1em;
  73. margin: 1em 1em 2em 1em;
  74. }
  75. .description h1, h2, h3, h4, h5 {
  76. color: #333333;
  77. }
  78. .tags-list {
  79. list-style: none;
  80. }
  81. .tags-list li {
  82. display: inline;
  83. }
  84. .tags-list li:not(:first-child) {
  85. border-left: solid 1px #bfbfbf;
  86. margin-left: 1em;
  87. }
  88. [data-url] {
  89. cursor: pointer;
  90. }
  91. [data-url]:hover{
  92. background-color: #b3d9ff;
  93. }
  94. td {
  95. vertical-align: middle;
  96. }
  97. .helptext {
  98. display: none;
  99. }
  100. .errorlist {
  101. color: red
  102. }
  103. select[multiple] {
  104. height: 12em;
  105. }
  106. select[multiple] option {
  107. padding: 0.3em 0.5em;
  108. }
  109. .raw-input {
  110. }
  111. .backlog-editor-col1 {
  112. width: 80%;
  113. }
  114. .backlog-editor-col2 {
  115. width: 100px;
  116. }
  117. .backlog-editor-col2 form {
  118. margin: 0;
  119. }
  120. .backlog-editor-col2 input {
  121. height: 2em !important;
  122. line-height: 2em !important;
  123. padding: 3px !important;
  124. margin: 0 !important;
  125. }
  126. .backlog-editor-col3 {
  127. display: flex;
  128. flex-direction: row;
  129. justify-content: space-around;
  130. }
  131. /* Main Header */
  132. #header .right {
  133. display: flex;
  134. flex-direction: row;
  135. align-items: center;
  136. flex-wrap: nowrap;
  137. }
  138. #header .right > * {
  139. margin-right: 2em;
  140. }
  141. #search-bar {
  142. margin-bottom: 0;
  143. }
  144. #search-bar input {
  145. height: 2.5em;
  146. line-height: 2.5em;
  147. padding-left: 2em;
  148. }
  149. #search-bar .fa-search {
  150. position: absolute;
  151. left: 8px;
  152. top: 35px;
  153. font-size: 14px;
  154. color: #999999;
  155. }
  156. /* The container <div> - needed to position the dropdown content */
  157. .dropdown {
  158. position: relative;
  159. display: inline-block;
  160. }
  161. /* Dropdown Content (Hidden by Default) */
  162. .dropdown-content {
  163. display: none;
  164. position: absolute;
  165. background-color: #f1f1f1;
  166. min-width: 320px;
  167. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  168. z-index: 1;
  169. right: 0;
  170. }
  171. /* Links inside the dropdown */
  172. .dropdown-content a {
  173. color: black;
  174. padding: 0 16px;
  175. text-decoration: none;
  176. display: block;
  177. }
  178. /* Change color of dropdown links on hover */
  179. .dropdown-content a:hover {
  180. text-decoration: underline !important;
  181. }
  182. /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  183. .show {display:block;}
  184. /* Main */
  185. #main-pannel {
  186. width: 50%;
  187. }
  188. #left-pannel, #right-pannel {
  189. margin: 0 5%;
  190. display: flex;
  191. flex-direction: column;
  192. width: 15%;
  193. }
  194. /* Breadcrumb */
  195. #breadcrumb {
  196. margin: 1em 15%;
  197. list-style: none;
  198. overflow: hidden;
  199. }
  200. #breadcrumb li {
  201. display: inline;
  202. }
  203. #breadcrumb a {
  204. font-size: 12px;
  205. color: #f6755e;
  206. cursor: pointer;
  207. }
  208. #breadcrumb a:not([href]){
  209. cursor: default;
  210. }
  211. #breadcrumb a[href]:hover {
  212. text-decoration: underline;
  213. color: #727a82;
  214. }
  215. /* Commentaires */
  216. .comment-header {
  217. color: #25a2c3;
  218. font-size: 1rem;
  219. font-weight: 700;
  220. }
  221. #comment-section {
  222. margin: 0 2.5%;
  223. }
  224. #comment-section .martor-field {
  225. height: 50px;
  226. }
  227. .comment-list {
  228. list-style: none;
  229. padding-left: 0;
  230. }
  231. .comment:first-child {
  232. border-top: 0;
  233. padding-top: 0;
  234. }
  235. .comment {
  236. border-top: solid 1px #dee1e3;
  237. padding: 0.5em 0;
  238. }
  239. #comment-section .comment-display {
  240. border-left: solid 2px #d3c5c5;
  241. padding: 5px 20px;
  242. margin: 10px;
  243. }
  244. /* Add a slash symbol (/) before/behind each list item */
  245. #breadcrumb li+li:before {
  246. padding: 8px;
  247. color: #f6755e;
  248. content: "/\00a0";
  249. }
  250. /* Index */
  251. .story-title a {
  252. color: #2e2e2e;
  253. font-size: 14px;
  254. font-wright: 600;
  255. text-decoration: none;
  256. }
  257. .story-title a:hover {
  258. text-decoration: underline;
  259. }
  260. .running {
  261. color: #006622;
  262. height: 22px;
  263. font-size: 12px;
  264. font-weight: 600;
  265. padding: 0 8px;
  266. border: solid 1px #006622;
  267. border-radius: 4px;
  268. }
  269. /* Epic details */
  270. .story-closed {
  271. text-decoration: line-through #666666 !important;
  272. color: #666666 !important;
  273. }
  274. /* Stories index */
  275. .filters-bar {
  276. align-items: center;
  277. display: flex;
  278. flex-direction: row;
  279. margin-bottom: 1.5em;
  280. }
  281. .filters-bar > * {
  282. margin: 0 0.5em;
  283. height: 2em;
  284. }
  285. .controls {
  286. display: flex;
  287. flex-direction: row;
  288. justify-content: flex-end;
  289. margin: 0;
  290. }
  291. .controls > * {
  292. margin: 0 0.5em;
  293. }
  294. .pagination {
  295. display: flex;
  296. flex-direction: row;
  297. justify-content: center;
  298. }
  299. .pagination a {
  300. margin: 0 5px;
  301. font-weight: 700;
  302. font-size: 15px;
  303. padding: 2px;
  304. }
  305. /* Stories detail */
  306. .title-bar * {
  307. margin-top: 0;
  308. margin-bottom: 0;
  309. }
  310. .weight-tag {
  311. background-color: #c1260b;
  312. height: 1.5em;
  313. width: 2em;
  314. text-align: center;
  315. border-radius: 2em;
  316. color: white;
  317. font-weight: 700;
  318. font-size: 1.5em;
  319. padding-top: 0.2em;
  320. margin-right: 1em;
  321. }
  322. /* Report: sprints list */
  323. .sprints-list {
  324. list-style: none;
  325. }
  326. .sprint-li {
  327. padding: 25px !important;
  328. }
  329. /* Sprint cloture */
  330. .already-checked {
  331. color: green !important;
  332. background: none !important;
  333. pointer-events: none;
  334. }