mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-29 20:32:44 +08:00
样式调整
This commit is contained in:
parent
cd1aba3c05
commit
621e7bbc0e
@ -405,6 +405,11 @@
|
||||
display: none
|
||||
}
|
||||
|
||||
#options #customize input#scptarg:hover{
|
||||
border: 2px solid #55aafa;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
#options #customize input.customize:hover{
|
||||
border-bottom-color: #9e9e9ec7;
|
||||
transition: 0.25s;
|
||||
@ -430,6 +435,10 @@ input::-webkit-input-placeholder {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
#options #customize .CodeMirror-scroll{
|
||||
box-sizing: unset;
|
||||
}
|
||||
|
||||
|
||||
#options #customize .CodeMirror:hover {
|
||||
border: 1px solid #9e9e9ec7;
|
||||
@ -549,39 +558,43 @@ li.CodeMirror-hint {
|
||||
padding: 3px 4px;
|
||||
}
|
||||
|
||||
/*---------------animate.css---------------*/
|
||||
@keyframes fadeInDown {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -100%, 0)
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateZ(0)
|
||||
}
|
||||
0% { opacity: 0; transform: translate3d(0, -100%, 0) }
|
||||
to { opacity: 1; transform: translateZ(0) }
|
||||
}
|
||||
|
||||
.fadeInDownWindow {
|
||||
animation-name: fadeInDown;
|
||||
animation-duration: 0.3s;
|
||||
animation: fadeInDown 0.3s
|
||||
}
|
||||
|
||||
@keyframes fadeOutUp {
|
||||
0% {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -100%, 0)
|
||||
}
|
||||
0% { opacity: 1 }
|
||||
to { opacity: 0; transform: translate3d(0, -100%, 0) }
|
||||
}
|
||||
|
||||
.fadeOutUpWindow {
|
||||
animation-name: fadeOutUp;
|
||||
animation-duration: 0.3s;
|
||||
animation: fadeOutUp 0.3s
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
from { opacity: 0; transform: translate3d(0, 100%, 0); }
|
||||
to { opacity: 1; transform: translate3d(0, 0, 0); }
|
||||
}
|
||||
|
||||
.fadeInUpWindow {
|
||||
animation: fadeInUp 0.3s
|
||||
}
|
||||
|
||||
@keyframes fadeOutDown {
|
||||
from { opacity: 1; }
|
||||
to { opacity: 0; transform: translate3d(0, 100%, 0); }
|
||||
}
|
||||
|
||||
.fadeOutDownWindow {
|
||||
animation: fadeOutDown 0.3s;
|
||||
}
|
||||
/*---------------animate.css---------------*/
|
||||
|
||||
/*---------------select2---------------*/
|
||||
#options #customize .select2-selection--single,
|
||||
@ -627,7 +640,7 @@ li.CodeMirror-hint {
|
||||
#quickselect .select2-dropdown {
|
||||
position: fixed;
|
||||
font-size: 14px;
|
||||
top: 0
|
||||
top: -50px
|
||||
}
|
||||
|
||||
#quickselect .select2-results__options {
|
||||
@ -637,7 +650,10 @@ li.CodeMirror-hint {
|
||||
#quickselect .select2-results__option {
|
||||
padding: 10px;
|
||||
height: 30px;
|
||||
line-height: 30px
|
||||
line-height: 30px;
|
||||
white-space: pre;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#quickselect .select2-search__field {
|
||||
@ -646,4 +662,9 @@ li.CodeMirror-hint {
|
||||
outline: none
|
||||
}
|
||||
|
||||
/*---------------select2---------------*/
|
||||
/*---------------select2---------------*/
|
||||
|
||||
.darktheme {
|
||||
background: #282c34;
|
||||
color: wheat;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user