main.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. /** ISSUE **/
  2. .issue-report-modal {
  3. z-index: 1110;
  4. }
  5. .issue-report-modal .issue-screenshot{
  6. overflow: auto;
  7. margin-top: 5px;
  8. max-height: 300px;
  9. border: 5px dotted #cecece;
  10. }
  11. .issue-report-modal .issue-screenshot img{
  12. width: 100%;
  13. height: auto;
  14. padding: 5px;
  15. }
  16. .issue-report-modal .badge.badge-tag {
  17. border-radius: 50px;
  18. font-size: 15px;
  19. padding: 4px 6px 4px 6px;
  20. border: 1px dashed #007bff;
  21. cursor: pointer;
  22. color: #777777;
  23. font-weight: normal;
  24. transition: all 0.2s ease-in-out;
  25. }
  26. .issue-report-modal span.page-link-issue {
  27. word-break: break-all;
  28. white-space: pre-wrap;
  29. text-align: left;
  30. font-size: 0.9em;
  31. }
  32. .issue-report-modal .modal-dialog{
  33. max-width: 99% !important;
  34. }
  35. .issue-report-modal .issue-form .trumbowyg-editor-visible {
  36. margin-top: 0;
  37. }
  38. .issue-report-modal .issue-form textarea,
  39. .issue-report-modal .issue-form .trumbowyg-editor {
  40. height: 250px;
  41. min-height: 250px;
  42. }
  43. .issue-declare-button{
  44. cursor: pointer;
  45. position: fixed;
  46. bottom: 10px;
  47. left: 10px;
  48. opacity: 0.5;
  49. border-radius: 100%;
  50. z-index: 1050;
  51. width: 30px;
  52. height: 30px;
  53. text-align: center;
  54. padding-top: 3px;
  55. box-sizing: border-box;
  56. background-color: #cecece;
  57. transition: all 0.1s linear;
  58. }
  59. .issue-declare-button:hover{
  60. opacity: 0.7;
  61. transform: scale(1.1);
  62. }
  63. .list-issue-reports .created-head,
  64. .list-issue-reports .created-cell {
  65. width: 130px;
  66. text-align: center;
  67. }
  68. #issuereports .button-head {
  69. width: 180px;
  70. }
  71. #issuereports .button-cell {
  72. padding: 0;
  73. vertical-align: middle;
  74. text-align: center;
  75. }
  76. #issuereports .infos-cell {
  77. padding: 0.25rem .25rem;
  78. vertical-align: middle;
  79. position: relative;
  80. }
  81. #issuereports > li .report-buttons{
  82. font-size: 20px;
  83. position: absolute;
  84. right: 50px;
  85. top: 50%;
  86. }
  87. #issuereports > li .report-buttons .btn-delete{
  88. opacity: 0.5;
  89. font-size: 16px;
  90. margin-left:10px;
  91. transition: opacity 0.2s ease-in-out;
  92. }
  93. #issuereports > li .report-buttons .btn-delete:hover{
  94. opacity:1;
  95. }
  96. #issuereports{
  97. margin:0;
  98. padding: 0;
  99. }
  100. #issuereports > li,.issue-reports-search{
  101. background-color: #ffffff;
  102. border-radius: 3px;
  103. list-style-type: none;
  104. padding: 15px;
  105. }
  106. #issuereports > li{
  107. margin: 0 0 15px 0;
  108. }
  109. #issuereports > li .issue-state{
  110. margin-top: 11px;
  111. font-size: 30px;
  112. display: inline-block;
  113. width: 50px;
  114. vertical-align: top;
  115. }
  116. #issuereports > li .infos-cell{
  117. display: inline-block;
  118. vertical-align: top;
  119. }
  120. #issuereports .issue-state{
  121. width:40px;
  122. vertical-align: middle;
  123. text-align: center;
  124. font-size: 20px;
  125. }
  126. #issuereports .issue-title{
  127. color:#333;
  128. }
  129. #issuereports .assign{
  130. color:#555;
  131. background: #f4f4f4;
  132. font-style: italic;
  133. font-size: 10px;
  134. padding:3px;
  135. display: inline-block;
  136. margin-top: 3px;
  137. vertical-align: top;
  138. }
  139. .section-global-report .nav-link{
  140. border-radius: 3px;
  141. border:0;
  142. }
  143. .section-global-report .nav-tabs {
  144. border:0;
  145. }
  146. .section-global-report .data-type-tagcloud {
  147. display: inline-flex;
  148. }
  149. div.issue-state-list > .dropdown-menu {
  150. padding: 0;
  151. }
  152. div.issue-state-list > .dropdown-menu > a:hover {
  153. opacity: 0.9;
  154. transition: all 0.05s ease-in-out;
  155. }
  156. #issuereports .report-tag,#issuereports .report-tag li{
  157. display: inline-flex;
  158. vertical-align: top;
  159. margin: 0 1px;
  160. padding: 0;
  161. }
  162. #issuereports .report-tag li .badge.badge-tag{
  163. font-size: 10px;
  164. padding: 3px;
  165. cursor: default;
  166. }
  167. #issuereports .text-muted{
  168. color:#cecece;
  169. font-size: 12px;
  170. }
  171. #issuereport-form .report-tag,
  172. #issuereport-form .report-tag li {
  173. display: inline-flex;
  174. vertical-align: middle;
  175. padding: 0;
  176. }
  177. #issuereport-form .report-tag{
  178. margin-left: 10px;
  179. }
  180. .issuereport-form .page-container a {
  181. word-break: break-all;
  182. font-size: 0.7em;
  183. }
  184. .issue-form {
  185. margin-bottom: 20px;
  186. }
  187. @keyframes spinner {
  188. to {transform: rotate(360deg);}
  189. }
  190. .rotate {
  191. animation: spinner 1s linear infinite;
  192. }
  193. .module-issue.page-sheet-report,
  194. .module-issue.page-sheet-report body,
  195. .section-global-report body{
  196. background:#f3f3f3;
  197. }
  198. .module-issue .issue-events{
  199. padding:0;
  200. margin: 0;
  201. list-style-type:none;
  202. }
  203. .module-issue .issue-events .issue-event,.module-issue .issue-event-form{
  204. background-color: #ffffff;
  205. border-radius: 3px;
  206. list-style-type:none;
  207. padding:15px;
  208. margin:0 0 15px 0;
  209. }
  210. .module-issue .issue-events .issue-event.issue-state,
  211. .module-issue .issue-events .issue-event.issue-assignation,
  212. .module-issue .issue-events .issue-event.issue-tag{
  213. background-color: transparent;
  214. padding:10px 15px;
  215. }
  216. .module-issue .issue-event-form .trumbowyg-box,
  217. .module-issue .issue-event-form .trumbowyg-editor{
  218. border:0;
  219. }
  220. .module-issue .issue-event-form .trumbowyg-box,
  221. .module-issue .issue-event-form .trumbowyg-editor {
  222. min-height: 150px;
  223. }
  224. .module-issue .issue-event .only-editable{
  225. display: none;
  226. margin:0;
  227. }
  228. .module-issue .issue-event .only-editable > li{
  229. cursor: pointer;
  230. font-size:14px;
  231. display: inline-block;
  232. list-style-type:none;
  233. padding:3px;
  234. opacity:0.5;
  235. margin:0;
  236. transition: opacity 0.2s ease-in-out;
  237. }
  238. .module-issue .issue-event .only-editable > li:hover{
  239. opacity:1;
  240. }
  241. .module-issue .issue-event.editable .only-editable{
  242. display: inline-block;
  243. }
  244. .module-issue .issue-sidebar .list-group-item{
  245. border:0;
  246. }
  247. .module-issue .issue-event .comment-header{
  248. width: 100%;
  249. padding-bottom: 10px;
  250. border-bottom:1px solid #f8f8f8;
  251. }
  252. .module-issue .data-type-user{
  253. border:0;
  254. }
  255. .module-issue .issue-event .header-infos{
  256. display: inline-block;
  257. margin-left: 8px;
  258. margin-top: 5px;
  259. vertical-align: top;
  260. }
  261. .module-issue .issue-event .comment-message{
  262. margin-top: 10px;
  263. }
  264. .module-issue .comment-attachments > h5{
  265. font-size: 14px;
  266. font-weight: bold;
  267. color:#9da9b3;
  268. }
  269. .module-issue .comment-attachment .attachment-image{
  270. overflow :hidden;
  271. display: inline-block;
  272. }
  273. .module-issue .comment-attachment.attachment-image img{
  274. max-height: 150px;
  275. width: auto;
  276. }
  277. .module-issue .issue-sidebar h5{
  278. font-size: 14px;
  279. font-weight: bold;
  280. color:#9da9b3;
  281. }
  282. .module-issue .issue-event-form [data-type="dropzone"]{
  283. height:50px;
  284. border-radius: 3px;
  285. border: 0;
  286. }
  287. .module-issue .issue-event-form [data-type="dropzone"] > div {
  288. font-size: 11px;
  289. color: #999999;
  290. text-align: center;
  291. padding: 18px 5px 5px 5px;
  292. text-transform: uppercase;
  293. font-weight: bold;
  294. }
  295. .module-issue .comment-attachment{
  296. opacity: 0.8;
  297. transition: opacity 0.2s ease-in-out;
  298. display: inline-block;
  299. vertical-align: top;
  300. color: inherit;
  301. text-decoration: none;
  302. }
  303. .module-issue .comment-attachment:hover{
  304. opacity: 1;
  305. }
  306. .module-issue .comment-attachment .attachment-image-view{
  307. border-radius: 3px;
  308. box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
  309. }
  310. .module-issue .comment-attachment .attachment-file-view{
  311. width:150px;
  312. padding-top:20px;
  313. overflow:hidden;
  314. }
  315. .module-issue .comment-attachment .attachment-file-view i{
  316. font-size: 80px;
  317. text-align: center;
  318. display: block;
  319. }
  320. .module-issue .comment-attachment .attachment-file-view h6{
  321. font-size: 10px;
  322. font-weight: bold;
  323. height: 35px;
  324. text-align: center;
  325. width: 100px;
  326. margin: 5px auto auto auto;
  327. overflow:hidden;
  328. color:#cecece;
  329. text-transform: uppercase;
  330. }
  331. .module-issue .attachment-file .attachment-image-view,
  332. .module-issue .attachment-image .attachment-file-view{
  333. display: none;
  334. }