|
@@ -29,17 +29,7 @@
|
|
@confirm="$emit('allZeroSubmit')"
|
|
@confirm="$emit('allZeroSubmit')"
|
|
:overlayStyle="{ width: '200px' }"
|
|
:overlayStyle="{ width: '200px' }"
|
|
>
|
|
>
|
|
- <a-button
|
|
|
|
- type="primary"
|
|
|
|
- size="middle"
|
|
|
|
- style="
|
|
|
|
- height: 76px;
|
|
|
|
- border-radius: 10px;
|
|
|
|
- padding: 7px;
|
|
|
|
- background-color: #4db9ff;
|
|
|
|
- border: none;
|
|
|
|
- "
|
|
|
|
- >
|
|
|
|
|
|
+ <a-button type="primary" size="middle" class="all-zero-button">
|
|
<span>全零分</span>
|
|
<span>全零分</span>
|
|
</a-button>
|
|
</a-button>
|
|
</a-popconfirm>
|
|
</a-popconfirm>
|
|
@@ -137,7 +127,10 @@
|
|
type="primary"
|
|
type="primary"
|
|
shape="round"
|
|
shape="round"
|
|
size="large"
|
|
size="large"
|
|
- style="background-color: #4ed885; border-color: #4ed885"
|
|
|
|
|
|
+ style="
|
|
|
|
+ background-color: var(--app-undo-button-bg-color);
|
|
|
|
+ border-color: var(--app-undo-button-bg-color);
|
|
|
|
+ "
|
|
:clickTimeout="300"
|
|
:clickTimeout="300"
|
|
@click="clearLatestMarkOfCurrentQuetion"
|
|
@click="clearLatestMarkOfCurrentQuetion"
|
|
>
|
|
>
|
|
@@ -374,10 +367,7 @@ function submit() {
|
|
overflow: auto;
|
|
overflow: auto;
|
|
z-index: 1001;
|
|
z-index: 1001;
|
|
transition: margin-right 0.5s;
|
|
transition: margin-right 0.5s;
|
|
- --big-score-color: #283e76;
|
|
|
|
- --high-light-score-color: #5d65ff;
|
|
|
|
- --the-color: #7584ac;
|
|
|
|
- color: var(--the-color);
|
|
|
|
|
|
+ color: var(--app-small-header-text-color);
|
|
}
|
|
}
|
|
.mark-board-track-container.show {
|
|
.mark-board-track-container.show {
|
|
margin-right: 0;
|
|
margin-right: 0;
|
|
@@ -387,10 +377,10 @@ function submit() {
|
|
}
|
|
}
|
|
|
|
|
|
.top-container {
|
|
.top-container {
|
|
- background-color: white;
|
|
|
|
|
|
+ background-color: var(--app-container-bg-color);
|
|
}
|
|
}
|
|
.total-score {
|
|
.total-score {
|
|
- color: var(--big-score-color);
|
|
|
|
|
|
+ color: var(--app-main-text-color);
|
|
font-size: 32px;
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
.question {
|
|
.question {
|
|
@@ -398,8 +388,7 @@ function submit() {
|
|
max-width: 110px;
|
|
max-width: 110px;
|
|
min-height: 72px;
|
|
min-height: 72px;
|
|
padding: 10px;
|
|
padding: 10px;
|
|
- /* border: 1px solid grey; */
|
|
|
|
- background-color: white;
|
|
|
|
|
|
+ background-color: var(--app-container-bg-color);
|
|
}
|
|
}
|
|
.current-question .score {
|
|
.current-question .score {
|
|
color: var(--high-light-score-color);
|
|
color: var(--high-light-score-color);
|
|
@@ -411,12 +400,12 @@ function submit() {
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
display: grid;
|
|
display: grid;
|
|
place-content: center;
|
|
place-content: center;
|
|
- background-color: white;
|
|
|
|
|
|
+ background-color: var(--app-container-bg-color);
|
|
|
|
|
|
border-radius: 30px;
|
|
border-radius: 30px;
|
|
}
|
|
}
|
|
.current-score {
|
|
.current-score {
|
|
- color: #5d65ff;
|
|
|
|
|
|
+ color: var(--app-score-color);
|
|
}
|
|
}
|
|
.current-score-indicator {
|
|
.current-score-indicator {
|
|
position: absolute;
|
|
position: absolute;
|
|
@@ -426,4 +415,11 @@ function submit() {
|
|
height: 5px;
|
|
height: 5px;
|
|
background-color: #5c69f6;
|
|
background-color: #5c69f6;
|
|
}
|
|
}
|
|
|
|
+.all-zero-button {
|
|
|
|
+ height: 76px;
|
|
|
|
+ border-radius: 10px;
|
|
|
|
+ padding: 7px;
|
|
|
|
+ background-color: #4db9ff;
|
|
|
|
+ border: none;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|