mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-07-21 06:48:04 +00:00
Style updates
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
:root {
|
||||
--darwin-titlebar-height: 36px;
|
||||
--radius: 4px;
|
||||
}
|
||||
|
||||
html,
|
||||
@ -55,10 +56,11 @@ select:disabled {
|
||||
background-color: #00008b;
|
||||
border: 1px solid #00008b;
|
||||
padding: 0.5rem;
|
||||
border-radius: 10px;
|
||||
border-radius: var(--radius);
|
||||
color: #fff;
|
||||
}
|
||||
.btn:focus {
|
||||
.btn:focus,
|
||||
.btn:active {
|
||||
box-shadow: 0 0 0 3px rgba(0, 0, 139, 0.2);
|
||||
outline: none;
|
||||
}
|
||||
@ -163,15 +165,15 @@ select:disabled {
|
||||
background-position: right 0.5rem center;
|
||||
}
|
||||
.field > :first-child {
|
||||
border-top-left-radius: 10px;
|
||||
border-bottom-left-radius: 10px;
|
||||
border-top-left-radius: var(--radius);
|
||||
border-bottom-left-radius: var(--radius);
|
||||
}
|
||||
.field > *:not(:last-child) {
|
||||
border-right: none;
|
||||
}
|
||||
.field > :last-child {
|
||||
border-top-right-radius: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
border-top-right-radius: var(--radius);
|
||||
border-bottom-right-radius: var(--radius);
|
||||
}
|
||||
|
||||
code,
|
||||
|
Reference in New Issue
Block a user