/*
WebView用CSS。以下を指定して有効化
$form['#attached']['library'][] = 'np1/webview-styling';
*/


/* パンくず非表示 */

nav.breadcrumb {
    display: none;
}


/* ヘッダー非表示 */

div.tfx-header-inner {
    display: none;
}


/* フッター非表示 */

.tfx-footer-inner {
    display: none;
}


/* WebViewで表示しない要素 */

.not-show-webview {
    display: none;
}


/* WebView用：クラウドストレージ容量バー背景色 */

div.progress {
    background: #ddd;
}


/* WebView用：クラウドストレージ容量バー色 */

.progress-bar {
    background: #b31d36;
}


/* WebView用：アクティブタブ文字色 */

.tfx-tab .nav-pills .nav-link.active {
    color: #b31d36;
}


/* WebView用：アクティブタブ文字色、背景色 */

.tfx-tab .nav-pills .nav-link.active {
    color: #b31d36;
    background: #fff;
}


/* WebView用：タブ背景色 */

.nav-pills .nav-link {
    background: #ddd;
}