overrides.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /*
  2. // Copyright (C) 2014 The Syncthing Authors.
  3. //
  4. // This program is free software: you can redistribute it and/or modify it
  5. // under the terms of the GNU General Public License as published by the Free
  6. // Software Foundation, either version 3 of the License, or (at your option)
  7. // any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful, but WITHOUT
  10. // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. // more details.
  13. //
  14. // You should have received a copy of the GNU General Public License along
  15. // with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. body {
  18. padding-bottom: 70px;
  19. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  20. }
  21. h1, h2, h3, h4, h5 {
  22. font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  23. }
  24. ul+h5 {
  25. margin-top: 1.5em;
  26. }
  27. identicon {
  28. display: inline-block;
  29. position: relative;
  30. width: 1em;
  31. height: 1em;
  32. line-height: 1em;
  33. overflow: visible;
  34. }
  35. .identicon {
  36. width: 30px;
  37. height: 30px;
  38. }
  39. .identicon rect {
  40. opacity: 0.85;
  41. fill: #888;
  42. }
  43. .panel-heading .identicon {
  44. display: block;
  45. position: absolute;
  46. top: -4px;
  47. left: -9px;
  48. }
  49. .panel-heading {
  50. position: relative;
  51. overflow: hidden;
  52. }
  53. [class*="-info"] .identicon rect,
  54. [class*="-success"] .identicon rect,
  55. [class*="-primary"] .identicon rect {
  56. fill: #fff;
  57. }
  58. .text-monospace {
  59. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  60. }
  61. .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 {
  62. border-top: none;
  63. }
  64. .logo {
  65. margin: 0;
  66. padding: 0;
  67. top: -5px;
  68. position: relative;
  69. }
  70. .list-no-bullet {
  71. list-style-type: none
  72. }
  73. .li-column {
  74. display: inline-block;
  75. min-width: 7em;
  76. margin-right: 1em;
  77. background-color: rgb(236, 240, 241);
  78. border-radius: 3px;
  79. padding: 1px 4px;
  80. margin: 2px 2px;
  81. }
  82. .li-column span.data {
  83. margin-left: 0.5em;
  84. min-width: 10em;
  85. text-align: right;
  86. display: inline-block;
  87. }
  88. .ng-cloak {
  89. display: none !important;
  90. }
  91. .table th {
  92. white-space: nowrap;
  93. font-weight: 400;
  94. }
  95. .table td {
  96. padding-left: 20px !important;
  97. }
  98. .table td.small-data {
  99. white-space: nowrap;
  100. }
  101. table.table-condensed {
  102. table-layout: fixed;
  103. }
  104. table.table-condensed td {
  105. overflow: hidden;
  106. text-overflow: ellipsis;
  107. white-space: nowrap;
  108. }
  109. @media (max-width:767px) {
  110. table.table-condensed td {
  111. /* for mobile phones to allow linebreaks in long repro folder/shared with
  112. * columns. */
  113. white-space: normal;
  114. }
  115. }
  116. .navbar-right {
  117. /* to align with panel */
  118. padding-right: 15px;
  119. }
  120. .panel-body .table-condensed {
  121. margin-bottom: 0;
  122. }
  123. .dl-horizontal.dl-narrow dt {
  124. width: 40px;
  125. }
  126. .dl-horizontal.dl-narrow dd {
  127. margin-left: 60px;
  128. }
  129. /**
  130. * Progress bars with centered text
  131. */
  132. .progress {
  133. margin-bottom: 0px;
  134. position: relative;
  135. }
  136. .progress span.frontal {
  137. text-align: center;
  138. position: absolute;
  139. display: block;
  140. width: 100%;
  141. }