Skip to content

Commit

Permalink
수정: 맞추지 않은 일반 문제 색상 적용 안 된 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
wzrabbit committed Aug 26, 2022
1 parent e391598 commit 0bfd8bf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion totamjung/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "토탐정",
"description": "토탐정은 백준 온라인 저지(BOJ)에서 사용할 수 있는 미니 확장 프로그램입니다!\n알고리즘 분류에 기능을 추가하고, 전용 테마를 제공합니다.",
"version": "1.0.7",
"version": "1.0.7.1",
"manifest_version": 3,
"permissions": [
"storage"
Expand Down
2 changes: 1 addition & 1 deletion totamjung/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1>
<img class="title" src="../images/settings_title.png" />
</h1>
<div class="widget-bundle">
<div class="version">v1.0.7</div>
<div class="version">v1.0.7.1</div>
<img class="guide-link" id="guideBtn" src="../images/guide_link.png" />
<img class="github-link" id="githubBtn" src="../images/github_link.png" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion totamjung/pallette.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
/* BOJ Extended Colors */
--problem-link-ac-box-color: rgb(0, 40, 20);
--problem-link-pac-box-color: rgb(60, 50, 0);
--problem-link-wa-box-color: rgb(45, 0, 0);
--problem-link-wa-box-color: rgb(60, 0, 0);
--problem-link-ac-color: rgb(136, 232, 178);
--problem-link-pac-color: rgb(236, 222, 115);
--problem-link-wa-color: rgb(238, 123, 123);
Expand Down
14 changes: 11 additions & 3 deletions totamjung/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -2122,10 +2122,20 @@ html[totamjung='on'] #quick-search .results {
background: var(--bright-menu-line-color);
}


html[totamjung='on'] a[href^="/problem"].problem-link-style-box {
background-color: var(--secondary-menu-color);
color: var(--bright-menu-line-color);
transition: 0.2s;
}

html[totamjung='on'] a[href^="/problem"].problem-link-style-box:hover {
border-color: var(--bright-menu-line-color);
}

html[totamjung='on'] a[href^="/problem"].problem-link-style-box.result-ac {
background-color: var(--problem-link-ac-box-color);
color: var(--problem-link-ac-color);
transition: 0.2s;
}

html[totamjung='on'] a[href^="/problem"].problem-link-style-box.result-ac:hover {
Expand All @@ -2135,7 +2145,6 @@ html[totamjung='on'] a[href^="/problem"].problem-link-style-box.result-ac:hover
html[totamjung='on'] a[href^="/problem"].problem-link-style-box.result-pac {
background-color: var(--problem-link-pac-box-color);
color: var(--problem-link-pac-color);
transition: 0.2s;
}

html[totamjung='on'] a[href^="/problem"].problem-link-style-box.result-pac:hover {
Expand All @@ -2145,7 +2154,6 @@ html[totamjung='on'] a[href^="/problem"].problem-link-style-box.result-pac:hover
html[totamjung='on'] a[href^="/problem"].problem-link-style-box.result-wa {
background-color: var(--problem-link-wa-box-color);
color: var(--problem-link-wa-color);
transition: 0.2s;
}

html[totamjung='on'] a[href^="/problem"].problem-link-style-box.result-wa:hover {
Expand Down

0 comments on commit 0bfd8bf

Please sign in to comment.