mirror of
https://github.com/friendica/friendica
synced 2025-04-27 03:50:11 +00:00
add info() function. Works like notice() but show messages in a div with class info-message.
update code to use info() instead of notice() when appropriate (non-error message) add info-message class style in themes
This commit is contained in:
parent
3ea145fae7
commit
e1107b55c6
33 changed files with 123 additions and 75 deletions
|
@ -171,6 +171,18 @@ nav .nav-link {
|
|||
#home-update { background-position: -90px 0px; }
|
||||
|
||||
/** sysmsg **/
|
||||
#sysmsg_info{
|
||||
position:fixed;
|
||||
bottom: 0px; right:20%;
|
||||
-moz-box-shadow: 0px 0px 5px #888;
|
||||
-webkit-box-shadow: 0px 0px 5px #888;
|
||||
box-shadow: 0px 0px 5px #888;
|
||||
padding: 10px;
|
||||
background-color: #fcaf3e; border:2px solid #f8911b;
|
||||
border-bottom:0px;
|
||||
padding-bottom: 50px;
|
||||
z-index: 1000;
|
||||
}
|
||||
#sysmsg {
|
||||
position:fixed;
|
||||
bottom: 0px; right:10%;
|
||||
|
@ -183,12 +195,15 @@ nav .nav-link {
|
|||
padding-bottom: 50px;
|
||||
z-index: 1000;
|
||||
}
|
||||
#sysmsg_info br,
|
||||
#sysmsg br {
|
||||
display:block;
|
||||
margin:2px 0px;
|
||||
border-top: 1px solid #ccccce;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* aside
|
||||
**/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue