index.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. // @import "./common.scss";
  2. @import "./transition.scss";
  3. @import "./antd.scss";
  4. // @import "./components/index.scss";
  5. // @import "./views/index.scss";
  6. .ant-table-row-cell-break-word p{
  7. max-width: 100%;
  8. overflow-wrap: break-word;
  9. word-break: break-word;
  10. white-space: normal;
  11. }
  12. body {
  13. min-width: 1300px;
  14. overflow-x: auto;
  15. p {
  16. margin-bottom: 0;
  17. }
  18. }
  19. @font-face {
  20. font-family: "WebTitle";
  21. src: url(//firemanage.oss-cn-hangzhou.aliyuncs.com/FE-resource/fonts/web-font.ttf);
  22. }
  23. .title-font {
  24. // font-family: "WebTitle";
  25. }
  26. .web-wrapper {
  27. height: 100vh;
  28. .web-menu {
  29. height: 100%;
  30. overflow-y: auto;
  31. }
  32. .web-header {
  33. position: relative;
  34. .trigger {
  35. font-size: 18px;
  36. line-height: 64px;
  37. padding: 0 24px;
  38. cursor: pointer;
  39. transition: color 0.3s;
  40. color:#fff;
  41. &:hover{
  42. color: #1890ff;
  43. }
  44. }
  45. .web-title {
  46. font-size: 32px;
  47. color: #fff;
  48. display: inline-block;
  49. }
  50. .user-wrap {
  51. position: absolute;
  52. right: 30px;
  53. top: 50%;
  54. transform: translate(0, -50%);
  55. color: #fff;
  56. font-size: $font-size-bigger;
  57. cursor: pointer;
  58. @include flex();
  59. .user {
  60. margin: 0 10px;
  61. line-height: 1.8;
  62. }
  63. }
  64. }
  65. .web-container {
  66. background: url(//firemanage.oss-cn-hangzhou.aliyuncs.com/FE-resource/images/background.svg) #f0f2f5 no-repeat top left / contain fixed;
  67. }
  68. }
  69. .clearfix {
  70. &:after {
  71. visibility: hidden;
  72. display: block;
  73. font-size: 0;
  74. content: " ";
  75. clear: both;
  76. height: 0;
  77. zoom: 1;
  78. }
  79. }
  80. .full-width {
  81. width: 100%;
  82. }
  83. .page-wrap {
  84. padding: 23px;
  85. }
  86. .cursor {
  87. cursor: pointer;
  88. }
  89. .setting-group {
  90. span {
  91. margin-right: 5px;
  92. }
  93. }
  94. .operator-bar {
  95. margin-bottom: 15px;
  96. }
  97. .ml-10 {
  98. margin-left: 10px;
  99. }
  100. .theme {
  101. color: $theme-color;
  102. }
  103. .popover-book-info {
  104. line-height: 1.8;
  105. span {
  106. font-weight: bold;
  107. }
  108. }
  109. .cursor {
  110. cursor: pointer;
  111. }
  112. .theme {
  113. color: $theme-color;
  114. }
  115. .a-input-50 {
  116. width: 50px !important;
  117. margin-right: 10px !important;
  118. }
  119. .a-input-100 {
  120. width: 100px !important;
  121. margin-right: 10px !important;
  122. }
  123. .a-input-200 {
  124. width: 200px !important;
  125. margin-right: 10px !important;
  126. }
  127. .a-input-300 {
  128. width: 300px !important;
  129. margin-right: 10px !important;
  130. }
  131. .a-input-400 {
  132. width: 400px !important;
  133. margin-right: 10px !important;
  134. }
  135. .button_blue {
  136. color: #39a4ff;
  137. cursor: pointer;
  138. margin: 0 5px;
  139. }
  140. .button_no {
  141. color: #999;
  142. cursor: no-drop;
  143. margin: 0 5px;
  144. }
  145. .search {
  146. .ant-card-body {
  147. display: flex;
  148. width: 100%;
  149. padding: 10px;
  150. align-items: center;
  151. div {
  152. margin-right: 10px;
  153. }
  154. }
  155. }
  156. .icon-button {
  157. color: #39a4ff !important;
  158. cursor: pointer;
  159. }
  160. .flex-box {
  161. display: flex;
  162. align-items: center;
  163. }
  164. .small-font{
  165. font-size :10px !important;
  166. }
  167. .single-line{
  168. @include single-line();
  169. }