Blame view

src/assets/css/index.scss 3.41 KB
13b58a42   梁保满   备题组卷部分前端页面基本完成
1
2
3
4
5
  .answer-header {
    padding: 16px 40px 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
6
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
7
8
9
    .btn-box {
      display: flex;
    }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
10
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
11
    .sel-box {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
12
13
14
15
16
17
18
19
20
21
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
  
      .sel {
        width: 8%;
        min-width: 160px;
        margin-right: 20px;
      }
  
13b58a42   梁保满   备题组卷部分前端页面基本完成
22
23
      .el-input__inner {
        border-radius: 20px;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
24
        border: 1px solid #e2e2e2;
225a00b6   梁保满   飞书问题解决
25
        height: 36px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
26
27
        line-height: 34px;
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
28
29
30
  
      .el-input__icon {
        line-height: 34px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
31
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
32
33
34
35
36
37
38
39
40
41
42
43
44
  
      .el-date-editor.el-input,
      .el-date-editor.el-input__inner {
        width: 160px;
      }
  
      .input-with-select {
        width: 200px;
        height: 36px;
        margin-right: 50px;
        border-radius: 20px;
        border: 1px solid #e2e2e2;
        box-sizing: border-box;
e5ff81a1   阿宝   集团管理员接口
45
        background: #fff;
d32e461c   梁保满   备题组卷
46
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
47
48
49
50
51
        .el-input__inner {
          border-radius: 20px;
          border: none;
          height: 34px;
          line-height: 34px;
13b58a42   梁保满   备题组卷部分前端页面基本完成
52
        }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
53
54
55
56
57
  
        .el-input-group__append,
        .el-input-group__prepend {
          border: none;
          background: transparent;
13b58a42   梁保满   备题组卷部分前端页面基本完成
58
59
        }
      }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
  
      .p1 {
        flex: 1;
  
        .s1 {
          margin-left: 36px;
          cursor: pointer;
          color: #7f7f7f;
  
          &:hover {
            color: #409eff;
          }
  
          &.active {
            color: #667ffd;
          }
        }
      }
    }
  }
d32e461c   梁保满   备题组卷
80
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
81
  .answer-box {
3de13776   梁保满   背题组卷修改答案
82
    padding-top: 12px;
5cfb0264   梁保满   班级管理交互优化
83
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
84
85
86
87
88
89
90
91
92
93
94
    .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   梁保满   班级管理交互优化
95
      user-select: none;
d32e461c   梁保满   备题组卷
96
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
97
98
99
100
101
      &.active {
        background: #5e78fa;
        border-color: #5e78fa;
        color: #fff;
      }
13b58a42   梁保满   备题组卷部分前端页面基本完成
102
    }
3de13776   梁保满   背题组卷修改答案
103
104
105
106
107
108
109
110
111
112
113
114
115
  
    .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   梁保满   备题组卷部分前端页面基本完成
116
  }
d32e461c   梁保满   备题组卷
117
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
118
119
120
121
122
123
124
125
126
  .el-menu-item i {
    width: 12px;
    text-align: center;
    margin-right: 8px;
  }
  
  .el-table thead th.el-table__cell {
    background: #f5f7fa;
  }
d32e461c   梁保满   备题组卷
127
128
  
  .el-table .el-table__cell.bg {
533a17d8   梁保满   备题组卷添加批量设置答案
129
130
    background: #f9f9f9;
  }
d32e461c   梁保满   备题组卷
131
132
133
134
135
136
  
  .el-table th.el-table__cell.p0>.cell {
    padding-left: 0;
    padding-right: 0;
  }
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
137
138
139
  .el-menu--popup {
    min-width: 160px;
  }
d32e461c   梁保满   备题组卷
140
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
141
142
143
144
  .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
f26ecfa4   阿宝   测试bug
145
  }
d32e461c   梁保满   备题组卷
146
147
148
149
  
  .pagination-box {
    text-align: center;
    margin: 10px;
db11048f   阿宝   设备状态,学校管理
150
  }
d32e461c   梁保满   备题组卷
151
152
  
  .down-txt {
db11048f   阿宝   设备状态,学校管理
153
154
    display: flex;
    align-items: center;
9309dc5d   梁保满   任课老师接口完成
155
    padding-left: 160px;
db11048f   阿宝   设备状态,学校管理
156
  }
d32e461c   梁保满   备题组卷
157
158
159
  
  .h-title {
    padding-left: 12px;
db11048f   阿宝   设备状态,学校管理
160
    position: relative;
d32e461c   梁保满   备题组卷
161
162
163
164
165
166
167
168
169
170
    font-size: 16px;
  
    &:after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -8px;
      width: 3px;
      height: 16px;
db11048f   阿宝   设备状态,学校管理
171
172
      background: #2e9afe;
    }
23a6dc5f   阿宝   学校管理相关接口简单对接
173
  }
d32e461c   梁保满   备题组卷
174
175
176
177
178
  
  div,
  ul {
    &::-webkit-scrollbar {
      width: 0;
23a6dc5f   阿宝   学校管理相关接口简单对接
179
    }
5cfb0264   梁保满   班级管理交互优化
180
181
  }
  
86e47820   梁保满   科目添加删除操作,教师角色选择。学...
182
183
184
185
186
187
188
189
190
191
192
193
194
  .cascader-clazz {
    .el-cascader-menu{
      .el-checkbox {
        display: none;
      }
    }
    .el-cascader-menu:nth-child(3){
      .el-checkbox {
        display: block;
      }
    }
  }
  
5cfb0264   梁保满   班级管理交互优化
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
  @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;
      }
    }
13b58a42   梁保满   备题组卷部分前端页面基本完成
224
  }