feat(css): merge multiple css into one
This commit is contained in:
parent
bd20644269
commit
b88290468f
|
@ -1,2 +1,28 @@
|
||||||
@import url("info_bar.css");
|
#info_bar{
|
||||||
@import url("text_view.css");
|
background-color:#F1E6D9;
|
||||||
|
padding: 5px;
|
||||||
|
font-size: 11pt;
|
||||||
|
}
|
||||||
|
#info_bar > button {
|
||||||
|
transform: scale(0.9);
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
#info_bar > button:hover {
|
||||||
|
background-color: #00000010;
|
||||||
|
}
|
||||||
|
#info_bar > button:active {
|
||||||
|
background-color: #00000020;
|
||||||
|
}
|
||||||
|
textview {
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 7px 8px;
|
||||||
|
background: #E6E6E6;
|
||||||
|
outline-offset: 2px;
|
||||||
|
outline: 2px solid #81ABDF00;
|
||||||
|
transition-duration: .15s;
|
||||||
|
transition-timing-function: ease-in-out;
|
||||||
|
}
|
||||||
|
textview:focus-within {
|
||||||
|
outline-offset: -2px;
|
||||||
|
outline: 2px solid #81ABDF;
|
||||||
|
}
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
#info_bar{
|
|
||||||
background-color:#F1E6D9;
|
|
||||||
padding: 5px;
|
|
||||||
font-size: 11pt;
|
|
||||||
}
|
|
||||||
#info_bar > button {
|
|
||||||
transform: scale(0.9);
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
#info_bar > button:hover {
|
|
||||||
background-color: #00000010;
|
|
||||||
}
|
|
||||||
#info_bar > button:active {
|
|
||||||
background-color: #00000020;
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
textview {
|
|
||||||
border-radius: 5px;
|
|
||||||
padding: 7px 8px;
|
|
||||||
background: #E6E6E6;
|
|
||||||
outline-offset: 2px;
|
|
||||||
outline: 2px solid #81ABDF00;
|
|
||||||
transition-duration: .15s;
|
|
||||||
transition-timing-function: ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
textview:focus-within {
|
|
||||||
outline-offset: -2px;
|
|
||||||
outline: 2px solid #81ABDF;
|
|
||||||
}
|
|
Loading…
Reference in New Issue