pycturesの作業中メッセージを変更してみる

文字列のほうは、templates/header.htmlを変えるだけ。

<div id="loading" class="loading" style="display: none">
  <img src="static/images/loading.gif" alt="Now Working..."/>
  Now Working...
</div>

表示位置が右上になるのだけど、なんかどうにも気が付きにくい。
真ん中にもってきたい。
static/style.cssをちと変更。

div.loading {
        position: fixed;
        height:20px;
        width:120px;
        left: 50%;
        top: 50%;
        margin-top:-10px;
        margin-left:-60px;
        padding: 3pt;
        border: 5px outset red;
        background: #FDD;
        color: red;
}

なんか美しくないけどな...