Blame view

src/styles/index.scss 6.89 KB
赵千 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
@import './variables.scss';
@import './mixin.scss';
@import './transition.scss';
@import './element-ui.scss';
@import './sidebar.scss';
@import './btn.scss';

/* CSS 初始化 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  min-height: 100% !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}

html {
  height: 100%;
  box-sizing: border-box;
}

#app {
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.no-padding {
  padding: 0px !important;
}

.padding-content {
  padding: 4px 0;
}

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

任超 committed
127 128 129 130
ul li {
  list-style: none;
}

赵千 committed
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
div:focus {
  outline: none;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.pr-5 {
  padding-right: 5px;
}

.pl-5 {
  padding-left: 5px;
}
150

renchao@pashanhoo.com committed
151 152 153
.pt-10 {
  padding-top: 10px;
}
154

赵千 committed
155 156 157 158 159 160 161 162
.block {
  display: block;
}

.pointer {
  cursor: pointer;
}

任超 committed
163 164 165 166 167
.move {
  color: #409EFF;
  font-size: 24px;
}

赵千 committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
.inlineBlock {
  display: block;
}

.clearfix {
  &:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
}

renchao@pashanhoo.com committed
183 184 185 186
.flex {
  display: flex;
}

赵千 committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
aside {
  background: #eef1f6;
  padding: 8px 24px;
  margin-bottom: 20px;
  border-radius: 2px;
  display: block;
  line-height: 32px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #2c3e50;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  a {
    color: #337ab7;
    cursor: pointer;

    &:hover {
      color: rgb(32, 160, 255);
    }
  }
}

210
.ellipsis-line {
211 212
  display: inline-block;
  width: 300px !important;
213 214 215 216 217 218
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
219
  overflow: hidden;
220
  margin: 0 auto;
221 222
}

223 224 225 226 227 228 229 230 231 232 233 234
.ellipsis-table {
  display: inline-block;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
  margin: 0 auto;
}

235 236 237 238
.tooltip-width {
  max-width: 300px;
}

赵千 committed
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
//main-container全局样式
.app-container {
  padding: 20px;
}

.components-container {
  margin: 30px 50px;
  position: relative;
}

.pagination-container {
  margin-top: 30px;
}

.text-center {
  text-align: center
}

257
.width100 {
任超 committed
258
  width: 100% !important;
259 260
}

赵千 committed
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
.sub-navbar {
  height: 50px;
  line-height: 50px;
  position: relative;
  width: 100%;
  text-align: right;
  padding-right: 20px;
  transition: 600ms ease position;
  background: linear-gradient(90deg, rgba(32, 182, 249, 1) 0%, rgba(32, 182, 249, 1) 0%, rgba(33, 120, 241, 1) 100%, rgba(33, 120, 241, 1) 100%);

  .subtitle {
    font-size: 20px;
    color: #fff;
  }

  &.draft {
    background: #d0d0d0;
  }

  &.deleted {
    background: #d0d0d0;
  }
}

.link-type,
.link-type:focus {
  color: #337ab7;
  cursor: pointer;

  &:hover {
    color: rgb(32, 160, 255);
  }
}

.filter-container {
  padding-bottom: 10px;

  .filter-item {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
  }
}

//refine vue-multiselect plugin
.multiselect {
  line-height: 16px;
}

.multiselect--active {
  z-index: 1000 !important;
}

.delete-button {
  line-height: 32px;
  cursor: pointer;
  color: #FF7115;
  font-size: 20px;
  margin-right: 5px;

}

.add-button {
  line-height: 32px;
  color: #2FA5FF;
  cursor: pointer;
  font-size: 20PX;
}

.description {
  .el-form-item__content {
    width: 75%;
  }
}

// 弹窗组件 input样式
.header-title {
  margin-bottom: 18px;
  line-height: 20px;
  height: 20px;
  font-size: 15px;
  font-weight: bolder;
  width: 200px;
  margin-left: 45px;
}

.detailTree {
  width: 188px !important;
}

// 禁用
.disabled {
  color: #87adf3;
  background-color: #fff;
  cursor: not-allowed
}

.bad {
  color: #f00;
  background-color: #fff;
  cursor: not-allowed
任超 committed
362 363 364
}

.allow,
任超 committed
365
.prohibit .suspend {
任超 committed
366 367
  position: relative;
  margin: 0 auto;
任超 committed
368 369
  text-align: center;
  min-width: 30px;
任超 committed
370 371
}

任超 committed
372 373 374 375 376 377 378 379
.allow {
  color: $green;
}

.prohibit {
  color: $pink;
}

蔡俊立 committed
380 381 382 383 384 385 386 387 388 389 390 391 392 393
.suspend {
  color: $yellow;
}

.suspend::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 45%;
  background-color: $yellow;
  display: inline-block; // 此句为css样式展示重点🏁
  width: 5px;
  height: 5px;
  border-radius: 50%;
蔡俊立 committed
394
}
任超 committed
395

蔡俊立 committed
396 397 398 399 400 401 402
//错误日志样式 后期超优化
.item-cwnr {
  white-space: pre-wrap;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
403
  -webkit-line-clamp: 2;
蔡俊立 committed
404
  -webkit-box-orient: vertical;
任超 committed
405 406 407 408
}

.item-cwnr img {
  height: 30px;
409 410 411 412
}

//楼盘表的幢/幢单元名称
.lpb-xmmc {
yangwei committed
413 414
  height: 34px;
  line-height: 34px;
415 416 417 418 419 420
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  text-align: center;
  transition: 0.5s;
  margin-left: -1px;
  border-top: 0;
421

422 423 424 425
  .el-checkbox__label {
    font-size: 16px;
  }
}
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448


.linshiIcon {
  position: relative;

  .icon {
    position: absolute;
    top: 12px;
    right: -5px;
    transform: rotate(45deg);
    color: #fff;
    font-size: 12px;
    z-index: 10;
  }
}

.linshiIcon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 0px 0px 55px 55px;
  border-style: none solid solid;
xiaomiao committed
449
  border-color: transparent transparent #ff5100;
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-90deg);
}

.xianshiIcon {
  position: relative;

  .icon {
    position: absolute;
    top: 9px;
    right: 5px;
    transform: rotate(45deg);
    color: #fff;
    font-size: 12px;
    z-index: 10;
  }
}

.xianshiIcon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 0px 0px 55px 55px;
  border-style: none solid solid;
  border-color: transparent transparent #67C23A;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-90deg);
482 483 484 485 486 487 488 489
}

// 正在注销
.zhuxiaoIcon {
  position: relative;

  .icon {
    position: absolute;
490
    top: 12px;
491
    right: -4px;
492 493 494 495 496 497 498 499 500 501 502 503 504 505
    transform: rotate(45deg);
    color: #fff;
    font-size: 12px;
    z-index: 10;
  }
}

.zhuxiaoIcon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 0px 0px 55px 55px;
  border-style: none solid solid;
506
  border-color: transparent transparent rgb(216, 62, 62);
507 508 509 510
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-90deg);
511
}