custom.css 6.8 KB

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