Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

application.css 69KB

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