|
@@ -3,6 +3,7 @@
|
|
|
--text-color: #444;
|
|
|
--border-style: 1px solid #EEE;
|
|
|
--header-height: 48px;
|
|
|
+ --panel-padding: 16px;
|
|
|
}
|
|
|
|
|
|
@font-face {
|
|
@@ -83,6 +84,34 @@ h1 a {
|
|
|
transition: 0s 0s height;
|
|
|
}
|
|
|
|
|
|
+ #panel #exitSearchButton {
|
|
|
+ position: absolute;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ top: 4px;
|
|
|
+ right: calc(var(--panel-padding) - 12px);
|
|
|
+ z-index: 1000;
|
|
|
+ display: none;
|
|
|
+ background-size: 20px 20px;
|
|
|
+ background-position: 50% 50%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-image: url(../files/ic_close_black_24dp.svg);
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ #panel.searchFocused #exitSearchButton {
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+
|
|
|
+ #panel.searchFocused #language {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ #panel.searchFocused #filter {
|
|
|
+ background-image: none;
|
|
|
+ padding-left: var(--panel-padding);
|
|
|
+ }
|
|
|
+
|
|
|
#panel #expandButton {
|
|
|
margin-right: 14px;
|
|
|
margin-left: 4px;
|
|
@@ -100,7 +129,7 @@ h1 a {
|
|
|
}
|
|
|
|
|
|
#panel #sections * {
|
|
|
- padding: 0 16px;
|
|
|
+ padding: 0 var(--panel-padding);
|
|
|
height: 100%;
|
|
|
position: relative;
|
|
|
display: flex;
|
|
@@ -166,7 +195,7 @@ h1 a {
|
|
|
#panel #content {
|
|
|
flex: 1;
|
|
|
overflow: scroll;
|
|
|
- padding: 0 16px 24px 16px;
|
|
|
+ padding: 0 var(--panel-padding) 24px var(--panel-padding);
|
|
|
}
|
|
|
|
|
|
#panel #content ul {
|