Spaces:
Paused
Paused
| /* Left panel background */ | |
| .dash-bootstrap .dbc-col:first-child, | |
| .dash-bootstrap .dbc-col:nth-child(1), | |
| .dash-bootstrap .dbc-row > .col-3, | |
| .dash-bootstrap .dbc-row > [class*="col-3"] { | |
| background-color: #F5F5F5 ; | |
| } | |
| /* Left panel text: bold, left-aligned, no underline */ | |
| .dash-bootstrap .dbc-col:first-child, | |
| .dash-bootstrap .dbc-col:nth-child(1), | |
| .dash-bootstrap .dbc-row > .col-3, | |
| .dash-bootstrap .dbc-row > [class*="col-3"] { | |
| font-weight: bold ; | |
| text-align: left ; | |
| } | |
| .dash-bootstrap .dbc-col:first-child a, | |
| .dash-bootstrap .dbc-col:nth-child(1) a, | |
| .dash-bootstrap .dbc-row > .col-3 a, | |
| .dash-bootstrap .dbc-row > [class*="col-3"] a { | |
| text-decoration: none ; | |
| font-weight: bold ; | |
| color: inherit ; | |
| text-align: left ; | |
| } | |
| /* Remove underline from all left panel clickable items */ | |
| .custom-button, | |
| .custom-button a { | |
| text-decoration: none ; | |
| font-weight: bold ; | |
| color: inherit ; | |
| background: transparent ; | |
| border: none ; | |
| text-align: left ; | |
| box-shadow: none ; | |
| width: 100% ; | |
| display: block ; | |
| cursor: pointer; | |
| outline: none ; | |
| transition: background 0.2s; | |
| } | |
| /* Light color on hover for left panel clickable items */ | |
| .custom-button:hover, | |
| .custom-button:focus, | |
| .custom-button:active { | |
| background-color: #E0E0E0 ; | |
| color: inherit ; | |
| text-decoration: none ; | |
| } | |
| /* Remove underline from all links in left panel */ | |
| .dash-bootstrap .dbc-col:first-child a, | |
| .dash-bootstrap .dbc-col:nth-child(1) a, | |
| .dash-bootstrap .dbc-row > .col-3 a, | |
| .dash-bootstrap .dbc-row > [class*="col-3"] a { | |
| text-decoration: none ; | |
| } | |
| /* Button color rules */ | |
| .btn-primary { | |
| background-color: #1C304A; | |
| border-color: #1C304A; | |
| } | |
| .btn-primary:hover { | |
| background-color: #116F70; | |
| border-color: #116F70; | |
| } | |
| .btn-secondary { | |
| background-color: #116F70; | |
| border-color: #116F70; | |
| } | |
| .btn-secondary:hover { | |
| background-color: #00AEAF; | |
| border-color: #00AEAF; | |
| } | |
| .btn-tertiary { | |
| background-color: #E0E0E0; | |
| border-color: #E0E0E0; | |
| color: #1C304A; | |
| } | |
| .btn-tertiary:hover { | |
| background-color: #DEF4F4; | |
| border-color: #DEF4F4; | |
| color: #1C304A; | |
| } | |
| /* Ensure word wrap for any text boxes */ | |
| textarea, | |
| input[type="text"], | |
| input[type="search"] { | |
| white-space: pre-wrap ; | |
| word-break: break-word ; | |
| overflow-wrap: break-word ; | |
| } |