样式调整

This commit is contained in:
fofolee 2020-06-25 20:15:31 +08:00
parent cd1aba3c05
commit 621e7bbc0e

View File

@ -405,6 +405,11 @@
display: none display: none
} }
#options #customize input#scptarg:hover{
border: 2px solid #55aafa;
transition: 0.2s;
}
#options #customize input.customize:hover{ #options #customize input.customize:hover{
border-bottom-color: #9e9e9ec7; border-bottom-color: #9e9e9ec7;
transition: 0.25s; transition: 0.25s;
@ -430,6 +435,10 @@ input::-webkit-input-placeholder {
border-radius: 3px; border-radius: 3px;
} }
#options #customize .CodeMirror-scroll{
box-sizing: unset;
}
#options #customize .CodeMirror:hover { #options #customize .CodeMirror:hover {
border: 1px solid #9e9e9ec7; border: 1px solid #9e9e9ec7;
@ -549,39 +558,43 @@ li.CodeMirror-hint {
padding: 3px 4px; padding: 3px 4px;
} }
/*---------------animate.css---------------*/
@keyframes fadeInDown { @keyframes fadeInDown {
0% { 0% { opacity: 0; transform: translate3d(0, -100%, 0) }
opacity: 0; to { opacity: 1; transform: translateZ(0) }
transform: translate3d(0, -100%, 0)
}
to {
opacity: 1;
transform: translateZ(0)
}
} }
.fadeInDownWindow { .fadeInDownWindow {
animation-name: fadeInDown; animation: fadeInDown 0.3s
animation-duration: 0.3s;
} }
@keyframes fadeOutUp { @keyframes fadeOutUp {
0% { 0% { opacity: 1 }
opacity: 1 to { opacity: 0; transform: translate3d(0, -100%, 0) }
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0)
}
} }
.fadeOutUpWindow { .fadeOutUpWindow {
animation-name: fadeOutUp; animation: fadeOutUp 0.3s
animation-duration: 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---------------*/ /*---------------select2---------------*/
#options #customize .select2-selection--single, #options #customize .select2-selection--single,
@ -627,7 +640,7 @@ li.CodeMirror-hint {
#quickselect .select2-dropdown { #quickselect .select2-dropdown {
position: fixed; position: fixed;
font-size: 14px; font-size: 14px;
top: 0 top: -50px
} }
#quickselect .select2-results__options { #quickselect .select2-results__options {
@ -637,7 +650,10 @@ li.CodeMirror-hint {
#quickselect .select2-results__option { #quickselect .select2-results__option {
padding: 10px; padding: 10px;
height: 30px; height: 30px;
line-height: 30px line-height: 30px;
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
} }
#quickselect .select2-search__field { #quickselect .select2-search__field {
@ -646,4 +662,9 @@ li.CodeMirror-hint {
outline: none outline: none
} }
/*---------------select2---------------*/ /*---------------select2---------------*/
.darktheme {
background: #282c34;
color: wheat;
}