mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
add auto-shrink system for tabs (#262)
* add auto-shrink system for tabs * decrease tab limit and minimum width of non-current tabs
This commit is contained in:
parent
5c151f133b
commit
206c347838
@ -104,6 +104,17 @@ body,
|
|||||||
}
|
}
|
||||||
#tabs {
|
#tabs {
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
#tabs .tab:not(.new):not(.current) {
|
||||||
|
flex: 1 1 30px;
|
||||||
|
min-width: 30px;
|
||||||
|
}
|
||||||
|
#tabs button:nth-child(16) {
|
||||||
|
display: none;
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
#tabs .tab {
|
#tabs .tab {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
@ -122,7 +133,7 @@ body,
|
|||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
margin: 0 0.5em -0.16em 0.1em;
|
margin: 0 0.5em -0.16em 0.1em;
|
||||||
}
|
}
|
||||||
#tabs .tab:first-child {
|
#tabs .tab:not(.new) {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
}
|
}
|
||||||
#tabs .tab:not(.new) span:not(.close) {
|
#tabs .tab:not(.new) span:not(.close) {
|
||||||
@ -153,6 +164,7 @@ body,
|
|||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
margin-left: -0.1em;
|
margin-left: -0.1em;
|
||||||
|
margin-top: 0.3em;
|
||||||
}
|
}
|
||||||
#tabs .tab.new span {
|
#tabs .tab.new span {
|
||||||
padding: 0 0.35em 0.1em 0.3em;
|
padding: 0 0.35em 0.1em 0.3em;
|
||||||
|
Loading…
Reference in New Issue
Block a user