A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.3 KiB
87 lines
1.3 KiB
html, body, * { |
|
margin: 0; |
|
padding: 0; |
|
} |
|
|
|
body { |
|
position: absolute; |
|
bottom: 0; |
|
left: 0; |
|
right: 0; |
|
overflow: hidden; |
|
} |
|
|
|
.vimvixen-console { |
|
border-top: 1px solid gray; |
|
bottom: 0; |
|
margin: 0; |
|
padding: 0; |
|
|
|
@mixin consoole-font { |
|
font-style: normal; |
|
font-family: monospace; |
|
font-size: 12px; |
|
line-height: 16px; |
|
} |
|
|
|
&-completion { |
|
background-color: white; |
|
|
|
@include consoole-font; |
|
|
|
&-title { |
|
background-color: lightgray; |
|
font-weight: bold; |
|
margin: 0; |
|
padding: 0; |
|
} |
|
|
|
&-item { |
|
padding-left: 1.5rem; |
|
background-position: 0 center; |
|
background-size: contain; |
|
background-repeat: no-repeat; |
|
white-space: nowrap; |
|
|
|
&.vimvixen-completion-selected { |
|
background-color: yellow; |
|
} |
|
|
|
&-caption { |
|
display: inline-block; |
|
width: 40%; |
|
} |
|
|
|
&-url { |
|
display: inline-block; |
|
color: green; |
|
} |
|
} |
|
} |
|
|
|
&-error { |
|
background-color: red; |
|
font-weight: bold; |
|
color: white; |
|
|
|
@include consoole-font; |
|
} |
|
|
|
&-command { |
|
background-color: white; |
|
display: flex; |
|
|
|
&-prompt:before { |
|
content: ':'; |
|
|
|
@include consoole-font; |
|
} |
|
|
|
&-input { |
|
border: none; |
|
flex-grow: 1; |
|
|
|
@include consoole-font; |
|
} |
|
} |
|
}
|
|
|