mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Move bootstrap @LESS variables to CSS var()
This commit is contained in:
parent
874bfa852b
commit
0ef8af21b1
19 changed files with 132 additions and 266 deletions
|
|
@ -1,9 +1,10 @@
|
|||
.emailaddresses {
|
||||
background-color: #fff;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 3px;
|
||||
background-color: var(--input-bg-clr, #fff);
|
||||
border: 1px solid var(--input-border-clr, #ccc);
|
||||
border-radius: var(--input-border-radius, 3px);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
||||
box-sizing: border-box;
|
||||
color: var(--input-clr, #555);
|
||||
cursor: text;
|
||||
font-size: 90%;
|
||||
list-style: none;
|
||||
|
|
@ -15,7 +16,7 @@
|
|||
}
|
||||
|
||||
.emailaddresses.emailaddresses-focused {
|
||||
border: 1px solid darken(@inputBorder, 20%);
|
||||
border-color: var(--input-focus-border-clr, #999);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue