custom.css 6.5 KB

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