.tab-menu{ position: fixed; top: 70px; left: 20px; width: 200px; z-index: 100; height: calc(100vh - 100px); background: #272e44; border-radius: 20px; padding: 5px; overflow-x: hidden; overflow-y: auto; } .tab-container{ height: calc(100% - 35px); overflow: auto; mask-image: linear-gradient(to bottom, #000 90%, #0000); padding-bottom: 25px; } .tab{ border-radius: 10px; padding: 8px 10px; background: #fff0; margin: 5px; font-size: 14px; transition: 0.5s; user-select: none; -webkit-user-select: none; display: flex; color: #cfcfcf; } .tab:hover{ background: #fff1; } .tab-selected{ border-radius: 10px; padding: 8px 10px; margin: 5px; font-size: 14px; transition: 0.5s; user-select: none; -webkit-user-select: none; display: flex; color: #cfcfcf; background: #fff4; } .tab-selected > .tab-close{ opacity: 1; } .tab:hover > .tab-close{ opacity: 1; } .tab-meta{ width: calc(100% - 40px); transform: translateY(1px); display: flex; align-items: center; } .tab-meta-input{ color: #cfcfcf; font-size: 14px; width: 120px; background: none; outline: none; border: none; transform: translateY(-1px); } .tab-close{ opacity: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 5px; } .tab-close:hover{ background: #fff3; } .tab-icon{ width: 20px; height: 20px; display: flex; align-items: center; justify-content: left; } .tab-new-dropdown{ position: absolute; width: 180px; transform: translate(-10px, 35px); border-radius: 10px; background: #fff1; } .tab-icon-bar{ height: 30px; margin: 0 5px; display: flex; justify-content: left; align-items: center; } .tab-icon-bar img{ padding: 3px; border-radius: 5px; transition: 0.1s; background: transparent; cursor: pointer; user-select: none; -webkit-user-select: none; } .tab-icon-bar img:hover{ background: #fff2; }