diff --git a/styles/bootstrap/application.css b/styles/bootstrap/application.css index 4740d89f9..d24cab1bd 100644 --- a/styles/bootstrap/application.css +++ b/styles/bootstrap/application.css @@ -163,7 +163,22 @@ div.statusbar-container { border: 1px solid #E0E0E0; border-radius: 4px; z-index: 10; + overflow-y: scroll; + max-height: calc(100% - 100px); } +div.statusbar-container::-webkit-scrollbar { + width: 5px; +} +div.statusbar-container::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); + border-radius: 10px; +} + +div.statusbar-container::-webkit-scrollbar-thumb { + border-radius: 10px; + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); +} + div.statusbar-container h1 { font-size: 21px; line-height: 40px;