BIEE登录界面的登录框的背景颜色有人知道在哪设置么

0
QQ图片20150820115105.png

BIEE登录界面的登录框的背景颜色有人知道在哪设置么
已邀请:
4

happy_cangcang - 80后 2015-08-21 回答

背景色是在sk_blafp(或者是sk_Fusionfx)/login/login.css里面的。你用F12键就可以看到是哪个文件了。我的是自己定义的,所以在my_skin下面。看你的实际情况来定。
.stylenormal {
    margin-top: 170px;
    margin-left: 170px;
    font-family: tahoma,verdana,geneva,arial,helvetica,sans-serif;
    font-size: 11px;
    font-weight: normal;
    color: #000;--此处是背景色
}

但是登录框除了背景色之外,还有四个白色的边框,分别是通过4个图片来控制的。也是在login.css里面。可能还是有其他的,自己用F12看下就知道了。
.rightmiddle {
    background-image: url("rightmidmedium.png");
    background-position: right center;
    background-repeat: repeat-y;
}
.leftmiddle {
    background-image: url("leftmidmedium.png");
    background-position: left center;
    background-repeat: repeat-y;
}
.bottommiddle {
    background-image: url("bottommidmedium.png");
    background-position: center bottom;
    background-repeat: repeat-x;
}
.topmiddle {
    width: 100%;
    background-image: url("topmidmedium.png");
    background-position: center top;
    background-repeat: repeat-x;
}
1

百分百 - BIEE独立顾问、零售行业 2015-08-23 回答

关于界面调整的,建议都多用下浏览器的本身功能,F12还是超级有用的。

要回复问题请先登录注册