mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-12 07:29:59 +00:00
16 lines
601 B
Plaintext
16 lines
601 B
Plaintext
button.btn.btn-secondary.btn-minimize(
|
|
(click)='hostApp.minimize()',
|
|
)
|
|
svg(version='1.1', width='10', height='10')
|
|
path(d='M 0,5 10,5 10,6 0,6 Z')
|
|
button.btn.btn-secondary.btn-maximize(
|
|
(click)='hostApp.toggleMaximize()',
|
|
)
|
|
svg(version='1.1', width='10', height='10')
|
|
path(d='M 0,0 0,10 10,10 10,0 Z M 1,1 9,1 9,9 1,9 Z')
|
|
button.btn.btn-secondary.btn-close(
|
|
(click)='hostApp.getWindow().close()',
|
|
)
|
|
svg(version='1.1', width='10', height='10')
|
|
path(d='M 0,0 0,0.7 4.3,5 0,9.3 0,10 0.7,10 5,5.7 9.3,10 10,10 10,9.3 5.7,5 10,0.7 10,0 9.3,0 5,4.3 0.7,0 Z')
|