123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- // @import "./common.scss";
- @import "./transition.scss";
- @import "./antd.scss";
- // @import "./components/index.scss";
- // @import "./views/index.scss";
- .ant-table-row-cell-break-word p{
- max-width: 100%;
- overflow-wrap: break-word;
- word-break: break-word;
- white-space: normal;
- }
- body {
- min-width: 1300px;
- overflow-x: auto;
- p {
- margin-bottom: 0;
- }
- }
- @font-face {
- font-family: "WebTitle";
- src: url(//firemanage.oss-cn-hangzhou.aliyuncs.com/FE-resource/fonts/web-font.ttf);
- }
- .title-font {
- // font-family: "WebTitle";
- }
- .web-wrapper {
- height: 100vh;
- .web-menu {
- height: 100%;
- overflow-y: auto;
- }
- .web-header {
- position: relative;
- .trigger {
- font-size: 18px;
- line-height: 64px;
- padding: 0 24px;
- cursor: pointer;
- transition: color 0.3s;
- color:#fff;
- &:hover{
- color: #1890ff;
- }
- }
- .web-title {
- font-size: 32px;
- color: #fff;
- display: inline-block;
- }
- .user-wrap {
- position: absolute;
- right: 30px;
- top: 50%;
- transform: translate(0, -50%);
- color: #fff;
- font-size: $font-size-bigger;
- cursor: pointer;
- @include flex();
- .user {
- margin: 0 10px;
- line-height: 1.8;
- }
- }
- }
- .web-container {
- background: url(//firemanage.oss-cn-hangzhou.aliyuncs.com/FE-resource/images/background.svg) #f0f2f5 no-repeat top left / contain fixed;
- }
- }
- .clearfix {
- &:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: " ";
- clear: both;
- height: 0;
- zoom: 1;
- }
- }
- .full-width {
- width: 100%;
- }
- .page-wrap {
- padding: 23px;
- }
- .cursor {
- cursor: pointer;
- }
- .setting-group {
- span {
- margin-right: 5px;
- }
- }
- .operator-bar {
- margin-bottom: 15px;
- }
- .ml-10 {
- margin-left: 10px;
- }
- .theme {
- color: $theme-color;
- }
- .popover-book-info {
- line-height: 1.8;
- span {
- font-weight: bold;
- }
- }
- .cursor {
- cursor: pointer;
- }
- .theme {
- color: $theme-color;
- }
- .a-input-50 {
- width: 50px !important;
- margin-right: 10px !important;
- }
- .a-input-100 {
- width: 100px !important;
- margin-right: 10px !important;
- }
- .a-input-200 {
- width: 200px !important;
- margin-right: 10px !important;
- }
- .a-input-300 {
- width: 300px !important;
- margin-right: 10px !important;
- }
- .a-input-400 {
- width: 400px !important;
- margin-right: 10px !important;
- }
- .button_blue {
- color: #39a4ff;
- cursor: pointer;
- margin: 0 5px;
- }
- .button_no {
- color: #999;
- cursor: no-drop;
- margin: 0 5px;
- }
- .search {
- .ant-card-body {
- display: flex;
- width: 100%;
- padding: 10px;
- align-items: center;
- div {
- margin-right: 10px;
- }
- }
- }
- .icon-button {
- color: #39a4ff !important;
- cursor: pointer;
- }
- .flex-box {
- display: flex;
- align-items: center;
- }
- .small-font{
- font-size :10px !important;
- }
- .single-line{
- @include single-line();
- }
|