File size: 1,660 Bytes
			
			2da7365  | 
								1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78  | 
								/* from streamlit-on-Hover-tabs package */
section[data-testid='stSidebar'] {
    background-color: #111;
    flex-shrink: unset !important;  
}
@media(hover:hover) and (min-width: 600px) and (max-width: 769px){
    header[data-testid="stHeader"] {
        display:none;
    }
    section[data-testid='stSidebar'] {
        height: 100%;
        min-width:95px !important;
        width: 95px !important;
        margin-left: 305px;
        position: relative;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s ease;
        padding-top: 60px;
        white-space: nowrap;
        
    }
    section[data-testid='stSidebar']:hover{
        min-width: 330px !important;
        }
    button[kind="header"] {
        display: none;
    }
    div[data-testid="collapsedControl"]{
        display: none;
    }
}
@media(hover: hover) and (min-width: 769px){
    header[data-testid="stHeader"] {
        display:none;
        font-size: 12px;
    }
    section[data-testid='stSidebar'] {
        height: 100%;
        min-width:95px !important;
        width: 95px !important;
        transform:translateX(0px);
        position: relative;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s ease;
        padding-top: 60px;
        white-space: nowrap;
    }
    section[data-testid='stSidebar']:hover{
        min-width: 330px !important;
        }
    button[kind="header"] {
        display: none;
    }
    div[data-testid="collapsedControl"]{
        display: none;
    }
}
 |