custom.css 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  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. .messages {
  137. text-align: center;
  138. list-style: none;
  139. }
  140. /* Main Header */
  141. #header {
  142. z-index: 1000 !important;
  143. }
  144. #header .right {
  145. display: flex;
  146. flex-direction: row;
  147. align-items: center;
  148. flex-wrap: nowrap;
  149. }
  150. #header .right > * {
  151. margin-right: 2em;
  152. }
  153. #search-bar {
  154. margin-bottom: 0;
  155. }
  156. #search-bar input {
  157. height: 2.5em;
  158. line-height: 2.5em;
  159. padding-left: 2em;
  160. }
  161. #search-bar .fa-search {
  162. position: absolute;
  163. left: 8px;
  164. top: 35px;
  165. font-size: 14px;
  166. color: #999999;
  167. }
  168. /* The container <div> - needed to position the dropdown content */
  169. .dropdown {
  170. position: relative;
  171. display: inline-block;
  172. line-height: 4em;
  173. }
  174. /* Dropdown Content (Hidden by Default) */
  175. .dropdown-content {
  176. display: none;
  177. position: absolute;
  178. background-color: #f1f1f1;
  179. min-width: 260px;
  180. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  181. z-index: 1;
  182. right: 0;
  183. }
  184. /* Links inside the dropdown */
  185. .dropdown-content a {
  186. color: black;
  187. padding: 0 16px;
  188. text-decoration: none;
  189. display: block;
  190. }
  191. .dropdown-content>a {
  192. width: 100%;
  193. border-bottom: solid 1px #cccccc;
  194. }
  195. #notif-dropdown {
  196. min-width: 320px;
  197. }
  198. /* Change color of dropdown links on hover */
  199. .dropdown-content>a:hover {
  200. /* text-decoration: underline !important; */
  201. font-weight: 900;
  202. background-color: #ff9966;
  203. }
  204. /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  205. .show {display:block;}
  206. /* Notifications */
  207. .notif-list {
  208. max-height: 400px;
  209. overflow: auto;
  210. margin-bottom: 0.5em;
  211. }
  212. .notif {
  213. margin: 0.5em;
  214. line-height: 2em;
  215. }
  216. .notif-head {
  217. display: flex;
  218. flex-direction: row;
  219. text-align: left;
  220. font-size: 11px;
  221. }
  222. .notif-head a {
  223. color: #a6a6a6;
  224. padding: 0.1 em 0.2em;
  225. }
  226. .notif-content {
  227. display: flex;
  228. flex-direction: row;
  229. justify-content: space-around;
  230. font-size: 12px;
  231. }
  232. .notif-content a {
  233. color: #4183c4;
  234. margin: 0;
  235. padding: 0;
  236. }
  237. .notif-footer {
  238. line-height: 1.5em;
  239. margin-bottom: 1em;
  240. }
  241. .notif-footer a {
  242. color: #4183c4;
  243. }
  244. /* Main */
  245. #main-pannel {
  246. width: 50%;
  247. }
  248. #left-pannel, #right-pannel {
  249. margin: 0 5%;
  250. display: flex;
  251. flex-direction: column;
  252. width: 15%;
  253. }
  254. /* Breadcrumb */
  255. #breadcrumb {
  256. margin: 1em 15%;
  257. list-style: none;
  258. overflow: hidden;
  259. }
  260. #breadcrumb li {
  261. display: inline;
  262. }
  263. #breadcrumb a {
  264. font-size: 12px;
  265. color: #f6755e;
  266. cursor: pointer;
  267. }
  268. #breadcrumb a:not([href]){
  269. cursor: default;
  270. }
  271. #breadcrumb a[href]:hover {
  272. text-decoration: underline;
  273. color: #727a82;
  274. }
  275. /* Commentaires */
  276. .comment-header {
  277. color: #25a2c3;
  278. font-size: 1rem;
  279. font-weight: 700;
  280. }
  281. #comment-section {
  282. margin: 0 2.5%;
  283. }
  284. #comment-section .martor-field {
  285. height: 50px;
  286. }
  287. .comment-list {
  288. list-style: none;
  289. padding-left: 0;
  290. }
  291. .comment:first-child {
  292. border-top: 0;
  293. padding-top: 0;
  294. }
  295. .comment {
  296. border-top: solid 1px #dee1e3;
  297. padding: 0.5em 0;
  298. }
  299. #comment-section .comment-display {
  300. border-left: solid 2px #d3c5c5;
  301. padding: 5px 20px;
  302. margin: 10px;
  303. }
  304. /* Add a slash symbol (/) before/behind each list item */
  305. #breadcrumb li+li:before {
  306. padding: 8px;
  307. color: #f6755e;
  308. content: "/\00a0";
  309. }
  310. /* Index */
  311. .story-title a {
  312. color: #2e2e2e;
  313. font-size: 14px;
  314. font-wright: 600;
  315. text-decoration: none;
  316. }
  317. .story-title a:hover {
  318. text-decoration: underline;
  319. }
  320. .epic-tag {
  321. color: #666666;
  322. height: 22px;
  323. font-size: 12px;
  324. font-weight: 600;
  325. padding: 2px 6px;
  326. margin-right: 8px;
  327. border-radius: 4px;
  328. background-color: #d9d9d9;
  329. }
  330. .running {
  331. color: #006622;
  332. height: 22px;
  333. font-size: 12px;
  334. font-weight: 600;
  335. padding: 0 8px;
  336. border: solid 1px #006622;
  337. border-radius: 4px;
  338. }
  339. .new-story {
  340. color: #006622;
  341. height: 22px;
  342. font-size: 12px;
  343. font-weight: 600;
  344. padding: 0 8px;
  345. border: solid 1px #006622;
  346. border-radius: 4px;
  347. }
  348. .unplanned-story {
  349. color: #860000;
  350. height: 22px;
  351. font-size: 12px;
  352. font-weight: 600;
  353. padding: 0 8px;
  354. border: solid 1px #860000;
  355. border-radius: 4px;
  356. }
  357. /* Epic details */
  358. .story-closed {
  359. text-decoration: line-through #666666 !important;
  360. color: #666666 !important;
  361. }
  362. /* Stories index */
  363. .filters-bar {
  364. align-items: center;
  365. display: flex;
  366. flex-direction: row;
  367. margin-bottom: 1.5em;
  368. }
  369. .filters-bar > * {
  370. margin: 0 0.5em;
  371. height: 2em;
  372. }
  373. .controls {
  374. display: flex;
  375. flex-direction: row;
  376. justify-content: flex-end;
  377. margin: 0;
  378. }
  379. .controls > * {
  380. margin: 0 0.5em;
  381. }
  382. .pagination {
  383. display: flex;
  384. flex-direction: row;
  385. justify-content: center;
  386. }
  387. .pagination a {
  388. margin: 0 5px;
  389. font-weight: 700;
  390. font-size: 15px;
  391. padding: 2px;
  392. }
  393. /* Stories detail */
  394. .title-bar * {
  395. margin-top: 0;
  396. margin-bottom: 0;
  397. }
  398. .weight-tag {
  399. background-color: #c1260b;
  400. height: 1.5em;
  401. width: 2em;
  402. text-align: center;
  403. border-radius: 2em;
  404. color: white;
  405. font-weight: 700;
  406. font-size: 1.5em;
  407. padding-top: 0.2em;
  408. margin-right: 1em;
  409. }
  410. /* Report: sprints list */
  411. .sprints-list {
  412. list-style: none;
  413. }
  414. .sprint-li {
  415. padding: 25px !important;
  416. }
  417. .sprint-retro {
  418. border-left: solid 2px #d3c5c5;
  419. padding: 10px 20px;
  420. margin: 20px;
  421. }
  422. /* Sprint cloture */
  423. .already-checked {
  424. color: green !important;
  425. background: none !important;
  426. pointer-events: none;
  427. }