You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

application.css 69KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. /**
  2. * Redmine - project management software
  3. * Copyright (C) 2006- Jean-Philippe Lang
  4. * This code is released under the GNU General Public License.
  5. */
  6. html, body { min-height: 100vh; }
  7. html {overflow-y:scroll;}
  8. body { font-family: Verdana, sans-serif; font-size: 12px; color:#333; margin: 0; padding: 0; min-width: 900px; }
  9. h1, h2, h3, h4, h5, h6 {font-family: "Trebuchet MS", Verdana, sans-serif;padding: 2px 10px 1px 0px;margin: 0 0 10px 0;}
  10. #content h1, h2, h3, h4, h5, h6 {color: #555;}
  11. h2 {font-size: 20px;}
  12. h3 {font-size: 16px;}
  13. h4 {font-size: 13px; border-bottom: 1px solid #ccc; font-weight:normal;}
  14. pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;}
  15. .wiki h1 {font-size: 2em;}
  16. .wiki h2 {font-size: 1.8em;}
  17. .wiki h3 {font-size: 1.5em;}
  18. .wiki h4 {font-size: 1.2em; border: none; font-weight: bold;}
  19. .wiki h5 {font-size: 1em;}
  20. .wiki h6 {font-size: 1em; color: #8e8e8e;}
  21. /***** Layout *****/
  22. #wrapper {
  23. min-height: inherit;
  24. background: white;
  25. overflow: hidden;
  26. display: flex;
  27. flex-direction: column;
  28. }
  29. #top-menu {background: #3E5B76; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 10px 0px 12px;}
  30. #top-menu ul {margin: 0; padding: 0;}
  31. #top-menu li {
  32. float:left;
  33. list-style-type:none;
  34. margin: 0px 0px 0px 0px;
  35. padding: 0px 0px 0px 0px;
  36. white-space:nowrap;
  37. }
  38. #top-menu a {color: #fff; margin-right: 8px; font-weight: bold;}
  39. #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
  40. #account {float:right;}
  41. #header {min-height:5.3em;margin:0;background-color:#628DB6;color:#f8f8f8; padding: 4px 16px 20px 16px; position:relative;}
  42. #header a {color:#f8f8f8;}
  43. #header h1 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
  44. #header h1 .breadcrumbs { display:block; font-size: .5em; font-weight: normal; }
  45. #quick-search {float:right;}
  46. #quick-search #q {width:130px; height:24px; box-sizing:border-box; vertical-align:middle; border:1px solid #ccc; border-radius:3px;}
  47. #quick-search form {float:left; margin-right:3px;}
  48. #quick-search form input {margin-top:0; margin-bottom:0;}
  49. #quick-search form label {vertical-align:middle;}
  50. #quick-search #project-jump {float:left;}
  51. #main-menu {position: absolute; bottom: 0px; left: 10px; margin-right: -500px; width: 100%;}
  52. #main-menu ul {margin: 0; padding: 0; width: 100%; white-space: nowrap;}
  53. #main-menu li {
  54. float:none;
  55. list-style-type:none;
  56. margin: 0px 2px 0px 0px;
  57. padding: 0px 0px 0px 0px;
  58. white-space:nowrap;
  59. display:inline-block;
  60. }
  61. #main-menu li a {
  62. display: block;
  63. color: #fff;
  64. text-decoration: none;
  65. font-weight: bold;
  66. margin: 0;
  67. padding: 4px 10px 4px 10px;
  68. border-top-left-radius: 3px;
  69. border-top-right-radius: 3px;
  70. }
  71. #main-menu li a:hover {background: #759FCF; color: #fff; }
  72. #main-menu li:hover ul.menu-children, #main-menu li ul.menu-children.visible {display: block;}
  73. #main-menu li a.selected, #main-menu li a.selected:hover {background: #fff; color: #555; }
  74. #main-menu li a.new-object {background-color: #759FCF; }
  75. #main-menu .menu-children {
  76. display: none;
  77. position:absolute;
  78. width: inherit;
  79. z-index:45;
  80. background-color:#fff;
  81. border-right: 1px solid #759FCF;
  82. border-bottom: 1px solid #759FCF;
  83. border-left: 1px solid #759FCF;
  84. }
  85. #main-menu .menu-children li {float:left; clear:both; width:100%;}
  86. #main-menu .menu-children li a {color: #555; background-color:#fff; font-weight:normal; border-radius: 0;}
  87. #main-menu .menu-children li a:hover {color: #fff; background-color: #759FCF;}
  88. #main-menu .tabs-buttons {
  89. right: 6px;
  90. background-color: transparent;
  91. border-bottom-color: transparent;
  92. }
  93. #admin-menu ul {margin: 0; padding: 0;}
  94. #admin-menu li {margin: 0; padding: 0 0 6px 0; list-style-type:none;}
  95. #main {flex-grow: 2; display: flex; flex-direction: row-reverse;}
  96. #sidebar{ flex-shrink: 0; padding-left: 20px; padding-right: 8px; background: #EEEEEE; border-left: 1px solid #ddd}
  97. @media screen and (min-width: 0px) and (max-width: 1089px) {#sidebar{width: 22%;}}
  98. @media screen and (min-width: 1090px) and (max-width: 1279px) {#sidebar{width: 240px;}}
  99. @media screen and (min-width: 1280px) and (max-width: 1599px) {#sidebar{width: 280px;}}
  100. @media screen and (min-width: 1600px) and (max-width: 1919px) {#sidebar{width: 320px;}}
  101. @media screen and (min-width: 1920px) and (max-width: 2559px) {#sidebar{width: 360px;}}
  102. @media screen and (min-width: 2560px) {#sidebar{width: 380px;}}
  103. #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
  104. #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
  105. * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
  106. #sidebar .contextual { margin-right: 1em; }
  107. #sidebar ul, ul.flat {margin: 0; padding: 0;}
  108. #sidebar ul li, ul.flat li {list-style-type:none;margin: 0px 2px 0px 0px; padding: 0px 0px 0px 0px;}
  109. #sidebar div.wiki ul {margin:inherit; padding-left:40px;}
  110. #sidebar div.wiki ul li {list-style-type:inherit;}
  111. #sidebar a.icon-only {opacity: 0.4; margin-left: 5px;}
  112. #sidebar a.icon-only:hover {opacity: 1;}
  113. #sidebar span.icon-warning {margin-left: 5px;}
  114. #sidebar li input[type=checkbox] {height: 20px;}
  115. #content { flex-grow: 1; background-color: #fff; margin: 0px; padding: 10px 16px 10px 16px; overflow-x: auto;}
  116. #main.nosidebar #sidebar{ display: none; }
  117. #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
  118. #login-form {margin:5em auto 2em auto; padding:20px; width:340px; border:1px solid #FDBF3B; background-color:#FFEBC1; border-radius:4px; box-sizing: border-box;}
  119. #login-form label {display:block; margin-bottom:5px; font-weight:bold;}
  120. #login-form label[for=autologin] {font-weight:normal;}
  121. #login-form input {height: 29px;}
  122. #login-form input[type=text], #login-form input[type=password], #login-form input[type=submit] {display: block; width: 100%;}
  123. #login-form input[type=text], #login-form input[type=password] {margin-bottom: 15px;}
  124. #login-form a.lost_password {float:right; font-weight:normal;}
  125. #login-form h3 {text-align: center;}
  126. div.modal { border-radius:5px; background:#fff; z-index:50; padding:4px;}
  127. div.modal h3.title {display:none;}
  128. div.modal p.buttons {margin-bottom:0;}
  129. div.modal .box p {margin: 0.3em 0;}
  130. .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
  131. .mobile-show {display: none;}
  132. .hidden {display: none;}
  133. .inline-block {display: inline-block;}
  134. .inline-flex {display: inline-flex;}
  135. /***** Links *****/
  136. a, a:link, a:visited{ color: #169; text-decoration: none; }
  137. a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
  138. a img{ border: 0; }
  139. a.issue.closed, a.issue.closed:link, a.issue.closed:visited { color: #999; text-decoration: line-through; }
  140. a.project.closed, a.project.closed:link, a.project.closed:visited { color: #999; }
  141. a.user.locked, a.user.locked:link, a.user.locked:visited {color: #999;}
  142. a.user.user-mention {
  143. background-color: #DDEEFF;
  144. padding: 0.1em 0.1em;
  145. border-radius: 0.1em;
  146. }
  147. #sidebar a.selected {line-height:1.7em; padding:1px 3px 2px 2px; margin-left:-2px; background-color:#9DB9D5; color:#fff; border-radius:2px;}
  148. #sidebar a.selected:hover {text-decoration:none;}
  149. #sidebar .query.default {font-weight: bold;}
  150. #admin-menu a {line-height:1.7em;}
  151. #admin-menu a.selected {padding-left: 20px !important; background-position: 2px 40%;}
  152. a.collapsible {padding-left: 12px; }
  153. a#toggle-completed-versions {color:#999;}
  154. /***** Dropdown *****/
  155. .drdn {position:relative;}
  156. .drdn-trigger {
  157. box-sizing:border-box;
  158. overflow:hidden;
  159. text-overflow:ellipsis;
  160. white-space:nowrap;
  161. cursor:pointer;
  162. user-select:none;
  163. -moz-user-select:none;
  164. -webkit-user-select:none;
  165. }
  166. .drdn-content {
  167. display:none;
  168. position:absolute;
  169. right:0px;
  170. top:25px;
  171. min-width:100px;
  172. background-color:#fff;
  173. border:1px solid #ccc;
  174. border-radius:4px;
  175. color:#555;
  176. z-index:99;
  177. }
  178. .drdn.expanded .drdn-content {display:block;}
  179. .drdn-content .quick-search {margin:8px;}
  180. .drdn-content .autocomplete {box-sizing: border-box; width:100% !important; height:28px;}
  181. .drdn-content .autocomplete:focus {border-color:#5ad;}
  182. .drdn-items {max-height:400px; overflow:auto;}
  183. div + .drdn-items {border-top:1px solid #ccc;}
  184. .drdn-items>* {
  185. display:block;
  186. border:1px solid #fff;
  187. overflow:hidden;
  188. text-overflow: ellipsis;
  189. white-space:nowrap;
  190. padding:4px 8px;
  191. }
  192. .drdn-items>a:hover {text-decoration:none;}
  193. .drdn-items>*:focus {border:1px dotted #bbb;}
  194. .drdn-items.selection>*:before {
  195. content:' ';
  196. display:inline-block;
  197. line-height:1em;
  198. width:1em;
  199. height:1em;
  200. margin-right:4px;
  201. font-weight:bold;
  202. }
  203. .drdn-items.selection>*.selected:before {
  204. content:"\2713 ";
  205. }
  206. .drdn-items.selection:empty {
  207. border: none;
  208. }
  209. .drdn-items>span {color:#999;}
  210. .contextual .drdn-content {top:18px;}
  211. .contextual .drdn-items {padding:2px; min-width: 160px;}
  212. .contextual .drdn-items>a {padding: 5px 8px;}
  213. .contextual .drdn-items>a.icon {padding-left: 24px; background-position-x: 4px;}
  214. .contextual .drdn-items>a:hover {color:#2A5685; border:1px solid #628db6; background-color:#eef5fd; border-radius:3px;}
  215. #project-jump.drdn {width:200px;display:inline-block;}
  216. #project-jump .drdn-trigger {
  217. width:100%;
  218. height:24px;
  219. display:inline-block;
  220. padding:3px 18px 3px 6px;
  221. border-radius:3px;
  222. border:1px solid #ccc;
  223. margin:0 !important;
  224. vertical-align:middle;
  225. color:#555;
  226. background:#fff url(/arrow_down.png) no-repeat 97% 50%;
  227. }
  228. #project-jump .drdn.expanded .drdn-trigger {background-image:url(/arrow_up.png);}
  229. #project-jump .drdn-content {width:280px;}
  230. #project-jump .drdn-items>* {color:#555 !important;}
  231. #project-jump .drdn-items>a:hover {background-color:#759FCF; color:#fff !important;}
  232. /***** Tables *****/
  233. table.list, .table-list { border: 1px solid #e4e4e4; width: 100%; margin-bottom: 4px; border-radius: 3px; border-spacing: 0; overflow: hidden;}
  234. table.list th, .table-list-header { background-color:#EEEEEE; padding: 4px; white-space:nowrap; font-weight:bold; }
  235. table.list th.whitespace-normal {white-space: normal;}
  236. table.list td {text-align:center; vertical-align:middle; padding-right:10px;}
  237. table.list td.id { width: 2%; text-align: center;}
  238. table.list td.name, table.list td.description, table.list td.subject, table.list td.parent-subject, table.list td.comments, table.list td.roles, table.list td.attachments, table.list td.text, table.list td.short_description {text-align: left;}
  239. table.list td.attachments span {display: block; height: 16px;}
  240. table.list td.attachments span a.icon-download {display: inline-block; visibility: hidden;}
  241. table.list td.attachments span:hover a.icon-download {visibility: visible;}
  242. table.list td.tick {width:15%}
  243. table.list td.checkbox { width: 15px; padding: 2px 0 0 0; }
  244. table.list .checkbox input {padding:0px; height: initial;}
  245. table.list td.buttons, div.buttons { white-space:nowrap; text-align: right; }
  246. table.list td.buttons a, div.buttons a { margin-right: 0.6em; }
  247. table.list td.buttons a:last-child, div.buttons a:last-child { margin-right: 0; }
  248. table.list td.buttons img, div.buttons img {vertical-align:middle;}
  249. table.list td.reorder {width:15%; white-space:nowrap; text-align:center; }
  250. table.list table.progress td {padding-right:0px;}
  251. table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; }
  252. table.list tr.overdue td.due_date { color: #c22; }
  253. #role-permissions-trackers table.list th {white-space:normal;}
  254. .table-list-cell {display: table-cell; vertical-align: top; padding:2px; }
  255. .table-list div.buttons {width: 15%;}
  256. tr.project td.name a { white-space:nowrap; }
  257. tr.project.closed, tr.project.archived { color: #aaa; }
  258. tr.project.closed a, tr.project.archived a { color: #aaa; }
  259. tr.issue { text-align: center; white-space: nowrap; }
  260. tr.issue td.subject, tr.issue td.parent-subject, tr.issue td.category, td.assigned_to, td.last_updated_by, tr.issue td.string, tr.issue td.text, tr.issue td.list, tr.issue td.relations, tr.issue td.parent, tr.issue td.watcher_users { white-space: normal; }
  261. tr.issue td.relations { text-align: left; }
  262. tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
  263. tr.issue td.relations span, tr.issue td.watcher_users a {white-space: nowrap;}
  264. tr.issue td.watcher_users ul {list-style: none; padding: 0; margin: 0}
  265. table.issues td.block_column {color:#777; font-size:90%; padding:4px 4px 4px 24px; text-align:left; white-space:normal;}
  266. table.issues td.block_column span {font-weight: bold; display: block; margin-bottom: 4px;}
  267. table.issues td.block_column pre {white-space:normal;}
  268. tr.idnt td.subject, tr.idnt td.name {background: url(/arrow_right.png) no-repeat 2px 50%;}
  269. tr.idnt-1 td.subject, tr.idnt-1 td.name {padding-left: 24px; background-position: 8px 50%;}
  270. tr.idnt-2 td.subject, tr.idnt-2 td.name {padding-left: 40px; background-position: 24px 50%;}
  271. tr.idnt-3 td.subject, tr.idnt-3 td.name {padding-left: 56px; background-position: 40px 50%;}
  272. tr.idnt-4 td.subject, tr.idnt-4 td.name {padding-left: 72px; background-position: 56px 50%;}
  273. tr.idnt-5 td.subject, tr.idnt-5 td.name {padding-left: 88px; background-position: 72px 50%;}
  274. tr.idnt-6 td.subject, tr.idnt-6 td.name {padding-left: 104px; background-position: 88px 50%;}
  275. tr.idnt-7 td.subject, tr.idnt-7 td.name {padding-left: 120px; background-position: 104px 50%;}
  276. tr.idnt-8 td.subject, tr.idnt-8 td.name {padding-left: 136px; background-position: 120px 50%;}
  277. tr.idnt-9 td.subject, tr.idnt-9 td.name {padding-left: 152px; background-position: 136px 50%;}
  278. table.issue-report {table-layout:fixed;}
  279. .issue-report-graph {width: 75%; margin: 2em 0;}
  280. tr.entry { border: 1px solid #f8f8f8; }
  281. tr.entry td { white-space: nowrap; }
  282. tr.entry td.filename {width:30%; text-align:left;}
  283. tr.entry td.filename_no_report {width:70%; text-align:left;}
  284. tr.entry td.size { text-align: right; font-size: 90%; }
  285. tr.entry td.revision, tr.entry td.author { text-align: center; }
  286. tr.entry td.age { text-align: right; }
  287. tr.entry.file td.filename a { margin-left: 16px; }
  288. tr.entry.file td.filename_no_report a { margin-left: 16px; }
  289. tr span.expander, .gantt_subjects div > span.expander {background-position: 2px 50%; padding-left: 8px; margin-left: 0; cursor: pointer;}
  290. .gantt_subjects div > span.expander {padding-left: 12px;}
  291. .gantt_subjects div > span .icon-gravatar {float: none;}
  292. tr.changeset { height: 20px }
  293. tr.changeset ul, ol { margin-top: 0px; margin-bottom: 0px; }
  294. tr.changeset td.revision_graph { width: 15%; background-color: #fffffb; }
  295. tr.changeset td.author { text-align: center; width: 15%; white-space:nowrap;}
  296. tr.changeset td.committed_on { text-align: center; width: 15%; white-space:nowrap;}
  297. table.files tbody th {text-align:left;}
  298. table.files tr.file td.filename { text-align: left; padding-left: 24px; }
  299. table.files tr.file td.digest { font-size: 80%; }
  300. table.members td.roles, table.memberships td.roles { width: 45%; }
  301. table.members td.buttons { text-align: left; width: 1px; white-space: nowrap;}
  302. table.messages td.last_message {text-align:left;}
  303. tr.message { height: 2.6em; }
  304. tr.message td.created_on { white-space: nowrap; }
  305. tr.message td.last_message { font-size: 80%; white-space: nowrap; }
  306. tr.message.sticky td.subject { font-weight: bold; }
  307. body.avatars-on #replies .message.reply {padding-left: 32px;}
  308. #replies .reply:target h4.reply-header {background-color:#DDEEFF;}
  309. #replies h4 img.gravatar {margin-left:-32px;}
  310. tr.version.closed, tr.version.closed a { color: #999; }
  311. tr.version td.name { padding-left: 20px; }
  312. tr.version td.date, tr.version td.status, tr.version td.sharing { text-align: center; white-space:nowrap; }
  313. tr.member td.icon-user, #principals_for_new_member .icon-user {background:transparent;}
  314. tr.user td {width:13%;white-space: nowrap;}
  315. td.username, td.firstname, td.lastname, td.email {text-align:left !important;}
  316. tr.user td.email { width:18%; }
  317. tr.user.locked, tr.user.registered { color: #aaa; }
  318. tr.user.locked a, tr.user.registered a { color: #aaa; }
  319. table.permissions td.role {color:#999;font-size:90%;font-weight:normal !important;text-align:center;vertical-align:bottom;}
  320. table.permissions tr.group>td:nth-of-type(1),
  321. table.tracker-summary tr.group>td:nth-of-type(1) {font-weight: bold;}
  322. tr.wiki-page-version td.updated_on, tr.wiki-page-version td.author {text-align:center;}
  323. tr.time-entry { text-align: center; white-space: nowrap; }
  324. tr.time-entry td.issue, tr.time-entry td.comments, tr.time-entry td.subject, tr.time-entry td.activity, tr.time-entry td.project { text-align: left; white-space: normal; }
  325. td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
  326. td.hours .hours-dec { font-size: 0.9em; }
  327. table.plugins td { vertical-align: middle; }
  328. table.plugins td.configure { text-align: right; padding-right: 1em; }
  329. table.plugins span.name { font-weight: bold; display: block; margin-bottom: 6px; }
  330. table.plugins span.description { display: block; font-size: 0.9em; }
  331. table.plugins span.url { display: block; font-size: 0.9em; }
  332. table.list.enumerations {table-layout: fixed; margin-bottom: 2em;}
  333. tr.group td { padding: 0.8em 0 0.5em 0.3em; border-bottom: 1px solid #ccc; text-align:left; background-color: #fff;}
  334. tr.group span.count {top:-1px;}
  335. tr.group span.name {font-weight:bold;}
  336. tr.group span.totals {color: #aaa; font-size: 80%;}
  337. tr.group span.totals .value {font-weight:bold; color:#777;}
  338. tr.group a.toggle-all { color: #aaa; font-size: 80%; display:none; float:right; margin-right:4px;}
  339. tr.group:hover a.toggle-all { display:inline;}
  340. a.toggle-all:hover {text-decoration:none;}
  341. table.list tbody tr.group:hover { background-color:inherit; }
  342. table td {padding:2px;}
  343. table p {margin:0;}
  344. table.list:not(.odd-even) tbody tr:nth-child(odd), .odd, #issue-changesets div.changeset:nth-child(odd) { background-color:#f6f7f8; }
  345. table.list:not(.odd-even) tbody tr:nth-child(even), .even, #issue-changesets div.changeset:nth-child(even) { background-color: #fff; }
  346. table.list:not(.odd-even) tbody tr:nth-child(odd):hover, .odd:hover, #issue-changesets div.changeset:nth-child(odd):hover,
  347. table.list:not(.odd-even) tbody tr:nth-child(even):hover, .even:hover, #issue-changesets div.changeset:nth-child(even):hover { background-color:#ffffdd; }
  348. tr.builtin td.name {font-style:italic;}
  349. a.sort { padding-right: 16px; background-position: 100% 50%; background-repeat: no-repeat; }
  350. table.boards a.board { background: url(/comment.png) no-repeat 0% 50%; padding-left: 20px; }
  351. table.boards td.last-message {text-align:left;font-size:80%;}
  352. div.table-list.boards .table-list-cell.name {width: 30%;}
  353. #query_form_content {font-size:90%;}
  354. #query_form_with_buttons > p.contextual {font-size:12px; margin:12px 0px;}
  355. .query_sort_criteria_count {
  356. display: inline-block;
  357. min-width: 1em;
  358. }
  359. /* query form - options */
  360. #list-definition {
  361. margin: 0 15px;
  362. width: auto !important;
  363. }
  364. #list-definition > div {
  365. margin: 6px 0;
  366. display: flex;
  367. flex-wrap: wrap;
  368. align-items: center;
  369. gap: 5px 10px;
  370. }
  371. #list-definition > div .field{
  372. width: 160px;
  373. }
  374. .query-columns label {
  375. display:block;
  376. }
  377. #list-definition .buttons input[type=button] {
  378. width:35px;
  379. display:block;
  380. }
  381. .query-columns select {
  382. min-width:150px;
  383. }
  384. .query-totals {text-align:right; margin-top:-2.3em;}
  385. .query-totals>span:not(:first-child) {margin-left:0.6em;}
  386. .query-totals .value {font-weight:bold;}
  387. body.controller-timelog .query-totals {margin-top:initial;}
  388. body.controller-gantts fieldset#options > div > div {
  389. display: flex;
  390. flex-wrap: wrap;
  391. align-items: flex-start;
  392. gap: 5px 10px;
  393. }
  394. td.center {text-align:center;}
  395. #watchers select {width: 95%; display: block;}
  396. #watchers img.gravatar {margin: 0 4px 2px 0;}
  397. #users_for_watcher img.gravatar {padding-bottom: 2px; margin-right: 4px;}
  398. span#watchers_inputs {overflow:auto; display:block;}
  399. span.search_for_watchers {display:block;}
  400. span.search_for_watchers, span.add_attachment {font-size:80%; line-height:2.5em;}
  401. span.add_attachment a {padding-left:16px; background: url(/bullet_add.png) no-repeat 0 50%; }
  402. input:disabled, select:disabled, textarea:disabled {
  403. cursor: not-allowed;
  404. color: graytext;
  405. background-color: #ebebe4;
  406. }
  407. .highlight { background-color: #FCFD8D;}
  408. .highlight.token-1 { background-color: #faa;}
  409. .highlight.token-2 { background-color: #afa;}
  410. .highlight.token-3 { background-color: #aaf;}
  411. .box{
  412. padding:6px;
  413. margin-bottom: 10px;
  414. background-color:#f6f6f6;
  415. color:#505050;
  416. line-height:1.5em;
  417. border: 1px solid #e4e4e4;
  418. word-wrap: break-word;
  419. border-radius: 3px;
  420. }
  421. div.square {
  422. border: 1px solid #999;
  423. float: left;
  424. margin: .3em .4em 0 .4em;
  425. overflow: hidden;
  426. width: .6em; height: .6em;
  427. }
  428. .contextual {float:right; white-space: nowrap; line-height:1.4em;margin:5px 0px; padding-left: 10px; font-size:0.9em;}
  429. .contextual .icon {padding-top: 2px; padding-bottom: 3px;}
  430. .contextual input, .contextual select {font-size:0.9em;}
  431. .message .contextual { margin-top: 0; }
  432. .splitcontent {overflow: auto; display: flex; flex-wrap: wrap;}
  433. .splitcontentleft {flex: 1; margin-right: 5px;}
  434. .splitcontentright {flex: 1; margin-left: 5px;}
  435. .splitcontenttop {flex: 2; flex-basis: 100%;}
  436. form {display: inline;}
  437. input, select, button {vertical-align: middle; margin-top: 1px; margin-bottom: 1px; height: 24px; padding: 0 7px;}
  438. input, select, textarea, button { color: #333; background-color: #fff; border:1px solid #ccc; border-radius:3px; box-sizing: border-box;}
  439. select {
  440. -webkit-appearance: none;
  441. -moz-appearance: none;
  442. -ms-appearance: none;
  443. -o-appearance: none;
  444. appearance: none;
  445. background-color: #fff;
  446. background-image: url(/arrow_down.png);
  447. background-repeat: no-repeat;
  448. background-position: calc(100% - 7px) 50%;
  449. padding-right: 20px;
  450. }
  451. input[type="file"] {border: 0; padding-left: 0; padding-right: 0; height: initial; background-color: initial; }
  452. input[type="submit"], button[type="submit"] {
  453. -webkit-appearance: button;
  454. cursor: pointer;
  455. background-color: #fff;
  456. height: 28px;
  457. -webkit-transition: background-color 100ms linear;
  458. -moz-transition: background-color 100ms linear;
  459. -o-transition: background-color 100ms linear;
  460. transition: background-color 100ms linear;
  461. }
  462. input[type="submit"]:hover, button[type="submit"]:hover {
  463. background-color: #ddd;
  464. }
  465. input[type="text"]:focus, input[type="text"]:active,
  466. input[type="password"]:focus, input[type="password"]:active,
  467. input[type="date"]:focus, input[type="date"]:active,
  468. input[type="number"]:focus, input[type="number"]:active,
  469. select:focus, select:active,
  470. textarea:focus, textarea:active {
  471. border: 1px solid #5ad;
  472. outline: none;
  473. }
  474. input:placeholder-shown {
  475. text-overflow: ellipsis;
  476. }
  477. select[multiple=multiple] {background: #fff; padding-right: initial; height: auto;}
  478. fieldset {border: 1px solid #e4e4e4; margin:0; min-width: inherit;}
  479. legend {color: #333;}
  480. hr { width: 100%; height: 1px; background: #ccc; border: 0;}
  481. blockquote { font-style: italic; border-left: 3px solid #e0e0e0; padding-left: 0.6em; margin-left: 0;}
  482. blockquote blockquote { margin-left: 0;}
  483. abbr, span.field-description[title] { border-bottom: 1px dotted #aaa; cursor: help; }
  484. textarea.wiki-edit {width:99%; resize:vertical; box-sizing: border-box;}
  485. body.textarea-monospace textarea.wiki-edit {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace; font-size: 12px;}
  486. body.textarea-proportional textarea.wiki-edit {font-family: Verdana, sans-serif; font-size: 12px;}
  487. li p {margin-top: 0;}
  488. div.issue {background:#ffffdd; padding:6px; margin-bottom:6px; border: 1px solid #d7d7d7; border-radius:3px;}
  489. p.breadcrumb { font-size: 0.9em; margin: 4px 0 4px 0;}
  490. p.subtitle { font-size: 0.9em; margin: -6px 0 12px 0; font-style: italic; }
  491. p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
  492. .wiki-class-ltr {direction:ltr !important;}
  493. .wiki-class-rtl {direction:rtl !important;}
  494. div.issue div.subject div div { padding-left: 16px; word-break: break-word; }
  495. div.issue div.subject p {margin: 0; margin-bottom: 0.1em; font-size: 90%; color: #999;}
  496. div.issue div.subject>div>p { margin-top: 0.5em; }
  497. div.issue div.subject h3 {margin: 0; margin-bottom: 0.1em;}
  498. div.issue p.author {margin-top:0.5em;}
  499. div.issue span.private, div.journal span.private {font-size: 60%;}
  500. div.issue .next-prev-links {color:#999;}
  501. div.issue .attributes {margin-top: 2em;}
  502. div.issue .attributes .attribute {padding-left:180px; clear:left; min-height: 1.8em;}
  503. div.issue .attributes .attribute .label {width: 170px; margin-left:-180px; font-weight:bold; float:left; overflow: clip visible; text-overflow: ellipsis;}
  504. div.issue .attribute .value {overflow:auto; text-overflow: ellipsis;}
  505. div.issue .attribute.string_cf .value .wiki p {margin-top: 0; margin-bottom: 0;}
  506. div.issue .attribute.text_cf .value .wiki p:first-of-type {margin-top: 0;}
  507. div.issue.overdue .due-date .value { color: #c22; }
  508. body.controller-issues h2.inline-flex {padding-right: 0}
  509. #issue_tree table.issues, #relations table.issues { border: 0; }
  510. #issue_tree td.checkbox, #relations td.checkbox {display:none;}
  511. #issue_tree td.buttons, #relations td.buttons {padding:0;}
  512. #issue_tree .issues-stat, #relations .issues-stat {font-size: 80%}
  513. #issue_tree .issues-stat .badge, #relations .issues-stat .badge {bottom: initial;}
  514. #issue_tree .issue > td, #relations .issue > td, #issue_tree .issue .user {
  515. text-overflow: ellipsis; /* if text exceeds its space, add ... */
  516. overflow: hidden;
  517. }
  518. #issue_tree .issue > td.subject, #relations .issue > td.subject {
  519. width: 50%;
  520. word-break: break-word; /* break word if subject is too long */
  521. padding-right: 25px; /* this is the spaces that .buttons uses next to subject */
  522. }
  523. #issue_tree .issue > td.assigned_to, #relations .issue > td.assigned_to {
  524. white-space: nowrap;
  525. }
  526. #trackers_description, #issue_statuses_description {display:none;}
  527. #trackers_description dt, #issue_statuses_description dt {font-weight: bold; text-decoration: underline;}
  528. #trackers_description dd, #issue_statuses_description dd {margin: 0; padding: 0 0 1em 0;}
  529. #issue-form .assign-to-me-link { padding-left: 5px; }
  530. fieldset.collapsible {border-width: 1px 0 0 0;}
  531. fieldset.collapsible>legend { cursor:pointer; padding-left: 18px; background-position: 4px;}
  532. fieldset#date-range p { margin: 2px 0 2px 0; }
  533. #query_form_content > fieldset {
  534. min-width: 0;
  535. width: 100%;
  536. }
  537. #filters-table {
  538. float:left;
  539. width: auto;
  540. }
  541. #filters-table .field {
  542. width: 230px;
  543. }
  544. #filters-table .filter {
  545. margin: 5px 0 0 0;
  546. display: flex;
  547. flex-wrap: wrap;
  548. gap: 0 10px;
  549. }
  550. #filters-table .filter .operator select {
  551. width: 120px;
  552. }
  553. .add-filter {width:35%; float:right; text-align: right; vertical-align: top;}
  554. #issue_is_private_wrap {float:right; margin-right:1em;}
  555. .toggle-multiselect { margin-right:5px; cursor:pointer;}
  556. .buttons { font-size: 0.9em; margin-bottom: 1.4em; margin-top: 1em; }
  557. .buttons .icon {padding-bottom:3px; padding-top:1px;}
  558. div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
  559. div#issue-changesets div.changeset {border-bottom: 1px solid #ddd; padding: 4px;}
  560. div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
  561. .changeset-comments {margin-bottom:1em;}
  562. div.journal .contextual {margin-top: 0;}
  563. div.journal.private-notes .wiki {border-left:2px solid #d22; padding-left:4px; margin-left:-6px;}
  564. div.journal ul.details, ul.revision-info {color:#959595; margin-bottom: 1.5em;}
  565. div.journal ul.details a, ul.revision-info a {color:#70A7CD;}
  566. div.journal ul.details a:hover, ul.revision-info a:hover {color:#D14848;}
  567. body.avatars-on div.journal {padding-left:32px;}
  568. div.journal h4 img.gravatar {margin-left:-32px;}
  569. div.journal span.update-info {color: #666; font-size: 0.9em;}
  570. #update {margin-bottom: 1.4em;}
  571. #history .tab-content {
  572. padding: 0 6px;
  573. margin-bottom: 10px;
  574. border-right: 1px solid #d7d7d7;
  575. border-bottom: 1px solid #d7d7d7;
  576. border-left: 1px solid #d7d7d7;
  577. border-radius: 0 0 3px 3px / 0 0 3px 3px;
  578. }
  579. #history div:target h4.note-header {background-color:#DDEEFF;}
  580. #history p.nodata {display: none;}
  581. div#activity dl, #search-results { margin-left: 2em; }
  582. div#activity dd, #search-results dd { margin-bottom: 1em; padding-left: 18px; font-size: 0.9em; }
  583. div#activity dt.me .time { border-bottom: 1px solid #999; }
  584. div#activity dt .time { color: #777; font-size: 80%; }
  585. div#activity dd .description, #search-results dd .description { font-style: italic; }
  586. div#activity span.project:after, #search-results span.project:after { content: " -"; }
  587. div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
  588. div#activity dt.grouped {margin-left:5em;}
  589. div#activity dd.grouped {margin-left:9em;}
  590. div#activity dt.icon {background-position: 0 10px !important;}
  591. div#activity h3 {
  592. padding: 5px;
  593. background-color: #eeeeee;
  594. }
  595. div#activity dt {
  596. padding-top: 10px;
  597. border-top: 1px solid #eeeeee;
  598. }
  599. div#activity dl dt:first-child {
  600. border: 0px;
  601. }
  602. #activity_scope_form select#user_id {
  603. max-width: 100%;
  604. }
  605. #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }
  606. div#search-results-counts {float:right;}
  607. div#search-results-counts ul { margin-top: 0.5em; }
  608. div#search-results-counts li { list-style-type:none; float: left; margin-left: 1em; }
  609. div#roadmap .related-issues { margin-bottom: 1em; }
  610. div#roadmap .related-issues td.checkbox { display: none; }
  611. div#roadmap .related-issues td.assigned_to { width:1px; white-space:nowrap; padding: 0; }
  612. div#roadmap .related-issues td.assigned_to img { padding-left: 4px; padding-right: 4px;}
  613. div#roadmap .wiki h1:first-child { display: none; }
  614. div#roadmap .wiki h1 { font-size: 120%; }
  615. div#roadmap .wiki h2 { font-size: 110%; }
  616. div#roadmap h2, div#roadmap h3 {padding-right: 0;}
  617. body.controller-versions.action-show div#roadmap .related-issues {width:70%;}
  618. div#roadmap .version-article {padding-bottom: 12px;}
  619. div#version-summary { float:right; width:28%; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
  620. div#version-summary fieldset { margin-bottom: 1em; }
  621. div#version-summary fieldset.time-tracking table { width:100%; }
  622. div#version-summary th, div#version-summary td.total-hours { text-align: right; }
  623. table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
  624. table#time-report tbody tr.subtotal { font-style: italic; color:#777;}
  625. table#time-report tbody tr.subtotal td.hours { color:#b0b0b0; }
  626. table#time-report tbody tr.total { font-weight: bold; background-color:#EEEEEE; border-top:1px solid #e4e4e4;}
  627. table#time-report .hours-dec { font-size: 0.9em; }
  628. div.wiki-page .contextual a {opacity: 0.4}
  629. div.wiki-page .contextual a:hover {opacity: 1}
  630. div.wiki a:target + h1, div.wiki a:target + h2, div.wiki a:target + h3, div.wiki a:target + h4, div.wiki a:target + h5, div.wiki a:target + h6 {
  631. background-color:#DDEEFF;
  632. }
  633. .wiki-update-info {text-align:right; color:#666; font-size:90%;}
  634. form .attributes select { width: 60%; }
  635. form .attributes select + a.icon-only { vertical-align: middle; margin-left: 4px; }
  636. input#issue_subject, input#document_title { width: 99%; }
  637. select#issue_done_ratio { width: 95px; }
  638. ul.projects {margin:0; padding-left:1em;}
  639. ul.projects ul.projects {padding-left:1.6em;}
  640. ul.projects.root {margin:0; padding:0;}
  641. ul.projects li.root, ul.projects li.child {list-style-type:none;}
  642. ul.projects li.root div.archived, ul.projects li.child div.archived {color: #aaa;}
  643. ul.projects div.description ul li {list-style-type:initial;}
  644. #projects-index {
  645. column-count: auto;
  646. column-width: 400px;
  647. -webkit-column-count: auto;
  648. -webkit-column-width: 400px;
  649. -webkit-column-gap : 0.5rem;
  650. -moz-column-count: auto;
  651. -moz-column-width: 400px;
  652. -moz-column-gap : 0.5rem;
  653. margin-bottom: 1.2em;
  654. }
  655. #projects-index li.root ul.projects { border-left: 3px solid #e0e0e0; padding-left:1em;}
  656. #projects-index ul.projects li.root {
  657. margin-bottom: 1em;
  658. padding: 15px 20px;
  659. border: 1px solid #d7d7d7;
  660. border-radius: 3px;
  661. box-sizing: border-box;
  662. -moz-box-sizing: border-box;
  663. -webkit-box-sizing: border-box;
  664. break-inside: avoid-column;
  665. -webkit-break-inside: avoid-column;
  666. -moz-break-inside: avoid-column;
  667. page-break-inside:avoid;
  668. -webkit-column-break-inside: avoid;
  669. -moz-column-break-inside: avoid;
  670. width: 100%;
  671. }
  672. #projects-index ul.projects li.child {margin-top: 1em;}
  673. #projects-index ul.projects div.root a.project { font-family: "Trebuchet MS", Verdana, sans-serif; font-weight: bold; font-size: 16px; margin: 0 0 10px 0; }
  674. #projects-index ul.projects div.description {
  675. padding-top: 0.5em;
  676. }
  677. #projects-index a.icon-user, a.icon-bookmarked-project {padding-left:0; padding-right:20px; background-position:98% 50%;}
  678. #projects-index a.icon-user.icon-bookmarked-project {
  679. background-image: url(/tag_blue.png), url(/user.png);
  680. background-position: bottom 0px right 0px, bottom 0px right 20px;
  681. padding-right: 40px;
  682. padding-top: 4px;
  683. }
  684. #notified-projects>ul, #tracker_project_ids>ul, #custom_field_project_ids>ul {max-height:250px; overflow-y:auto;}
  685. ul.subprojects {list-style: none; display: inline-block; padding: 0; margin: 0;}
  686. ul.subprojects li {float: left;}
  687. ul.subprojects li:not(:last-child)::after {content: ', '; white-space: pre;}
  688. #related-issues li img {vertical-align:middle;}
  689. ul.properties {padding:0; font-size: 0.9em; color: #777;}
  690. ul.properties li {list-style-type:none;}
  691. ul.properties li span {font-style:italic;}
  692. .total-hours { font-size: 110%; font-weight: bold; }
  693. .total-hours span.hours-int { font-size: 120%; }
  694. .autoscroll {overflow-x: auto; padding:1px; margin-bottom: 1.2em; position: relative;}
  695. #user_login, #user_firstname, #user_lastname, #user_mail, #my_account_form select, #user_form select { width: 90%; }
  696. #workflow_copy_form select { width: 200px; }
  697. table.transitions td.enabled {background: #bfb;}
  698. #workflow_form table select {font-size:90%; max-width:100px;}
  699. table.fields_permissions td.readonly {background:#ddd;}
  700. table.fields_permissions td.required {background:#d88;}
  701. select.expandable {vertical-align:top;}
  702. textarea#custom_field_possible_values {width: 95%; resize:vertical}
  703. textarea#custom_field_default_value {width: 95%; resize:vertical}
  704. .sort-handle {display:inline-block; vertical-align:middle; cursor: move;}
  705. input#content_comments {width: 99%}
  706. span.pagination {margin-left:3px; color:#888; display:block;}
  707. .pagination ul.pages {
  708. margin: 0 5px 0 0;
  709. padding: 0;
  710. display: inline;
  711. }
  712. .pagination ul.pages li {
  713. display: inline-block;
  714. padding: 0;
  715. border: 1px solid #ddd;
  716. margin-left: -1px;
  717. line-height: 2em;
  718. margin-bottom: 1em;
  719. white-space: nowrap;
  720. text-align: center;
  721. }
  722. .pagination ul.pages li a,
  723. .pagination ul.pages li span {
  724. padding: 3px 8px;
  725. }
  726. .pagination ul.pages li:first-child {
  727. border-top-left-radius: 4px;
  728. border-bottom-left-radius: 4px;
  729. }
  730. .pagination ul.pages li:last-child {
  731. border-top-right-radius: 4px;
  732. border-bottom-right-radius: 4px;
  733. }
  734. .pagination ul.pages li.current {
  735. color: white;
  736. background-color: #628DB6;
  737. border-color: #628DB6;
  738. }
  739. .pagination ul.pages li.page:hover {
  740. background-color: #ddd;
  741. }
  742. .pagination ul.pages li.page a:hover,
  743. .pagination ul.pages li.page a:active {
  744. color: #169;
  745. text-decoration: inherit;
  746. }
  747. .pagination .per-page span.selected {
  748. font-weight: bold;
  749. }
  750. span.pagination>span {white-space:nowrap;}
  751. .controller-attachments.action-show span.pagination, .controller-repositories.action-entry span.pagination {
  752. display: block;
  753. margin-top: 1.2em;
  754. }
  755. #search-form fieldset p {margin:0.2em 0;}
  756. #csv-export-options fieldset {padding: 0;}
  757. /***** Tabular forms ******/
  758. .tabular p{
  759. margin: 0;
  760. padding: 3px 0 3px 0;
  761. padding-left: 180px; /* width of left column containing the label elements */
  762. min-height: 2em;
  763. clear:left;
  764. }
  765. html>body .tabular p {overflow:hidden;}
  766. .tabular input, .tabular select {max-width:95%}
  767. .tabular textarea {width:95%; resize:vertical;}
  768. input#twofa_code, img#twofa_code { width: 140px; }
  769. ul.twofa_backup_codes { list-style-type: none; padding: 0; display: inline-block; columns: 14em 2;}
  770. ul.twofa_backup_codes code { font-size: 16px; line-height: 2em }
  771. .tabular label{
  772. font-weight: bold;
  773. float: left;
  774. text-align: right;
  775. /* width of left column */
  776. margin-left: -180px;
  777. /* width of labels. Should be smaller than left column to create some right margin */
  778. width: 175px;
  779. line-height: 24px;
  780. }
  781. .tabular label.floating{
  782. font-weight: normal;
  783. margin-left: 0px;
  784. text-align: left;
  785. width: 270px;
  786. }
  787. label.block {
  788. display: block;
  789. width: auto !important;
  790. }
  791. .tabular label.block{
  792. font-weight: normal;
  793. margin-left: 0px !important;
  794. text-align: left;
  795. float: none;
  796. }
  797. .tabular label.inline{
  798. font-weight: normal;
  799. float:none;
  800. margin-left: 5px !important;
  801. width: auto;
  802. }
  803. .tabular label.error {
  804. color: #bb0000;
  805. }
  806. .tabular label.error + *:not(#issue_description_and_toolbar), .tabular label.error + span#issue_description_and_toolbar div.jstBlock {
  807. border: 1px solid #bb0000;
  808. }
  809. label.no-css {
  810. font-weight: inherit;
  811. float:none;
  812. text-align:left;
  813. margin-left:0px;
  814. width:auto;
  815. }
  816. input#time_entry_comments { width: 90%;}
  817. input#months { width: 46px; }
  818. .jstBlock .jstTabs, .jstBlock .wiki-preview { width: 99%; }
  819. .jstBlock .jstTabs { padding-right: 6px; }
  820. .jstBlock .wiki-preview { padding: 2px; }
  821. .jstBlock .wiki-preview p:first-child { padding-top: 0 !important; margin-top: 0 !important;}
  822. .jstBlock .wiki-preview p:last-child { padding-bottom: 0 !important; margin-bottom: 0 !important;}
  823. .tabular .wiki-preview, .tabular .jstTabs {width: 95%;}
  824. .tabular.settings .wiki-preview, .tabular.settings .jstTabs { width: 99%; }
  825. .tabular.settings .wiki-preview p {padding-left: 0 !important}
  826. .tabular .wiki-preview p {
  827. min-height: initial;
  828. padding: 0;
  829. padding-top: 1em !important;
  830. padding-bottom: 1em !important;
  831. overflow: initial;
  832. }
  833. .tabular.settings p { padding-left: 300px; }
  834. .tabular.settings label{ margin-left: -300px; width: 295px; }
  835. .tabular.settings textarea, .tabular.settings .wiki-preview, .tabular.settings .jstTabs { width: 99%; }
  836. .settings.enabled_scm table {width:100%}
  837. .settings.enabled_scm td.scm_name{ font-weight: bold; }
  838. fieldset.settings label { display: block; }
  839. fieldset#notified_events .parent { padding-left: 20px; }
  840. span.required {color: #bb0000;}
  841. .summary {font-style: italic;}
  842. .check_box_group {
  843. display:block;
  844. width:95%;
  845. max-height:120px;
  846. overflow-y:auto;
  847. padding:2px 4px 4px 2px;
  848. background:#fff;
  849. border:1px solid #9EB1C2;
  850. border-radius:2px
  851. }
  852. .check_box_group label {
  853. font-weight: normal;
  854. margin-left: 0px !important;
  855. text-align: left;
  856. float: none;
  857. display: block;
  858. width: auto;
  859. }
  860. .check_box_group.bool_cf {border:0; background:inherit;}
  861. .check_box_group.bool_cf label {display: inline;}
  862. .attachments_fields input.description, #existing-attachments input.description {margin-left:4px; width:340px;}
  863. .attachments_fields>span, #existing-attachments>span {display:block; white-space:nowrap;}
  864. .attachments_fields input.filename, #existing-attachments .filename {border:0; width:250px; color:#555; background-color:inherit; }
  865. .tabular input.filename {max-width:75% !important;}
  866. .attachments_fields input.filename {height:1.8em;}
  867. .attachments_fields .ajax-waiting input.filename {background:url(/hourglass.png) no-repeat 0px 50%;}
  868. .attachments_fields .ajax-loading input.filename {background:url(/loading.gif) no-repeat 0px 50%;}
  869. .attachments_fields div.ui-progressbar { width: 100px; height:14px; margin: 2px 0 -5px 8px; display: inline-block; }
  870. a.remove-upload:hover {text-decoration:none !important;}
  871. .existing-attachment.deleted .filename {text-decoration:line-through; color:#999 !important;}
  872. div.fileover, p.custom-field-filedroplistner.fileover { background-color: lavender; }
  873. div.attachments p { margin:4px 0 2px 0; }
  874. div.attachments img { vertical-align: middle; }
  875. div.attachments span.author { font-size: 0.9em; color: #888; }
  876. div.thumbnails {margin:0.6em;}
  877. div.thumbnails div {background:#fff;border:2px solid #ddd;display:inline-block;margin-right:2px;}
  878. div.thumbnails img {margin: 3px; vertical-align: middle;}
  879. #history div.thumbnails {margin-left: 2em;}
  880. p.other-formats { text-align: right; font-size:0.9em; color: #666; }
  881. .other-formats span + span:before { content: "| "; }
  882. a.atom { background: url(/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
  883. em.info {font-style:normal;display:block;font-size:90%;color:#888;}
  884. em.info.error {padding-left:20px; background:url(/exclamation.png) no-repeat 0 50%;}
  885. textarea.text_cf {width:95%; resize:vertical;}
  886. input.string_cf, input.link_cf {width:95%;}
  887. select.bool_cf {width:auto !important;}
  888. #tab-content-modules fieldset p {margin:3px 0 4px 0;}
  889. #users_for_watcher {height: 200px; overflow:auto;}
  890. #users_for_watcher label {display: block;}
  891. input#principal_search, input#user_search {width:90%}
  892. .roles-selection label {display:inline-block; width:210px;}
  893. input.autocomplete {
  894. background: #fff url(/magnifier.png) no-repeat 2px 50%; padding-left:20px !important;
  895. }
  896. input.autocomplete.ajax-loading {
  897. background-image: url(/loading.gif);
  898. }
  899. .role-visibility {padding-left:2em;}
  900. .objects-selection {
  901. height: 300px;
  902. overflow: auto;
  903. margin-bottom: 1em;
  904. }
  905. .objects-selection label {
  906. display: block;
  907. }
  908. .objects-selection>div, #user_group_ids {
  909. column-count: auto;
  910. column-width: 200px;
  911. -webkit-column-count: auto;
  912. -webkit-column-width: 200px;
  913. -webkit-column-gap : 0.5rem;
  914. -webkit-column-rule: 1px solid #ccc;
  915. -moz-column-count: auto;
  916. -moz-column-width: 200px;
  917. -moz-column-gap : 0.5rem;
  918. -moz-column-rule: 1px solid #ccc;
  919. }
  920. /***** Flash & error messages ****/
  921. #errorExplanation, div.flash, .nodata, .warning, .conflict {
  922. padding: 6px 4px 6px 30px;
  923. margin-bottom: 12px;
  924. font-size: 1.1em;
  925. border: 1px solid;
  926. border-radius: 3px;
  927. }
  928. div.flash {margin-top: 8px;}
  929. div.flash.error, #errorExplanation {
  930. background: url(/exclamation.png) 8px 50% no-repeat;
  931. background-color: #ffe3e3;
  932. border-color: #d88;
  933. color: #880000;
  934. }
  935. div.flash.notice {
  936. background: url(/true.png) 8px 5px no-repeat;
  937. background-color: #dfffdf;
  938. border-color: #9fcf9f;
  939. color: #005f00;
  940. }
  941. div.flash.warning, .conflict {
  942. background: url(/warning.png) 8px 5px no-repeat;
  943. background-color: #F3EDD1;
  944. border-color: #eadbbc;
  945. color: #A6750C;
  946. text-align: left;
  947. }
  948. .nodata, .warning {
  949. text-align: center;
  950. background-color: #F3EDD1;
  951. border-color: #eadbbc;
  952. color: #A6750C;
  953. }
  954. #errorExplanation ul { font-size: 0.9em;}
  955. #errorExplanation h2, #errorExplanation p { display: none; }
  956. .conflict-details {font-size:80%;}
  957. /***** Ajax indicator ******/
  958. #ajax-indicator {
  959. position: absolute; /* fixed not supported by IE */
  960. background-color:#eee;
  961. border: 1px solid #bbb;
  962. top:35%;
  963. left:40%;
  964. width:20%;
  965. font-weight:bold;
  966. text-align:center;
  967. padding:0.6em;
  968. z-index:100;
  969. opacity: 0.5;
  970. }
  971. html>body #ajax-indicator { position: fixed; }
  972. #ajax-indicator span {
  973. background-position: 0% 40%;
  974. background-repeat: no-repeat;
  975. background-image: url(/loading.gif);
  976. padding-left: 26px;
  977. vertical-align: bottom;
  978. }
  979. /***** Calendar *****/
  980. ul.cal {
  981. list-style: none;
  982. width: 100%;
  983. padding: 0;
  984. display: grid;
  985. grid-template-columns: 2rem repeat(7, 1fr);
  986. margin: 0;
  987. border: 1px solid #c0c0c0;
  988. border-spacing: 0;
  989. border-radius: 3px;
  990. }
  991. .cal .calhead {
  992. background-color:#eee;
  993. text-align: center;
  994. font-weight: bold;
  995. padding: 4px
  996. }
  997. .cal .week-number {
  998. background-color:#eee;
  999. border:none;
  1000. font-size: 1em;
  1001. padding: 4px;
  1002. text-align: center;
  1003. }
  1004. .cal .week-number .label-week {
  1005. display: none;
  1006. }
  1007. .cal .calbody {
  1008. border: 1px solid #d7d7d7;
  1009. vertical-align: top;
  1010. font-size: 0.9em;
  1011. border-bottom: 0;
  1012. border-right: 0;
  1013. line-height: 1.2;
  1014. min-height: calc(1.2em * 6);
  1015. padding: 2px;
  1016. }
  1017. .cal .calbody p.day-num {font-size: 1.1em; text-align:right;}
  1018. .cal .calbody .abbr-day {display:none}
  1019. .cal .calbody.odd p.day-num {color: #bbb;}
  1020. .cal .calbody.today {background:#ffd;}
  1021. .cal .calbody.today p.day-num {font-weight: bold;}
  1022. .cal .calbody .icon {padding-top: 2px; padding-bottom: 3px;}
  1023. .cal .calbody.nwday:not(.odd) {background-color:#f1f1f1;}
  1024. .cal .starting a.issue, p.cal.legend .starting {background: url(/bullet_go.png) no-repeat -1px -2px; padding-left:16px;}
  1025. .cal .ending a.issue, p.cal.legend .ending {background: url(/bullet_end.png) no-repeat -1px -2px; padding-left:16px;}
  1026. .cal .starting.ending a.issue, p.cal.legend .starting.ending {background: url(/bullet_diamond.png) no-repeat -1px -2px; padding-left:16px;}
  1027. p.cal.legend span {display:block;}
  1028. .controller-calendars p.buttons {margin-top: unset;}
  1029. /***** Tooltips ******/
  1030. .tooltip{position:relative;z-index:24;}
  1031. .tooltip:hover{z-index:25;color:#000;}
  1032. .tooltip span.tip{display: none; text-align:left;}
  1033. .tooltip span.tip a { color: #169 !important; }
  1034. .tooltip span.tip img.gravatar {
  1035. float: none;
  1036. margin: 0;
  1037. }
  1038. div.tooltip:hover span.tip{
  1039. display:block;
  1040. position:absolute;
  1041. top:12px; width:270px;
  1042. border:1px solid #555;
  1043. background-color:#fff;
  1044. padding: 4px;
  1045. font-size: 0.8em;
  1046. color:#505050;
  1047. }
  1048. table.cal div.tooltip:hover span.tip {
  1049. top: 25px;
  1050. }
  1051. img.ui-datepicker-trigger {
  1052. cursor: pointer;
  1053. vertical-align: middle;
  1054. margin-left: 4px;
  1055. }
  1056. /***** Documents *****/
  1057. #document-list .document-group {
  1058. margin-bottom: 15px;
  1059. }
  1060. /***** Progress bar *****/
  1061. table.progress {
  1062. border-collapse: collapse;
  1063. border-spacing: 0pt;
  1064. empty-cells: show;
  1065. text-align: center;
  1066. float:left;
  1067. margin: 1px 6px 1px 0px;
  1068. width:80px;
  1069. }
  1070. table.progress td { height: 1em; }
  1071. table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
  1072. table.progress td.done { background: #D3EDD3 none repeat scroll 0%; }
  1073. table.progress td.todo { background: #eee none repeat scroll 0%; }
  1074. p.percent {font-size: 80%; margin:0;}
  1075. p.progress-info {clear: left; font-size: 80%; margin-top:-4px; color:#777;}
  1076. .version-overview table.progress {width:40em;}
  1077. .version-overview table.progress td { height: 1.2em; }
  1078. /***** Tabs *****/
  1079. #content .tabs {height: 2.6em; margin-bottom:1.2em; position:relative; overflow:hidden;}
  1080. #content .tabs ul {margin:0; position:absolute; bottom:0; padding-left:0.5em; min-width: 2000px; width: 100%; border-bottom: 1px solid #bbbbbb;}
  1081. #content .tabs ul li {
  1082. float:left;
  1083. list-style-type:none;
  1084. white-space:nowrap;
  1085. margin-right:4px;
  1086. position:relative;
  1087. margin-bottom:-1px;
  1088. }
  1089. #content .tabs ul li a{
  1090. display:block;
  1091. font-size: 0.9em;
  1092. text-decoration:none;
  1093. line-height:1.3em;
  1094. padding:4px 6px 4px 6px;
  1095. border: 1px solid #ccc;
  1096. border-bottom: 1px solid #bbbbbb;
  1097. color:#999;
  1098. font-weight:bold;
  1099. border-top-left-radius:3px;
  1100. border-top-right-radius:3px;
  1101. }
  1102. #content .tabs ul li a:hover {
  1103. color:#777;
  1104. text-decoration:none;
  1105. }
  1106. #content .tabs ul li a.selected {
  1107. background-color: #fff;
  1108. border: 1px solid #bbbbbb;
  1109. border-bottom: 1px solid #fff;
  1110. color:#444;
  1111. }
  1112. #content .tabs ul li a.selected:hover {background-color: #fff;}
  1113. div.tabs-buttons { position:absolute; right: 0; width: 54px; height: 24px; background: white; bottom: 0; border-bottom: 1px solid #bbbbbb; }
  1114. button.tab-left, button.tab-right {
  1115. font-size: 0.9em;
  1116. cursor: pointer;
  1117. height:24px;
  1118. border: 1px solid #ccc;
  1119. border-bottom: 1px solid #bbbbbb;
  1120. position:absolute;
  1121. padding:4px;
  1122. width: 24px;
  1123. bottom: -1px;
  1124. }
  1125. button.tab-left:hover, button.tab-right:hover {
  1126. background-color: #f5f5f5;
  1127. }
  1128. button.tab-left:focus, button.tab-right:focus {
  1129. outline: 0;
  1130. }
  1131. button.tab-left {
  1132. right: 28px;
  1133. background: #eeeeee url(/arrow_left.png) no-repeat 50% 50%;
  1134. border-top-left-radius:3px;
  1135. }
  1136. button.tab-right {
  1137. right: 4px;
  1138. background: #eeeeee url(/arrow_right.png) no-repeat 50% 50%;
  1139. border-top-right-radius:3px;
  1140. }
  1141. button.tab-left.disabled, button.tab-right.disabled {
  1142. background-color: #ccc;
  1143. cursor: unset;
  1144. }
  1145. /***** Diff *****/
  1146. .diff_out { background: #fcc; }
  1147. .diff_out span { background: #faa; }
  1148. .diff_in { background: #cfc; }
  1149. .diff_in span { background: #afa; }
  1150. .text-diff {
  1151. padding: 1em;
  1152. background-color:#f6f6f6;
  1153. color:#505050;
  1154. border: 1px solid #e4e4e4;
  1155. white-space: pre-wrap;
  1156. }
  1157. /***** Wiki *****/
  1158. div.wiki table {
  1159. border-collapse: collapse;
  1160. margin-bottom: 1em;
  1161. }
  1162. div.wiki table, div.wiki td, div.wiki th {
  1163. border: 1px solid #bbb;
  1164. padding: 4px;
  1165. }
  1166. div.wiki table td[align=left], div.wiki table th[align=left] { text-align: left; }
  1167. div.wiki table td[align=right], div.wiki table th[align=right] { text-align: right; }
  1168. div.wiki .wiki-class-noborder, div.wiki .wiki-class-noborder td, div.wiki .wiki-class-noborder th {border:0;}
  1169. div.wiki .external {
  1170. background-position: 0% 60%;
  1171. background-repeat: no-repeat;
  1172. padding-left: 12px;
  1173. background-image: url(/external.png);
  1174. }
  1175. div.wiki a {word-wrap: break-word;}
  1176. div.wiki a.new {color: #b73535;}
  1177. div.wiki ul, div.wiki ol {margin-bottom:1em;}
  1178. div.wiki li>ul, div.wiki li>ol {margin-bottom: 0;}
  1179. div.wiki pre {
  1180. margin: 1em 1em 1em 1.6em;
  1181. padding: 8px;
  1182. background-color: #fafafa;
  1183. border: 1px solid #e2e2e2;
  1184. border-radius: 3px;
  1185. width:auto;
  1186. overflow-x: auto;
  1187. overflow-y: hidden;
  1188. }
  1189. div.wiki *:not(pre)>code, div.wiki>code {
  1190. background: rgba(62, 91, 118, 0.08);
  1191. padding: 0.1em 0.1em;
  1192. border-radius: 0.1em;
  1193. }
  1194. div.wiki ul.toc {
  1195. background-color: #ffffdd;
  1196. border: 1px solid #e4e4e4;
  1197. padding: 4px;
  1198. line-height: 1.2em;
  1199. margin-bottom: 12px;
  1200. margin-right: 12px;
  1201. margin-left: 0;
  1202. display: table
  1203. }
  1204. * html div.wiki ul.toc { width: 50%; } /* IE6 doesn't autosize div */
  1205. div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
  1206. div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
  1207. div.wiki ul.toc ul { margin: 0; padding: 0; }
  1208. div.wiki ul.toc li {list-style-type:none; margin: 0; font-size:12px;}
  1209. div.wiki ul.toc>li:first-child {margin-bottom: .5em; color: #777;}
  1210. div.wiki ul.toc li li {margin-left: 1.5em; font-size:10px;}
  1211. div.wiki ul.toc a {
  1212. font-size: 0.9em;
  1213. font-weight: normal;
  1214. text-decoration: none;
  1215. color: #606060;
  1216. }
  1217. div.wiki ul.toc a:hover { color: #c61a1a; text-decoration: underline;}
  1218. a.wiki-anchor { display: none; margin-left: 6px; text-decoration: none; }
  1219. a.wiki-anchor:hover { color: #aaa !important; text-decoration: none; }
  1220. h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor, h4:hover a.wiki-anchor, h5:hover a.wiki-anchor, h6:hover a.wiki-anchor { display: inline; color: #ddd; }
  1221. div.wiki img {vertical-align:middle; max-width:100%;}
  1222. div.wiki>.task-list {
  1223. padding-left: 0px;
  1224. }
  1225. div.wiki .task-list {
  1226. list-style-type: none;
  1227. }
  1228. div.wiki .task-list input.task-list-item-checkbox {
  1229. height: initial;
  1230. }
  1231. /***** My page layout *****/
  1232. .block-receiver {
  1233. border:1px dashed #fff;
  1234. padding: 15px 0 0 0;
  1235. }
  1236. .dragging .block-receiver {
  1237. border:1px dashed #777;
  1238. margin-bottom: 20px;
  1239. }
  1240. .mypage-box {
  1241. border:1px solid #ddd;
  1242. padding:8px;
  1243. margin:0 0 20px 0;
  1244. color:#505050;
  1245. line-height:1.5em;
  1246. border-radius: 3px;
  1247. }
  1248. .mypage-box>.contextual {opacity:0.001; transition: opacity 0.2s;}
  1249. .mypage-box:hover>.contextual {opacity:1;}
  1250. .handle {cursor: move;}
  1251. #my-page .list th.checkbox, #my-page .list td.checkbox {display:none;}
  1252. /***** Gantt chart *****/
  1253. table.gantt-table {
  1254. width: 100%;
  1255. border-collapse: collapse;
  1256. }
  1257. table.gantt-table td {
  1258. padding: 0px;
  1259. }
  1260. .gantt_hdr {
  1261. position:absolute;
  1262. top:0;
  1263. height:16px;
  1264. border-top: 1px solid #c0c0c0;
  1265. border-bottom: 1px solid #c0c0c0;
  1266. border-left: 1px solid #c0c0c0;
  1267. text-align: center;
  1268. overflow: hidden;
  1269. }
  1270. #gantt_area .gantt_hdr {
  1271. border-left: 0px;
  1272. border-right: 1px solid #c0c0c0;
  1273. }
  1274. .gantt_subjects_container:not(.draw_selected_columns) .gantt_hdr,
  1275. .last_gantt_selected_column .gantt_hdr {
  1276. border-right: 1px solid #c0c0c0;
  1277. }
  1278. .last_gantt_selected_column .gantt_selected_column_container,
  1279. .gantt_subjects_container .gantt_subjects * {
  1280. z-index: 10;
  1281. }
  1282. .gantt_subjects_column + td {
  1283. padding: 0;
  1284. }
  1285. .gantt_hdr.nwday {background-color:#f1f1f1; color:#999;}
  1286. .gantt_subjects,
  1287. .gantt_selected_column_content.gantt_hdr {
  1288. font-size: 0.8em;
  1289. position: relative;
  1290. z-index: 1;
  1291. }
  1292. .gantt_subjects div,
  1293. .gantt_selected_column_content div {
  1294. line-height: 16px;
  1295. height: 16px;
  1296. overflow: hidden;
  1297. white-space: nowrap;
  1298. text-overflow: ellipsis;
  1299. width: 100%;
  1300. }
  1301. .gantt_subjects div.issue-subject:hover { background-color:#ffffdd; }
  1302. .gantt_selected_column_content { padding-left: 3px; padding-right: 3px;}
  1303. .gantt_subjects .issue-subject img.icon-gravatar {
  1304. margin: 2px 5px 0px 2px;
  1305. }
  1306. .gantt_hdr_selected_column_name {
  1307. position: absolute;
  1308. top: 50%;
  1309. width:100%;
  1310. transform: translateY(-50%);
  1311. -webkit-transform: translateY(-50%);
  1312. font-size: 0.8em;
  1313. overflow: hidden;
  1314. text-overflow: ellipsis;
  1315. white-space: nowrap;
  1316. }
  1317. td.gantt_selected_column {
  1318. width: 50px;
  1319. }
  1320. td.gantt_selected_column .gantt_hdr,.gantt_selected_column_container {
  1321. width: 49px;
  1322. }
  1323. .task {
  1324. position: absolute;
  1325. height:8px;
  1326. font-size:0.8em;
  1327. color:#888;
  1328. padding:0;
  1329. margin:0;
  1330. line-height:16px;
  1331. white-space:nowrap;
  1332. }
  1333. .task.label {width:100%;}
  1334. .task.label.project, .task.label.version { font-weight: bold; }
  1335. .task_late { background:#f66 url(/task_late.png); border: 1px solid #f66; }
  1336. .task_done { background:#00c600 url(/task_done.png); border: 1px solid #00c600; }
  1337. .task_todo { background:#aaa url(/task_todo.png); border: 1px solid #aaa; }
  1338. .task_todo.parent { background: #888; border: 1px solid #888; height: 3px;}
  1339. .task_late.parent, .task_done.parent { height: 3px;}
  1340. .task.parent.marker.starting { position: absolute; background: url(/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-left: -4px; left: 0px; top: -1px;}
  1341. .task.parent.marker.ending { position: absolute; background: url(/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-left: -4px; right: 0px; top: -1px;}
  1342. .version.task_late { background:#f66 url(/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
  1343. .version.task_done { background:#00c600 url(/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
  1344. .version.task_todo { background:#fff url(/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
  1345. .version.marker { background-image:url(/version_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
  1346. .project.task_late { background:#f66 url(/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;}
  1347. .project.task_done { background:#00c600 url(/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;}
  1348. .project.task_todo { background:#fff url(/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;}
  1349. .project.marker { background-image:url(/project_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; }
  1350. .version-behind-schedule a, .issue-behind-schedule a {color: #f66914;}
  1351. .version-overdue a, .issue-overdue a, .project-overdue a {color: #f00;}
  1352. /***** Badges *****/
  1353. .badge {
  1354. position:relative;
  1355. font-weight:bold;
  1356. font-size: 10px;
  1357. bottom: 2px;
  1358. padding: 1px 3px;
  1359. margin-right: 2px;
  1360. margin-left: 2px;
  1361. border-radius: 2px;
  1362. text-transform: uppercase;
  1363. text-decoration: none;
  1364. user-select: none;
  1365. }
  1366. .badge-private {
  1367. background: #d22;
  1368. color: #fff;
  1369. border: 1px solid #d22;
  1370. }
  1371. .badge-count {
  1372. color: #fff;
  1373. background:#9DB9D5;
  1374. }
  1375. .badge-status-open {
  1376. color: #205D86;
  1377. border: 1px solid #205D86;
  1378. }
  1379. .badge-status-locked {
  1380. color: #696969;
  1381. border: 1px solid #696969;
  1382. }
  1383. .badge-status-closed {
  1384. color: #1D781D;
  1385. border: 1px solid #1D781D;
  1386. }
  1387. .badge-issues-count {
  1388. background: #EEEEEE;
  1389. }
  1390. /***** Tooltips *****/
  1391. .ui-tooltip {
  1392. background: #000;
  1393. color: #fff;
  1394. border-radius: 3px;
  1395. border: 0;
  1396. box-shadow: none;
  1397. white-space: pre-wrap;
  1398. }
  1399. /***** Icons *****/
  1400. .icon {
  1401. background-position: 0% 50%;
  1402. background-repeat: no-repeat;
  1403. padding-left: 20px;
  1404. }
  1405. .icon-only {
  1406. background-position: 0% 50%;
  1407. background-repeat: no-repeat;
  1408. padding-left: 16px;
  1409. display: inline-block;
  1410. width: 0;
  1411. height: 16px;
  1412. overflow: hidden;
  1413. padding-top: 0;
  1414. padding-bottom: 0;
  1415. font-size: 8px;
  1416. vertical-align: middle;
  1417. }
  1418. .icon-only::after {
  1419. content: "\a0";
  1420. }
  1421. .icon-add { background-image: url(/add.png); }
  1422. .icon-edit { background-image: url(/edit.png); }
  1423. .icon-copy { background-image: url(/copy.png); }
  1424. .icon-duplicate { background-image: url(/duplicate.png); }
  1425. .icon-del { background-image: url(/delete.png); }
  1426. .icon-move { background-image: url(/move.png); }
  1427. .icon-save { background-image: url(/save.png); }
  1428. .icon-download { background-image: url(/download.png); }
  1429. .icon-cancel { background-image: url(/cancel.png); }
  1430. .icon-multiple { background-image: url(/table_multiple.png); }
  1431. .icon-folder { background-image: url(/folder.png); }
  1432. .open .icon-folder { background-image: url(/folder_open.png); }
  1433. .icon-package { background-image: url(/package.png); }
  1434. .icon-user { background-image: url(/user.png); }
  1435. .icon-project, .icon-projects { background-image: url(/projects.png); }
  1436. .icon-help { background-image: url(/help.png); }
  1437. .icon-attachment { background-image: url(/attachment.png); }
  1438. .icon-history { background-image: url(/history.png); }
  1439. .icon-time-entry, .icon-time { background-image: url(/time.png); }
  1440. .icon-time-add { background-image: url(/time_add.png); }
  1441. .icon-stats { background-image: url(/stats.png); }
  1442. .icon-warning { background-image: url(/warning.png); }
  1443. .icon-error { background-image: url(/exclamation.png); }
  1444. .icon-fav { background-image: url(/fav.png); }
  1445. .icon-fav-off { background-image: url(/fav_off.png); }
  1446. .icon-reload { background-image: url(/reload.png); }
  1447. .icon-lock, .icon-locked { background-image: url(/locked.png); }
  1448. .icon-unlock { background-image: url(/unlock.png); }
  1449. .icon-checked { background-image: url(/toggle_check.png); }
  1450. .icon-report { background-image: url(/report.png); }
  1451. .icon-comment, .icon-comments { background-image: url(/comment.png); }
  1452. .icon-summary { background-image: url(/lightning.png); }
  1453. .icon-server-authentication { background-image: url(/server_key.png); }
  1454. .icon-issue { background-image: url(/ticket.png); }
  1455. .icon-zoom-in { background-image: url(/zoom_in.png); }
  1456. .icon-zoom-out { background-image: url(/zoom_out.png); }
  1457. .icon-magnifier { background-image: url(/magnifier.png); }
  1458. .icon-passwd { background-image: url(/textfield_key.png); }
  1459. .icon-arrow-right, .icon-test, .icon-sticky { background-image: url(/bullet_go.png); }
  1460. .icon-email { background-image: url(/email.png); }
  1461. .icon-email-disabled { background-image: url(/email_disabled.png); }
  1462. .icon-email-add { background-image: url(/email_add.png); }
  1463. .icon-ok { background-image: url(/true.png); }
  1464. .icon-not-ok { background-image: url(/false.png); }
  1465. .icon-link-break { background-image: url(/link_break.png); }
  1466. .icon-list { background-image: url(/text_list_bullets.png); }
  1467. .icon-close { background-image: url(/close.png); }
  1468. .icon-close:hover { background-image: url(/close_hl.png); }
  1469. .icon-settings { background-image: url(/changeset.png); }
  1470. .icon-group, .icon-groupnonmember, .icon-groupanonymous { background-image: url(/group.png); }
  1471. .icon-roles { background-image: url(/database_key.png); }
  1472. .icon-issue-edit { background-image: url(/ticket_edit.png); }
  1473. .icon-workflows { background-image: url(/ticket_go.png); }
  1474. .icon-custom-fields { background-image: url(/textfield.png); }
  1475. .icon-plugins { background-image: url(/plugin.png); }
  1476. .icon-news { background-image: url(/news.png); }
  1477. .icon-issue-closed { background-image: url(/ticket_checked.png); }
  1478. .icon-issue-note { background-image: url(/ticket_note.png); }
  1479. .icon-changeset { background-image: url(/changeset.png); }
  1480. .icon-message { background-image: url(/message.png); }
  1481. .icon-reply { background-image: url(/comments.png); }
  1482. .icon-wiki-page { background-image: url(/wiki_edit.png); }
  1483. .icon-document { background-image: url(/document.png); }
  1484. .icon-project { background-image: url(/projects.png); }
  1485. .icon-add-bullet { background-image: url(/bullet_add.png); }
  1486. .icon-shared { background-image: url(/link.png); }
  1487. .icon-actions { background-image: url(/3_bullets.png); }
  1488. .icon-sort-handle { background-image: url(/reorder.png); }
  1489. .icon-expanded { background-image: url(/arrow_down.png); }
  1490. .icon-collapsed { background-image: url(/arrow_right.png); }
  1491. .icon-bookmark { background-image: url(/tag_blue_delete.png); }
  1492. .icon-bookmark-off { background-image: url(/tag_blue_add.png); }
  1493. .icon-bookmarked-project { background-image: url(/tag_blue.png); }
  1494. .icon-sorted-asc { background-image: url(/arrow_down.png); }
  1495. .icon-sorted-desc { background-image: url(/arrow_up.png); }
  1496. .icon-toggle-plus { background-image: url(/bullet_toggle_plus.png) }
  1497. .icon-toggle-minus { background-image: url(/bullet_toggle_minus.png) }
  1498. .icon-clear-query { background-image: url(/close_hl.png); }
  1499. .icon-import { background-image: url(/database_go.png); }
  1500. .icon-file { background-image: url(/files/default.png); }
  1501. .icon-file.text-plain { background-image: url(/files/text.png); }
  1502. .icon-file.text-x-c { background-image: url(/files/c.png); }
  1503. .icon-file.text-x-csharp { background-image: url(/files/csharp.png); }
  1504. .icon-file.text-x-java { background-image: url(/files/java.png); }
  1505. .icon-file.application-javascript { background-image: url(/files/js.png); }
  1506. .icon-file.text-x-php { background-image: url(/files/php.png); }
  1507. .icon-file.text-x-ruby { background-image: url(/files/ruby.png); }
  1508. .icon-file.text-xml { background-image: url(/files/xml.png); }
  1509. .icon-file.text-css { background-image: url(/files/css.png); }
  1510. .icon-file.text-html { background-image: url(/files/html.png); }
  1511. .icon-file.image-gif { background-image: url(/files/image.png); }
  1512. .icon-file.image-jpeg { background-image: url(/files/image.png); }
  1513. .icon-file.image-png { background-image: url(/files/image.png); }
  1514. .icon-file.image-tiff { background-image: url(/files/image.png); }
  1515. .icon-file.application-pdf { background-image: url(/files/pdf.png); }
  1516. .icon-file.application-zip { background-image: url(/files/zip.png); }
  1517. .icon-file.application-gzip { background-image: url(/files/zip.png); }
  1518. .icon-copy-link { background-image: url(/copy_link.png); }
  1519. .sort-handle.ajax-loading { background-image: url(/loading.gif); }
  1520. tr.ui-sortable-helper { border:1px solid #e4e4e4; }
  1521. .contextual>*:not(:first-child), .buttons>.icon:not(:first-child), .contextual .journal-actions>*:not(:first-child) { margin-left: 5px; }
  1522. img.gravatar {
  1523. vertical-align: middle;
  1524. border-radius: 20%;
  1525. }
  1526. div.issue img.gravatar {
  1527. float: left;
  1528. margin: 0 12px 6px 0;
  1529. }
  1530. div.gravatar-with-child {
  1531. position: relative;
  1532. }
  1533. div.gravatar-with-child > img.gravatar:nth-child(2) {
  1534. position: absolute;
  1535. top: 30px;
  1536. left: 30px;
  1537. border-radius: 20%;
  1538. border: 2px solid rgba(255, 255, 255, 0.9);
  1539. }
  1540. h2 img.gravatar, h3 img.gravatar {margin-right: 4px;}
  1541. h4 img.gravatar {margin: -2px 4px -4px 0;}
  1542. td.username img.gravatar {margin: 0 0.5em 0 0; vertical-align: top;}
  1543. #activity dt img.gravatar {float: left; margin: 0 1em 1em 0;}
  1544. /* Used on 12px Gravatar img tags without the icon background */
  1545. .icon-gravatar {float: left; margin-right: 4px;}
  1546. #activity dt, .journal {clear: left;}
  1547. h2 img { vertical-align:middle; }
  1548. .hascontextmenu { cursor: context-menu; }
  1549. .sample-data {border:1px solid #ccc; border-collapse:collapse; background-color:#fff; margin:0.5em;}
  1550. .sample-data td {border:1px solid #ccc; padding: 2px 4px; font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;}
  1551. .sample-data tr:first-child td {font-weight:bold; text-align:center;}
  1552. .ui-progressbar {position: relative;}
  1553. #progress-label {
  1554. position: absolute; left: 50%; top: 4px;
  1555. font-weight: bold;
  1556. color: #555; text-shadow: 1px 1px 0 #fff;
  1557. }
  1558. .repository-graph {width:75%; margin-bottom:2em;}
  1559. img.filecontent.image {background-image: url(/transparent.png);}
  1560. /* Custom JQuery styles */
  1561. .ui-autocomplete, .ui-menu {
  1562. border-radius: 2px;
  1563. border: 1px solid #ccc;
  1564. }
  1565. .ui-autocomplete .ui-menu-item > div, .ui-menu .ui-menu-item > div {
  1566. padding: 4px 8px;
  1567. max-width: 500px;
  1568. }
  1569. .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  1570. border-color: #759FCF;
  1571. background: #759FCF;
  1572. }
  1573. .ui-widget-overlay {
  1574. background: #000;
  1575. opacity: 70%;
  1576. }
  1577. /* Custom tribute styles */
  1578. .tribute-container ul {
  1579. background-color: #fff;
  1580. border: 1px solid #ccc;
  1581. border-radius: 2px;
  1582. }
  1583. .tribute-container li.highlight {background-color: #759FCF; color:#fff;}
  1584. /************* Rouge styles *************/
  1585. /* generated by: pygmentize -f html -a .syntaxhl -S colorful */
  1586. .syntaxhl .hll { background-color: #ffffcc }
  1587. .syntaxhl { background: #fafafa; }
  1588. .syntaxhl .c { color: #888888 } /* Comment */
  1589. .syntaxhl .err { color: #FF0000; background-color: #FFAAAA } /* Error */
  1590. .syntaxhl .k { color: #008800; font-weight: bold } /* Keyword */
  1591. .syntaxhl .o { color: #333333 } /* Operator */
  1592. .syntaxhl .ch { color: #888888 } /* Comment.Hashbang */
  1593. .syntaxhl .cm { color: #888888 } /* Comment.Multiline */
  1594. .syntaxhl .cp { color: #557799 } /* Comment.Preproc */
  1595. .syntaxhl .cpf { color: #888888 } /* Comment.PreprocFile */
  1596. .syntaxhl .c1 { color: #888888 } /* Comment.Single */
  1597. .syntaxhl .cs { color: #cc0000; font-weight: bold } /* Comment.Special */
  1598. .syntaxhl .gd { color: #A00000 } /* Generic.Deleted */
  1599. .syntaxhl .ge { font-style: italic } /* Generic.Emph */
  1600. .syntaxhl .gr { color: #FF0000 } /* Generic.Error */
  1601. .syntaxhl .gh { color: #000080; font-weight: bold } /* Generic.Heading */
  1602. .syntaxhl .gi { color: #00A000 } /* Generic.Inserted */
  1603. .syntaxhl .go { color: #888888 } /* Generic.Output */
  1604. .syntaxhl .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
  1605. .syntaxhl .gs { font-weight: bold } /* Generic.Strong */
  1606. .syntaxhl .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
  1607. .syntaxhl .gt { color: #0044DD } /* Generic.Traceback */
  1608. .syntaxhl .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
  1609. .syntaxhl .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
  1610. .syntaxhl .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
  1611. .syntaxhl .kp { color: #003388; font-weight: bold } /* Keyword.Pseudo */
  1612. .syntaxhl .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
  1613. .syntaxhl .kt { color: #333399; font-weight: bold } /* Keyword.Type */
  1614. .syntaxhl .m { color: #6600EE; font-weight: bold } /* Literal.Number */
  1615. .syntaxhl .s { background-color: #fff0f0 } /* Literal.String */
  1616. .syntaxhl .na { color: #0000CC } /* Name.Attribute */
  1617. .syntaxhl .nb { color: #007020 } /* Name.Builtin */
  1618. .syntaxhl .nc { color: #BB0066; font-weight: bold } /* Name.Class */
  1619. .syntaxhl .no { color: #003366; font-weight: bold } /* Name.Constant */
  1620. .syntaxhl .nd { color: #555555; font-weight: bold } /* Name.Decorator */
  1621. .syntaxhl .ni { color: #880000; font-weight: bold } /* Name.Entity */
  1622. .syntaxhl .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
  1623. .syntaxhl .nf { color: #0066BB; font-weight: bold } /* Name.Function */
  1624. .syntaxhl .nl { color: #997700; font-weight: bold } /* Name.Label */
  1625. .syntaxhl .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
  1626. .syntaxhl .nt { color: #007700 } /* Name.Tag */
  1627. .syntaxhl .nv { color: #996633 } /* Name.Variable */
  1628. .syntaxhl .ow { color: #000000; font-weight: bold } /* Operator.Word */
  1629. .syntaxhl .w { color: #bbbbbb } /* Text.Whitespace */
  1630. .syntaxhl .mb { color: #6600EE; font-weight: bold } /* Literal.Number.Bin */
  1631. .syntaxhl .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
  1632. .syntaxhl .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
  1633. .syntaxhl .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
  1634. .syntaxhl .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
  1635. .syntaxhl .sa { background-color: #fff0f0 } /* Literal.String.Affix */
  1636. .syntaxhl .sb { background-color: #fff0f0 } /* Literal.String.Backtick */
  1637. .syntaxhl .sc { color: #0044DD } /* Literal.String.Char */
  1638. .syntaxhl .dl { background-color: #fff0f0 } /* Literal.String.Delimiter */
  1639. .syntaxhl .sd { color: #DD4422 } /* Literal.String.Doc */
  1640. .syntaxhl .s2 { background-color: #fff0f0 } /* Literal.String.Double */
  1641. .syntaxhl .se { color: #666666; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
  1642. .syntaxhl .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
  1643. .syntaxhl .si { background-color: #eeeeee } /* Literal.String.Interpol */
  1644. .syntaxhl .sx { color: #DD2200; background-color: #fff0f0 } /* Literal.String.Other */
  1645. .syntaxhl .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
  1646. .syntaxhl .s1 { background-color: #fff0f0 } /* Literal.String.Single */
  1647. .syntaxhl .ss { color: #AA6600 } /* Literal.String.Symbol */
  1648. .syntaxhl .bp { color: #007020 } /* Name.Builtin.Pseudo */
  1649. .syntaxhl .fm { color: #0066BB; font-weight: bold } /* Name.Function.Magic */
  1650. .syntaxhl .vc { color: #336699 } /* Name.Variable.Class */
  1651. .syntaxhl .vg { color: #dd7700; font-weight: bold } /* Name.Variable.Global */
  1652. .syntaxhl .vi { color: #3333BB } /* Name.Variable.Instance */
  1653. .syntaxhl .vm { color: #996633 } /* Name.Variable.Magic */
  1654. .syntaxhl .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
  1655. /***** Media print specific styles *****/
  1656. @media print {
  1657. #top-menu, #header, #main-menu, #sidebar, #footer, .contextual, .other-formats { display:none; }
  1658. #main { background: #fff; }
  1659. #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; overflow: visible !important;}
  1660. #wiki_add_attachment { display:none; }
  1661. .hide-when-print, .pagination ul.pages, .pagination .per-page { display: none !important; }
  1662. .autoscroll {overflow-x: visible;}
  1663. table.list {margin-top:0.5em;}
  1664. table.list th, table.list td {border: 1px solid #aaa;}
  1665. }
  1666. /* Accessibility specific styles */
  1667. .hidden-for-sighted {
  1668. position:absolute;
  1669. left:-10000px;
  1670. top:auto;
  1671. width:1px;
  1672. height:1px;
  1673. overflow:hidden;
  1674. }
  1675. img {
  1676. image-orientation: from-image;
  1677. }
  1678. .filecontent-container {
  1679. position: relative;
  1680. margin-bottom: 20px;
  1681. min-height: 200px;
  1682. }
  1683. .filecontent-container > .filecontent {
  1684. position: absolute;
  1685. max-height: 100%;
  1686. max-width: 100%;
  1687. }
  1688. .filecontent.wiki {
  1689. position: relative;
  1690. padding: 1em;
  1691. border: 1px solid #e4e4e4;
  1692. border-radius: 3px;
  1693. }
  1694. /* Fixes for IE 11 */
  1695. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  1696. select::-ms-expand {
  1697. display: none;
  1698. }
  1699. select[multiple=multiple] {padding-right: 0;}
  1700. }
  1701. /* tablesort */
  1702. th[role=columnheader]:not(.no-sort) {
  1703. cursor: pointer;
  1704. }
  1705. th[role=columnheader]:not(.no-sort):after {
  1706. content: '';
  1707. float: right;
  1708. margin-top: 7px;
  1709. border-width: 0 4px 4px;
  1710. border-style: solid;
  1711. border-color: #404040 transparent;
  1712. display: none;
  1713. opacity: 0;
  1714. -ms-user-select: none;
  1715. -webkit-user-select: none;
  1716. -moz-user-select: none;
  1717. user-select: none;
  1718. }
  1719. th[aria-sort=ascending]:not(.no-sort):after {
  1720. border-bottom: none;
  1721. border-width: 4px 4px 0;
  1722. }
  1723. th[aria-sort]:not(.no-sort):after {
  1724. display: inline;
  1725. opacity: 0.4;
  1726. }
  1727. th[role=columnheader]:not(.no-sort):hover:after {
  1728. display: inline;
  1729. opacity: 1;
  1730. }