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 68KB

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