custom.css 7.8 KB

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