Blame view

src/assets/css/index.scss 10.8 KB
f45b3c05   LH_PC   云平台新UI界面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  .default-date-radio-group {
    height: 100%;
    line-height: 1;
  
    .el-radio-button__inner {
      display: inline-block;
      border: none;
      height: 100%;
      line-height: 10px;
      font-size: 14px;
      border: none !important;
      box-shadow: none !important;
      padding: 0px !important;
      margin-right: 15px;
    }
  
    :first-child {
      margin-left: 12px;
    }
  
aea3399d   liufangjia   feat: 代码提交
21
    .el-radio-button__orig-radio:checked + .el-radio-button__inner {
f45b3c05   LH_PC   云平台新UI界面
22
23
24
25
26
27
28
29
      background: transparent !important;
      color: #6b7ef5 !important;
      font-weight: bold;
      border: none !important;
      box-shadow: none !important;
    }
  }
  
6bca489d   LH_PC   云平台二期UI
30
31
  .lowLevelClass {
    color: white;
aea3399d   liufangjia   feat: 代码提交
32
    background: #ffa41c;
6bca489d   LH_PC   云平台二期UI
33
34
35
36
37
38
39
40
41
42
43
44
45
    background-size: 200% 200%;
    height: 100%;
    width: 100%;
  }
  
  .overflowText {
    white-space: nowrap;
    width: calc(100% - 5px); //文字宽度
    overflow: hidden; //超出宽度隐藏
    white-space: nowrap; //强制文字在一行
    text-overflow: ellipsis; //文字溢出显示省略号
  }
  
f45b3c05   LH_PC   云平台新UI界面
46
47
48
49
50
  .green-el-button {
    background-color: rgba(65, 204, 149, 1);
    color: white;
    border-color: rgba(65, 204, 149, 1);
  
6bca489d   LH_PC   云平台二期UI
51
52
    :focus,
    :hover {
f45b3c05   LH_PC   云平台新UI界面
53
54
55
56
      background-color: rgba(65, 204, 149, 1);
      color: white;
      border-color: rgba(65, 204, 149, 1);
    }
f45b3c05   LH_PC   云平台新UI界面
57
58
  }
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
59
60
61
62
63
  .answer-header {
    padding: 16px 40px 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
64
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
65
66
67
    .btn-box {
      display: flex;
    }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
68
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
69
    .sel-box {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
70
71
72
73
74
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
  
      .sel {
6bca489d   LH_PC   云平台二期UI
75
        width: 10%;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
76
77
78
79
        min-width: 160px;
        margin-right: 20px;
      }
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
80
81
      .el-input__inner {
        border-radius: 20px;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
82
        border: 1px solid #e2e2e2;
225a00b6   梁保满   飞书问题解决
83
        height: 36px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
84
85
        line-height: 34px;
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
86
87
88
  
      .el-input__icon {
        line-height: 34px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
89
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
90
91
92
93
94
95
96
  
      .el-date-editor.el-input,
      .el-date-editor.el-input__inner {
        width: 160px;
      }
  
      .input-with-select {
6bca489d   LH_PC   云平台二期UI
97
        width: 230px;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
98
99
100
101
102
        height: 36px;
        margin-right: 50px;
        border-radius: 20px;
        border: 1px solid #e2e2e2;
        box-sizing: border-box;
e5ff81a1   阿宝   集团管理员接口
103
        background: #fff;
d32e461c   梁保满   备题组卷
104
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
105
106
107
108
109
        .el-input__inner {
          border-radius: 20px;
          border: none;
          height: 34px;
          line-height: 34px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
110
        }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
111
112
113
114
115
  
        .el-input-group__append,
        .el-input-group__prepend {
          border: none;
          background: transparent;
13b58a42   梁保满   备题组卷部分前端页面基本完成
116
117
        }
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
  
      .p1 {
        flex: 1;
  
        .s1 {
          margin-left: 36px;
          cursor: pointer;
          color: #7f7f7f;
  
          &:hover {
            color: #409eff;
          }
  
          &.active {
            color: #667ffd;
          }
        }
      }
    }
  }
d32e461c   梁保满   备题组卷
138
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
139
  .answer-box {
3de13776   梁保满   背题组卷修改答案
140
    padding-top: 12px;
5cfb0264   梁保满   班级管理交互优化
141
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
142
143
144
145
146
147
148
149
150
151
152
    .answer-s {
      display: inline-block;
      width: 30px;
      height: 30px;
      border: 1px solid #e2e2e2;
      border-radius: 3px;
      margin: 0 6px;
      font-size: 16px;
      color: #333;
      text-align: center;
      line-height: 30px;
5cfb0264   梁保满   班级管理交互优化
153
      user-select: none;
d32e461c   梁保满   备题组卷
154
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
155
156
157
158
159
      &.active {
        background: #5e78fa;
        border-color: #5e78fa;
        color: #fff;
      }
13b58a42   梁保满   备题组卷部分前端页面基本完成
160
    }
3de13776   梁保满   背题组卷修改答案
161
162
163
164
165
166
167
168
169
170
171
172
173
  
    .delButton {
      border-color: #ff6868;
      background: #ff6868 url("../images/arrow.png") no-repeat center;
      background-size: 19px;
      color: transparent;
    }
  
    .ac {
      border-color: #ff6868;
      background: #ff6868;
      color: #fff;
    }
13b58a42   梁保满   备题组卷部分前端页面基本完成
174
  }
d32e461c   梁保满   备题组卷
175
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
176
177
178
179
180
181
182
183
184
  .el-menu-item i {
    width: 12px;
    text-align: center;
    margin-right: 8px;
  }
  
  .el-table thead th.el-table__cell {
    background: #f5f7fa;
  }
d32e461c   梁保满   备题组卷
185
186
  
  .el-table .el-table__cell.bg {
533a17d8   梁保满   备题组卷添加批量设置答案
187
188
    background: #f9f9f9;
  }
d32e461c   梁保满   备题组卷
189
  
aea3399d   liufangjia   feat: 代码提交
190
  .el-table th.el-table__cell.p0 > .cell {
d32e461c   梁保满   备题组卷
191
192
193
194
    padding-left: 0;
    padding-right: 0;
  }
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
195
196
197
  .el-menu--popup {
    min-width: 160px;
  }
d32e461c   梁保满   备题组卷
198
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
199
200
201
202
  .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
f26ecfa4   阿宝   测试bug
203
  }
d32e461c   梁保满   备题组卷
204
205
206
207
  
  .pagination-box {
    text-align: center;
    margin: 10px;
db11048f   阿宝   设备状态,学校管理
208
  }
d32e461c   梁保满   备题组卷
209
  
6192eba8   梁保满   引用上传文件组件问题,备题组卷顶部
210
  .down-box {
b248db27   梁保满   课件模版区分,错别字修改,录分成功...
211
    padding-left: 120px;
6192eba8   梁保满   引用上传文件组件问题,备题组卷顶部
212
213
  }
  
d32e461c   梁保满   备题组卷
214
  .down-txt {
db11048f   阿宝   设备状态,学校管理
215
216
    display: flex;
    align-items: center;
9309dc5d   梁保满   任课老师接口完成
217
    padding-left: 160px;
db11048f   阿宝   设备状态,学校管理
218
  }
d32e461c   梁保满   备题组卷
219
220
221
  
  .h-title {
    padding-left: 12px;
db11048f   阿宝   设备状态,学校管理
222
    position: relative;
d32e461c   梁保满   备题组卷
223
224
225
226
227
228
229
230
231
232
    font-size: 16px;
  
    &:after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -8px;
      width: 3px;
      height: 16px;
db11048f   阿宝   设备状态,学校管理
233
234
      background: #2e9afe;
    }
23a6dc5f   阿宝   学校管理相关接口简单对接
235
  }
d32e461c   梁保满   备题组卷
236
237
238
239
240
  
  div,
  ul {
    &::-webkit-scrollbar {
      width: 0;
23a6dc5f   阿宝   学校管理相关接口简单对接
241
    }
5cfb0264   梁保满   班级管理交互优化
242
243
  }
  
86e47820   梁保满   科目添加删除操作,教师角色选择。学...
244
  .cascader-clazz {
6192eba8   梁保满   引用上传文件组件问题,备题组卷顶部
245
    .el-cascader-menu {
86e47820   梁保满   科目添加删除操作,教师角色选择。学...
246
247
248
249
      .el-checkbox {
        display: none;
      }
    }
6192eba8   梁保满   引用上传文件组件问题,备题组卷顶部
250
251
  
    .el-cascader-menu:nth-child(3) {
86e47820   梁保满   科目添加删除操作,教师角色选择。学...
252
253
254
255
256
257
      .el-checkbox {
        display: block;
      }
    }
  }
  
4c2f99b0   梁保满   修改组卷
258
  .screenshot-box {
77da338a   梁保满   自测问题修改
259
    width: 600px;
f45b3c05   LH_PC   云平台新UI界面
260
  
4c2f99b0   梁保满   修改组卷
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
    .screenshot {
      width: 100%;
      box-shadow: none;
      border: none;
      height: 300px;
    }
  
    .screenshot-img {
      display: block;
      width: auto;
      max-width: 100%;
      margin: 0 auto;
      margin-bottom: 10px;
    }
  }
  
5cfb0264   梁保满   班级管理交互优化
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
  @media screen and (max-width: 1500px) {
    .answer-box {
      .answer-s {
        width: 24px !important;
        height: 24px !important;
        line-height: 24px !important;
        margin: 0 5px 10px !important;
      }
    }
  
    .question-box {
      .el-button--mini.is-circle {
        padding: 4px !important;
      }
    }
  
    .sub-questions {
      .qs-num {
        width: 50px !important;
      }
  
      .qs-score {
        width: 148px !important;
      }
  
      .qs-partScore {
        width: 148px !important;
      }
    }
f45b3c05   LH_PC   云平台新UI界面
306
307
  }
  
6bca489d   LH_PC   云平台二期UI
308
309
310
311
312
  .parent-number {
    position: relative;
  }
  
  .parent-number::after {
aea3399d   liufangjia   feat: 代码提交
313
    content: "%";
6bca489d   LH_PC   云平台二期UI
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
    display: inline-block;
    height: 20px;
    line-height: 20px;
    width: 20px;
    text-align: center;
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .parent-number .el-input__inner {
    // 不加这行的话,当文本框里数值很大时,会和单位重叠
    padding-left: 30px;
    padding-right: 48px;
  }
  
f45b3c05   LH_PC   云平台新UI界面
331
332
333
334
335
336
337
338
339
340
341
342
  // 默认标题
  .default-title {
    height: 36px;
    font-weight: bold;
    font-size: 24px;
    color: #131523;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
  }
  
f45b3c05   LH_PC   云平台新UI界面
343
344
  // 默认实体
  .default-body {
ef16e57e   LH_PC   fix:前端版本迭代
345
346
347
348
349
350
351
352
353
354
355
356
357
    .anwser-column {
      border: 1px solid #ebeef5;
  
      padding: 0px !important;
  
      .cell {
        height: 100%;
        width: calc(100% - 2px);
      }
  
      .red {
        height: 100%;
        width: 100%;
aea3399d   liufangjia   feat: 代码提交
358
        background: #fbeedc;
ef16e57e   LH_PC   fix:前端版本迭代
359
360
361
362
363
        color: red;
        display: block;
      }
    }
  
f45b3c05   LH_PC   云平台新UI界面
364
365
366
    font-size: 14px;
    font-weight: 400;
    color: #303133;
aea3399d   liufangjia   feat: 代码提交
367
    background-color: #f5f6fa;
f45b3c05   LH_PC   云平台新UI界面
368
369
370
  
    .default-filter,
    .el-main {
aea3399d   liufangjia   feat: 代码提交
371
      background: #ffffff;
f45b3c05   LH_PC   云平台新UI界面
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
      box-shadow: 0px 1px 4px 0px rgba(21, 34, 50, 0.08);
    }
  
    .detailBack {
      height: auto !important;
      border: none !important;
    }
  
    .el-header {
      padding: 20px !important;
    }
  
    .el-main {
      margin: 0px 20px !important;
      padding: 0px !important;
  
      .default-table {
6bca489d   LH_PC   云平台二期UI
389
390
391
        width: 100% !important;
        height: 100% !important;
  
f45b3c05   LH_PC   云平台新UI界面
392
393
394
        th {
          font-weight: 400;
          font-size: 14px;
aea3399d   liufangjia   feat: 代码提交
395
          color: #5a607f;
f45b3c05   LH_PC   云平台新UI界面
396
397
398
          text-align: left;
          font-style: normal;
          text-transform: none;
6bca489d   LH_PC   云平台二期UI
399
          border: 1px solid #ebeef5;
f45b3c05   LH_PC   云平台新UI界面
400
401
        }
  
6bca489d   LH_PC   云平台二期UI
402
        tr,
ef16e57e   LH_PC   fix:前端版本迭代
403
        td:not(.anwser-column) {
6bca489d   LH_PC   云平台二期UI
404
405
406
          height: 40px;
          padding: 5px 0px !important;
          border: 1px solid #ebeef5;
f45b3c05   LH_PC   云平台新UI界面
407
408
409
410
411
412
413
414
415
        }
      }
  
      .default-tabs {
        .el-tabs__item {
          border: none !important;
        }
  
        .el-tabs__header {
aea3399d   liufangjia   feat: 代码提交
416
          background: #f5f7fa !important;
f45b3c05   LH_PC   云平台新UI界面
417
418
419
420
        }
  
        .el-tabs__item.is-active {
          background: white !important;
aea3399d   liufangjia   feat: 代码提交
421
          color: #667ffd !important;
f45b3c05   LH_PC   云平台新UI界面
422
423
424
425
426
427
        }
      }
    }
  
    .el-footer-pagination {
      height: 40px !important;
aea3399d   liufangjia   feat: 代码提交
428
      background: #ffffff;
f45b3c05   LH_PC   云平台新UI界面
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
      margin: 0px 20px !important;
  
      .el-footer-pagination-box,
      .el-pagination {
        line-height: 30px;
        float: right;
        vertical-align: middle;
        height: 30px;
      }
    }
  
    .default-filter {
      margin: 14px 20px !important;
      padding: 14px 20px !important;
  
      * {
6bca489d   LH_PC   云平台二期UI
445
446
        height: 40px;
        line-height: 40px;
f45b3c05   LH_PC   云平台新UI界面
447
448
      }
  
ef16e57e   LH_PC   fix:前端版本迭代
449
450
451
452
453
454
      .el-tag__close {
        height: 100% !important;
        line-height: 1.2;
        min-width: 20px;
      }
  
f45b3c05   LH_PC   云平台新UI界面
455
456
457
458
459
460
461
462
463
464
465
466
      .filter-input,
      .filter-select {
        width: 13%;
        margin-right: 10px;
      }
  
      .filter-datePicker {
        width: 25%;
        margin-right: 10px;
  
        input {
          // border: 1px solid #DCDFE6;
6bca489d   LH_PC   云平台二期UI
467
          height: calc(100% - 10px);
f45b3c05   LH_PC   云平台新UI界面
468
469
470
        }
      }
  
6bca489d   LH_PC   云平台二期UI
471
472
473
474
      .el-select__tags .el-tag {
        height: 24px !important;
      }
  
f45b3c05   LH_PC   云平台新UI界面
475
476
477
478
479
480
481
482
483
484
      .el-button {
        width: auto;
        line-height: 0px;
        padding: 0px 15px !important;
      }
  
      .el-button--primary {
        background-color: rgb(107, 126, 245);
      }
    }
6bca489d   LH_PC   云平台二期UI
485
486
  }
  
ef16e57e   LH_PC   fix:前端版本迭代
487
488
489
490
491
492
493
494
  @media screen and (max-width: 1200px) {
    .flex-content {
      padding: 55px !important;
    }
  
    .flex-btn {
      position: fixed !important;
      z-index: 999 !important;
ead476dd   LH_PC   fix:最终定版
495
      bottom: 0px !important;
ef16e57e   LH_PC   fix:前端版本迭代
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
      padding: 10px 10px !important;
      right: 0px !important;
      background-color: white !important;
      width: calc(100% - 280px) !important;
    }
  }
  
  @media screen and (max-width: 1500px) and (min-width: 1201px) {
    .flex-content {
      padding: 55px !important;
    }
  
    .flex-btn {
      position: fixed !important;
      z-index: 999 !important;
ead476dd   LH_PC   fix:最终定版
511
      bottom: -4px !important;
ef16e57e   LH_PC   fix:前端版本迭代
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
      padding: 10px 10px !important;
      right: 0px !important;
      background-color: white !important;
      width: calc(100% - 280px) !important;
    }
  }
  
  @media screen and (min-width: 1501px) {
    .flex-content {
      padding: 25px !important;
    }
  
    .flex-btn {
      position: fixed !important;
      z-index: 999 !important;
      bottom: -10px !important;
      padding: 10px 0px !important;
      right: 30px !important;
      background-color: white !important;
      width: calc(100% - 280px) !important;
    }
ef16e57e   LH_PC   fix:前端版本迭代
533
534
  }
  
ef16e57e   LH_PC   fix:前端版本迭代
535
  @media screen and (max-width: 1920px) {
aea3399d   liufangjia   feat: 代码提交
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
    *
      :not(
        .p1,
        .fa,
        .el-button,
        .el-icon-upload,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .el-progress__text,
        .text-radius,
  
      ) {
6bca489d   LH_PC   云平台二期UI
552
553
      font-size: 18px !important;
  
aea3399d   liufangjia   feat: 代码提交
554
      .text-radius * {
ead476dd   LH_PC   fix:最终定版
555
556
        font-size: 16px !important;
      }
ef16e57e   LH_PC   fix:前端版本迭代
557
558
559
560
561
562
563
564
  
      .default-body-detail * {
        font-size: 15px !important;
  
        .cell {
          padding-left: 2px !important;
          padding-right: 2px !important;
        }
6bca489d   LH_PC   云平台二期UI
565
566
      }
  
ef16e57e   LH_PC   fix:前端版本迭代
567
568
      .default-title {
        font-size: 24px !important;
6bca489d   LH_PC   云平台二期UI
569
570
      }
  
ef16e57e   LH_PC   fix:前端版本迭代
571
572
      .el-select-dropdown__item *,
      .small-button * {
6bca489d   LH_PC   云平台二期UI
573
574
575
576
577
        font-size: 16px !important;
      }
  
      .el-form :not(h1, h2, h3, h4, h5, h6),
      .el-dropdown-menu__item,
ef16e57e   LH_PC   fix:前端版本迭代
578
579
580
      .el-form-item__error,
      .el-dialog__body .el-checkbox *,
      .el-checkbox__label {
6bca489d   LH_PC   云平台二期UI
581
582
        font-size: 16px !important;
      }
6bca489d   LH_PC   云平台二期UI
583
584
585
    }
  }
  
ef16e57e   LH_PC   fix:前端版本迭代
586
  @media screen and (min-width: 1921px) {
aea3399d   liufangjia   feat: 代码提交
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
    *
      :not(
        .p1,
        .fa,
        .el-button,
        .el-icon-upload,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .el-progress__text,
        .text-radius
      ) {
6bca489d   LH_PC   云平台二期UI
602
603
      font-size: 14px !important;
  
ead476dd   LH_PC   fix:最终定版
604
605
606
607
      .text-radius * {
        font-size: 14px !important;
      }
  
aea3399d   liufangjia   feat: 代码提交
608
      .default-body-detail * {
ef16e57e   LH_PC   fix:前端版本迭代
609
610
611
612
613
614
615
616
        font-size: 13px !important;
  
        .cell {
          padding-left: 4px !important;
          padding-right: 4px !important;
        }
      }
  
6bca489d   LH_PC   云平台二期UI
617
618
      .default-body .default-filter * {
        line-height: 38px !important;
ead476dd   LH_PC   fix:最终定版
619
      }
6bca489d   LH_PC   云平台二期UI
620
621
622
623
624
625
626
627
628
  
      .card-content {
        width: 48% !important;
      }
  
      .default-title {
        font-size: 24px !important;
      }
  
ef16e57e   LH_PC   fix:前端版本迭代
629
630
      .el-select-dropdown__item *,
      .small-button * {
6bca489d   LH_PC   云平台二期UI
631
632
633
634
635
        font-size: 12px !important;
      }
  
      .el-form :not(h1, h2, h3, h4, h5, h6),
      .el-dropdown-menu__item,
ef16e57e   LH_PC   fix:前端版本迭代
636
637
638
      .el-form-item__error,
      .el-dialog__body .el-checkbox *,
      .el-checkbox__label {
6bca489d   LH_PC   云平台二期UI
639
640
        font-size: 12px !important;
      }
6bca489d   LH_PC   云平台二期UI
641
    }
aea3399d   liufangjia   feat: 代码提交
642
  }