mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-03-31 09:05:43 +00:00
add borders
This commit is contained in:
parent
3f083cb1b7
commit
6655fd907f
2 changed files with 14 additions and 6 deletions
|
|
@ -52,8 +52,8 @@ select,
|
|||
textarea {
|
||||
accent-color: #65916d;
|
||||
background: #5d627d;
|
||||
border: #5d627d 1px solid;
|
||||
color: #ccc;
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
padding: 8px;
|
||||
font-size: 13px;
|
||||
|
|
@ -61,15 +61,22 @@ textarea {
|
|||
|
||||
textarea:focus,
|
||||
input:focus {
|
||||
border: none;
|
||||
border: #65916d 1px solid;
|
||||
outline: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
select option:active,
|
||||
select option:focus,
|
||||
select option:focus-within,
|
||||
select option:checked {
|
||||
select[multiple="multiple"] > option {
|
||||
border-top: 1px #5d627d solid;
|
||||
border-bottom: 1px #5d627d solid;
|
||||
}
|
||||
|
||||
select[multiple="multiple"] > option:active,
|
||||
select[multiple="multiple"] > option:focus,
|
||||
select[multiple="multiple"] > option:focus-within,
|
||||
select[multiple="multiple"] > option:checked {
|
||||
border-top: 1px #65916d solid;
|
||||
border-bottom: 1px #65916d solid;
|
||||
background: linear-gradient(#65916d, #65916d);
|
||||
outline: none;
|
||||
color: #fff;
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ a.label-green:hover {
|
|||
.button-green {
|
||||
color: #fff;
|
||||
background-color: #65916d;
|
||||
border: #65916d 1px solid;
|
||||
}
|
||||
|
||||
.button-green:hover {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue