mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
copy select tag styling from header input to all select inputs
This commit is contained in:
parent
09db15b29b
commit
68102bdddd
1 changed files with 12 additions and 0 deletions
|
@ -156,3 +156,15 @@ span.help-block {
|
||||||
.toggle-box:checked + label + .toggle-box-container > .toggle-box-container__content {
|
.toggle-box:checked + label + .toggle-box-container > .toggle-box-container__content {
|
||||||
margin-top: $block_spacing;
|
margin-top: $block_spacing;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
select.input, select.input:focus {
|
||||||
|
-moz-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
background: linear-gradient(45deg, transparent 50%, $foreground_color 50%) calc(100% - 15px) 12px/5px 5px no-repeat,linear-gradient(135deg, $foreground_color 50%, transparent 50%) calc(100% - 10px) 12px/5px 5px no-repeat;
|
||||||
|
padding-right: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
select.input:hover, select.input:focus:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: $input_color_active;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue