Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

185 řádky
2.6 KiB

  1. /* csslint ignore:start */
  2. @import "variables.less";
  3. body {
  4. line-height: 1.5;
  5. color: @text-color;
  6. }
  7. p {
  8. margin: 1em 0 !important;
  9. }
  10. hr {
  11. border-top: 1px solid @border-color;
  12. }
  13. .body-table {
  14. font-family: @font-stack;
  15. td {
  16. font-family: @font-stack;
  17. }
  18. }
  19. .email-header, .email-body, .email-footer {
  20. width: 100% !important;
  21. min-width: 100% !important;
  22. }
  23. .email-body {
  24. font-size: @text-regular;
  25. }
  26. .email-footer {
  27. border-top: 1px solid @border-color;
  28. font-size: @text-medium;
  29. }
  30. .email-header {
  31. border: 1px solid @border-color;
  32. border-radius: 4px 4px 0 0;
  33. .brand-image {
  34. width: 24px;
  35. height: 24px;
  36. display: block;
  37. }
  38. }
  39. .email-header-title {
  40. font-weight: bold;
  41. }
  42. .body-table.has-header {
  43. .email-body {
  44. border: 1px solid @border-color;
  45. border-radius: 0 0 4px 4px;
  46. border-top: none;
  47. }
  48. .email-footer {
  49. border-top: none;
  50. }
  51. }
  52. .btn {
  53. text-decoration: none;
  54. padding: 7px 10px;
  55. font-size: 12px;
  56. border: 1px solid;
  57. border-radius: 3px;
  58. &.btn-default {
  59. color: #fff;
  60. background-color: #f0f4f7;
  61. border-color: transparent;
  62. }
  63. &.btn-primary {
  64. color: #fff;
  65. background-color: @brand-primary;
  66. border-color: #444bff;
  67. }
  68. }
  69. .table {
  70. width: 100%;
  71. border-collapse: collapse;
  72. td, th {
  73. padding: 8px;
  74. line-height: 1.42857143;
  75. vertical-align: top;
  76. border-top: 1px solid @border-color;
  77. text-align: left;
  78. }
  79. th {
  80. font-weight: bold;
  81. }
  82. & > thead > tr > th {
  83. vertical-align: middle;
  84. border-bottom: 2px solid @border-color;
  85. }
  86. & > thead:first-child > tr:first-child > th {
  87. border-top: none;
  88. }
  89. &.table-bordered {
  90. border: 1px solid @border-color;
  91. td, th {
  92. border: 1px solid @border-color;
  93. }
  94. }
  95. }
  96. .more-info {
  97. font-size: 80% !important;
  98. color: @text-muted !important;
  99. border-top: 1px solid @light-border-color;
  100. padding-top: 10px;
  101. }
  102. .text-right {
  103. text-align: right !important;
  104. }
  105. .text-center {
  106. text-align: center !important;
  107. }
  108. .text-muted {
  109. color: @text-muted !important;
  110. }
  111. .text-extra-muted {
  112. color: @text-extra-muted !important;
  113. }
  114. .text-regular {
  115. font-size: @text-regular;
  116. }
  117. .text-medium {
  118. font-size: @text-medium;
  119. }
  120. .text-small {
  121. font-size: @text-small;
  122. }
  123. .indicator {
  124. width: 8px;
  125. height: 8px;
  126. border-radius: 8px;
  127. background-color: @indicator-darkgrey;
  128. display: inline-block;
  129. margin-right: 5px;
  130. &.indicator-blue {
  131. background-color: @indicator-blue;
  132. }
  133. &.indicator-green {
  134. background-color: @indicator-green;
  135. }
  136. &.indicator-orange {
  137. background-color: @indicator-orange;
  138. }
  139. &.indicator-red {
  140. background-color: @indicator-red;
  141. }
  142. &.indicator-yellow {
  143. background-color: @indicator-yellow;
  144. }
  145. }
  146. /* auto email report */
  147. .report-title {
  148. margin-bottom: 20px;
  149. }
  150. /* csslint ignore:end */