overrides.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /*
  2. // Copyright (C) 2014 The Syncthing Authors.
  3. //
  4. // This Source Code Form is subject to the terms of the Mozilla Public
  5. // License, v. 2.0. If a copy of the MPL was not distributed with this file,
  6. // You can obtain one at http://mozilla.org/MPL/2.0/.
  7. */
  8. body {
  9. padding-bottom: 70px;
  10. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  11. }
  12. h1, h2, h3, h4, h5 {
  13. font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  14. }
  15. ul+h5 {
  16. margin-top: 1.5em;
  17. }
  18. .panel-progress {
  19. background: #3498db;
  20. height: 3px;
  21. left: 0;
  22. position: absolute;
  23. top: 0;
  24. display: block;
  25. }
  26. .panel-title {
  27. position: relative;
  28. text-overflow: ellipsis;
  29. overflow: hidden;
  30. }
  31. identicon {
  32. display: inline-block;
  33. position: relative;
  34. width: 1em;
  35. height: 1em;
  36. line-height: 1em;
  37. overflow: visible;
  38. }
  39. .checkbox {
  40. margin-top: 0px;
  41. }
  42. .checkbox input[type="checkbox"], .radio input[type="radio"] {
  43. float: none; /* issue #1197 */
  44. }
  45. .popover {
  46. max-width: none;
  47. }
  48. .identicon {
  49. width: 20px;
  50. height: 20px;
  51. }
  52. .panel-heading .identicon {
  53. display: block;
  54. position: absolute;
  55. top: 1px;
  56. }
  57. .panel-heading .glyphicon {
  58. margin-right: 15px;
  59. }
  60. .panel-heading {
  61. position: relative;
  62. overflow: hidden;
  63. }
  64. .identicon rect {
  65. fill: #666;
  66. }
  67. .text-monospace {
  68. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  69. }
  70. .table-condensed>thead>tr>th, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>tbody>tr>td, .table-condensed>tfoot>tr>td {
  71. border-top: none;
  72. }
  73. .logo {
  74. margin: 0;
  75. padding: 0;
  76. top: -5px;
  77. position: relative;
  78. }
  79. .list-no-bullet {
  80. list-style-type: none
  81. }
  82. .li-column {
  83. display: inline-block;
  84. min-width: 7em;
  85. margin-right: 1em;
  86. background-color: rgb(236, 240, 241);
  87. border-radius: 3px;
  88. padding: 1px 4px;
  89. margin: 2px 2px;
  90. }
  91. .li-column span.data {
  92. margin-left: 0.5em;
  93. min-width: 10em;
  94. text-align: right;
  95. display: inline-block;
  96. }
  97. .ng-cloak {
  98. display: none !important;
  99. }
  100. .table th {
  101. white-space: nowrap;
  102. font-weight: 400;
  103. }
  104. .table td {
  105. padding-left: 20px !important;
  106. }
  107. .table td.small-data {
  108. white-space: nowrap;
  109. }
  110. table.table-condensed {
  111. table-layout: fixed;
  112. }
  113. table.table-condensed td {
  114. overflow: hidden;
  115. text-overflow: ellipsis;
  116. white-space: nowrap;
  117. }
  118. @media (max-width:767px) {
  119. table.table-condensed td {
  120. /* for mobile phones to allow linebreaks in long repro folder/shared with
  121. * columns. */
  122. white-space: normal;
  123. }
  124. }
  125. .navbar-right {
  126. /* to align with panel */
  127. padding-right: 15px;
  128. }
  129. .panel-body .table-condensed {
  130. margin-bottom: 0;
  131. }
  132. .dl-horizontal.dl-narrow dt {
  133. width: 40px;
  134. }
  135. .dl-horizontal.dl-narrow dd {
  136. margin-left: 60px;
  137. }
  138. /**
  139. * Progress bars with centered text
  140. */
  141. .progress {
  142. margin-bottom: 0px;
  143. position: relative;
  144. }
  145. .progress span.frontal {
  146. text-align: center;
  147. position: absolute;
  148. display: block;
  149. width: 100%;
  150. }
  151. .three-columns {
  152. -webkit-column-count: 3;
  153. -moz-column-count: 3;
  154. column-count: 3;
  155. }
  156. .two-columns {
  157. -webkit-column-count: 2;
  158. -moz-column-count: 2;
  159. column-count: 2;
  160. }
  161. ul.three-columns li, ul.two-columns li {
  162. padding-left: 0.5em;
  163. text-indent: -0.5em;
  164. }
  165. /** Footer nav on small devices **/
  166. @media (max-width: 767px) {
  167. body {
  168. padding-bottom: 0;
  169. }
  170. .navbar-fixed-bottom {
  171. position: static;
  172. }
  173. }