Skip to content

Commit d4969f0

Browse files
committed
Refactor background color for contact form verification image to use CSS variable.
1 parent 144ca2b commit d4969f0

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

src/framework/resource/css/site.css

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
/**
2-
* site.css
3-
*
42
* Css web application basic
53
*/
64

7-
/**********************************************************************************************************************
8-
* MAIN *
9-
**********************************************************************************************************************/
10-
:root {
5+
:root {
116
--input-padding-x: .75rem;
127
--input-padding-y: .75rem;
138
}
@@ -27,7 +22,7 @@ html, body {
2722
}
2823

2924
.breadcrumb > li + li:before {
30-
color: #7c8695;
25+
color: var(--bs-tertiary-color);
3126
content: "/\00a0";
3227
padding: 0 5px;
3328
}
@@ -49,7 +44,7 @@ html, body {
4944
}
5045

5146
[data-bs-theme=dark] #contactform-verifycode-image {
52-
background-color: #ced4da;
47+
background-color: var(--bs-secondary-color);
5348
border: 1px solid rgba(255, 255, 255, 0.1);
5449
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
5550
}

0 commit comments

Comments
 (0)