custom.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  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: 1400px) {
  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. /* Notifications */
  185. .notif-list {
  186. max-height: 400px;
  187. overflow: auto;
  188. margin-bottom: 0.5em;
  189. }
  190. .notif {
  191. margin: 0.5em;
  192. line-height: 2em;
  193. }
  194. .notif-head {
  195. display: flex;
  196. flex-direction: row;
  197. text-align: left;
  198. font-size: 11px;
  199. }
  200. .notif-head a {
  201. color: #a6a6a6;
  202. padding: 0.1 em 0.2em;
  203. }
  204. .notif-content {
  205. display: flex;
  206. flex-direction: row;
  207. justify-content: space-around;
  208. font-size: 12px;
  209. }
  210. .notif-content a {
  211. color: #4183c4;
  212. margin: 0;
  213. padding: 0;
  214. }
  215. .notif-footer {
  216. line-height: 1.5em;
  217. margin-bottom: 1em;
  218. }
  219. .notif-footer a {
  220. color: #4183c4;
  221. }
  222. /* Main */
  223. #main-pannel {
  224. width: 50%;
  225. }
  226. #left-pannel, #right-pannel {
  227. margin: 0 5%;
  228. display: flex;
  229. flex-direction: column;
  230. width: 15%;
  231. }
  232. /* Breadcrumb */
  233. #breadcrumb {
  234. margin: 1em 15%;
  235. list-style: none;
  236. overflow: hidden;
  237. }
  238. #breadcrumb li {
  239. display: inline;
  240. }
  241. #breadcrumb a {
  242. font-size: 12px;
  243. color: #f6755e;
  244. cursor: pointer;
  245. }
  246. #breadcrumb a:not([href]){
  247. cursor: default;
  248. }
  249. #breadcrumb a[href]:hover {
  250. text-decoration: underline;
  251. color: #727a82;
  252. }
  253. /* Commentaires */
  254. .comment-header {
  255. color: #25a2c3;
  256. font-size: 1rem;
  257. font-weight: 700;
  258. }
  259. #comment-section {
  260. margin: 0 2.5%;
  261. }
  262. #comment-section .martor-field {
  263. height: 50px;
  264. }
  265. .comment-list {
  266. list-style: none;
  267. padding-left: 0;
  268. }
  269. .comment:first-child {
  270. border-top: 0;
  271. padding-top: 0;
  272. }
  273. .comment {
  274. border-top: solid 1px #dee1e3;
  275. padding: 0.5em 0;
  276. }
  277. #comment-section .comment-display {
  278. border-left: solid 2px #d3c5c5;
  279. padding: 5px 20px;
  280. margin: 10px;
  281. }
  282. /* Add a slash symbol (/) before/behind each list item */
  283. #breadcrumb li+li:before {
  284. padding: 8px;
  285. color: #f6755e;
  286. content: "/\00a0";
  287. }
  288. /* Index */
  289. .story-title a {
  290. color: #2e2e2e;
  291. font-size: 14px;
  292. font-wright: 600;
  293. text-decoration: none;
  294. }
  295. .story-title a:hover {
  296. text-decoration: underline;
  297. }
  298. .running {
  299. color: #006622;
  300. height: 22px;
  301. font-size: 12px;
  302. font-weight: 600;
  303. padding: 0 8px;
  304. border: solid 1px #006622;
  305. border-radius: 4px;
  306. }
  307. /* Epic details */
  308. .story-closed {
  309. text-decoration: line-through #666666 !important;
  310. color: #666666 !important;
  311. }
  312. /* Stories index */
  313. .filters-bar {
  314. align-items: center;
  315. display: flex;
  316. flex-direction: row;
  317. margin-bottom: 1.5em;
  318. }
  319. .filters-bar > * {
  320. margin: 0 0.5em;
  321. height: 2em;
  322. }
  323. .controls {
  324. display: flex;
  325. flex-direction: row;
  326. justify-content: flex-end;
  327. margin: 0;
  328. }
  329. .controls > * {
  330. margin: 0 0.5em;
  331. }
  332. .pagination {
  333. display: flex;
  334. flex-direction: row;
  335. justify-content: center;
  336. }
  337. .pagination a {
  338. margin: 0 5px;
  339. font-weight: 700;
  340. font-size: 15px;
  341. padding: 2px;
  342. }
  343. /* Stories detail */
  344. .title-bar * {
  345. margin-top: 0;
  346. margin-bottom: 0;
  347. }
  348. .weight-tag {
  349. background-color: #c1260b;
  350. height: 1.5em;
  351. width: 2em;
  352. text-align: center;
  353. border-radius: 2em;
  354. color: white;
  355. font-weight: 700;
  356. font-size: 1.5em;
  357. padding-top: 0.2em;
  358. margin-right: 1em;
  359. }
  360. /* Report: sprints list */
  361. .sprints-list {
  362. list-style: none;
  363. }
  364. .sprint-li {
  365. padding: 25px !important;
  366. }
  367. /* Sprint cloture */
  368. .already-checked {
  369. color: green !important;
  370. background: none !important;
  371. pointer-events: none;
  372. }