﻿/*
 * ------------------------------------------------------------------------------------------------
 * © Copyright 2012 SunGard K-12 Education, All Rights Reserved.
 * This program is PROPRIETARY and CONFIDENTIAL information of SunGard K-12 Education, and may not
 * be disclosed or used except as expressly authorized in a license agreement controlling such use
 * and disclosure.  Unauthorized use of this program will result in legal proceedings, civil
 * damages, and possible criminal prosecution.
 * ------------------------------------------------------------------------------------------------
 * System Name: Teacher Access Center
 * ------------------------------------------------------------------------------------------------
 * File Name: Toolbar.css
 * ------------------------------------------------------------------------------------------------
 * File Description:
 *   CSS settings for the generic toolbar. 
 * ------------------------------------------------------------------------------------------------
 */

/* ------------------------------------------------------------------------------------------------
Toolbar
    Placed at the top of pages it can hold many different buttons etc.
    SEE: TAC gradebook toolbar.
 ------------------------------------------------------------------------------------------------*/
/* class aplied to all containers for toolbars */
.sg-toolbar-container
{
    margin-top: 2px;
    height: 26px;       /* 30 height - 4 top margin */
}

/* adds 10px between items 5px for both sides */
.sg-toolbar-container > *
{
    margin-left:  5px;
    margin-right: 5px;
    vertical-align: middle;
}
.sg-toolbar-container > span
{
    display: inline-block;
}

.sg-toolbar-container > .sg-hidden
{
    display: none;
}
/* Makes sure all toolbar items display inline one after the other instead of stacked on top of one another */
.sg-toolbar-container .sg-toggle,
.sg-toolbar-container .sg-toolbar-label,
.sg-toolbar-container .sg-toolbar-button,
.sg-toolbar-container .sg-toolbar-icon
{
    display: inline-block;
}

.ui-dialog .sg-toolbar-container.sg-right
{
    margin-right: 25px;
    display: inline-block;
}

.ui-dialog .sg-toolbar-container label
{
    padding-top: 4px;
}

.sg-toolbar-label
{
    font-size: 1.1em;
    font-weight: normal;
    padding-top: 5px;
    padding-bottom: 5px;
}

.sg-toolbar-multi-line-text
{
    font-size: 12px;
}

.sg-toolbar-icon { position: relative;  height: 22px; width: 22px; margin-top: 2px; cursor: pointer;} 
.sg-toolbar-icon-disabled { filter: alpha(opacity=40); opacity: 0.4; cursor: default;}


.sg-toolbar-course-description
{
    vertical-align: bottom;
    display: inline-block;
    max-width: 150px;
}

/**********************************************************/
/* Toolbar Icon Selection List                            */
/* Ex. Gradebook Indicators, Show/Hide Withdrawn Students */
/**********************************************************/
.sg-toolbar-icon-list
{
    list-style-type: none;
    z-index: 9999;
    visibility: hidden;
    position: absolute;
    background-color: #000000;
    width: 26px;
    padding: 0px;
}

.sg-toolbar-icon-list li
{
    width: 26px;
    height: 26px;
    border-style: solid;
    border-width: 1px;
    border-color: #333333;
    cursor: pointer;
}

.sg-toolbar-icon-list .sg-toolbar-icon-list-selected
{
    background-color: #999999;
}
