简体   繁体   中英

Django REST Framework: How do I change the color of top strip in Browsable UI

There is a few pixels wide strip at the very top of the Browsable UI. The default color for it is #A30000 . It's defined in a stylesheet bootstrap-tweaks.css for the element navbar-inner . I'd like to change the color of that strip, but I'm not sure how to do it.

What should I put in my api.html to modify the color? Thanks.

Here's what I added to my api.html:

{% block style %}

{{ block.super }}
<style>
.navbar .navbar-inner {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: none repeat scroll 0 0 #2C2C2C;
    border-color: ****MY_COLOR_HERE**** -moz-use-text-color -moz-use-text-color;
    border-image: none;
    border-radius: 0 0 0 0;
    border-right: medium none;
    border-style: solid none none;
    border-width: 5px medium medium;
    color: #FFFFFF;
    }
</style>

{% endblock %}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM