带有深色主题引导CSS的样式仪表板组件

时间:2019-05-31 22:08:42

标签: python twitter-bootstrap plotly-dash

下面有一个plotly dash应用程序的工作示例,该应用程序在选项卡上显示一个下拉列表,然后由于在该下拉列表中选择一个项目而显示警报。

#!/usr/bin/env python3
import dash
import dash_bootstrap_components as dbc
import dash_core_components as dcc
import dash_html_components as html
from dash.dependencies import Input, Output

app = dash.Dash('Example', external_stylesheets=[dbc.themes.DARKLY])
app.title = 'Example'
app.layout = dbc.Tabs([
    dbc.Tab(
        dbc.Card([
            dcc.Dropdown(id='dropdown',
                         options=[
                             { 'label': 'Item 1', 'value': 'foo' },
                             { 'label': 'Item 2', 'value': 'bar' },
                         ],
            ),
            html.Br(),
            html.Div(id='item-display'),
        ], body=True), label='Tab 1')
])

@app.callback(
    Output('item-display', 'children'),
    [Input('dropdown', 'value')]
)
def display_item(v):
    return dbc.Alert(f'You selected Item {value}', color='primary') if v else ''

if __name__ == '__main__':
    app.run_server(debug=True)

我正在使用bootswatch darkly theme

我遇到的问题是我不知道如何使用引导程序样式设置dash_core_components.Dropdown的样式。

从下图中可以看出,dash_bootstrap_components元素都是根据引导程序样式设置的,但是Dropdown不是,实际上,下拉时几乎不可能读起来很浅,是白色文本。

enter image description here enter image description here

在较暗的示例中,下拉列表如下:

enter image description here

将鼠标悬停在选项上时,背景为引导程序的“主要”颜色:

enter image description here

如何根据引导样式设置dcc.Dropdown的样式?

1 个答案:

答案 0 :(得分:1)

我注意到您提出了问题 on the Plotly forums as well,特别是 answer linked in one of the answers 可能包含一个有用的起点。我自己做的是对 this answer 稍作修改:添加一个 assets/dropdown.css,内容如下:

.Select-control {
    background-color: #222 !important;
}

.Select.is-focused > .Select-control {
    background-color: #222;
}

#school-input {
    color: white;
}

.Select-value-label {
    color: white;
}

.Select--single > .Select-control .Select-value, .Select-placeholder {
    border: 1px solid grey;
    border-radius: 4px;
}

.VirtualizedSelectOption {
    background-color: #222;
    color: white;
 }

.VirtualizedSelectFocusedOption {
    background-color: #222;
    opacity: .7;
}

.Select.is-focused:not(.is-open) > .Select-control {
    background-color: #222;
    border-color: var(--primary); 
    box-shadow: none;
}

结果如下: enter image description here