/* 
    Document   : follow-user
    Created on : 2 déc. 2013, 10:13:23
    Author     : GMeot
    Description:
        Purpose of the stylesheet follows.
*/

/* --------------------- Style of links display in blog --------------------- */
#container_follow_link { /* for author page */
    position: absolute;
    left: 60%;
    top: 0;
}
#show_follow_link {
    background-image: linear-gradient(#FFFFFF, #F0F0F0);
    border-color: #D7D7D7;
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    width: 100%;
}
#div_arrow_down {
    background-color: #F5F5F5;
    background-image: linear-gradient(#FFFFFF, #F0F0F0);
    border: 1px solid #D7D7D7;
    border-radius: 0 0 5px 5px;
    border-top: 0;
    height: 10px;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 98%;
}
#div_arrow_down img {
    position: relative;
    top: -5px;
}

#followcontainer {
    border: 1px solid #D7D7D7;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    background-image: linear-gradient(#FFFFFF, #F0F0F0);
    padding: 10px;
    position: relative;
    text-align: center;
    display:none;
    z-index:998;
}


.entry-meta span button.link_follow { /* for blog page : photo, video */
    margin-left: 20px;
}
button.link_follow { /* button Follow/Unfollow */
    font-size: xx-small;
    padding: 0 10px;
}

button.link_send_follow_demand { /* button Send/Cancel following demand */
    font-size: xx-small;
    padding: 0 10px;
}

/* --------------------- Style of header box : waiting following demand --------------------- */
#notif_follow_container { /* div which contains header and box */
    position: absolute;
    left: 100%;
    margin-left: 20px;
}

#notif_follow_container div#follow_box_header { /* div header display in top right */
    background-color: #F5F5F5;
    background-image: linear-gradient(#F9F9F9, #F0F0F0);
    border: 1px solid #D7D7D7;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
    cursor: pointer;
    display: inline-block;
    font: bold 13px/19px sans-serif;
    color: #FF0000;
    padding: 4px 10px;
    position: relative;
    text-align: center;
}
#notif_follow_container div#follow_box_header span {
    color: #000000;
    font: 10px sans-serif;
    display: none;
}
#notif_follow_container:hover div#follow_box_header{ /* on mouse over */
    z-index:999;
    background: none repeat scroll 0 0 #F7F7F7;
    border-color: #D7D7D7 #D7D7D7 -moz-use-text-color;
    border-bottom: none;
    width: auto;
    white-space: nowrap;
}

#acceptfollowbox { /* box of following demand details (not display by default) */
    position: relative;
    left: -10px;
    top: -12px;
    display: none;
    padding: 10px;
    text-align: center;
    z-index: 998;
}
#acceptfollowbox ul {
    padding: 5px 0;
    background: none repeat scroll 0 0 #F7F7F7;
    border: 1px solid #CCCCCC;
    border-radius: 3px 0 3px 3px;
}
#acceptfollowbox li { /* For each demand */
    border-bottom: 1px solid #E7E7E7;
    border-top: 1px solid #FFFFFF;
    padding: 2px 20px;
    min-width: 160px
}
#acceptfollowbox li button {
    float:right;
    padding: 0;
}
#acceptfollowbox li:first-child {
    border-top: 0 none;
}
#acceptfollowbox li:last-child {
    border-bottom:0;
}

/* --------------------- Style of error div : print error message --------------------- */
.divErrorContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 25%;
}
.divError {
    padding: 10px;
    text-align: center;
    width: 50%;
    background: rgba(238, 238, 238, 1);
    border: 1px solid #000000;
    border-radius: 20px;
}
.divError button {
    float: right;
    margin-top: 20px;
}