123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- body {
- font-family : Arial, Helvetica, Sans-Serif;
- background-color: #8f949a;
- overflow:hidden;
- }
- a {
- cursor: pointer;
- }
- input[type="radio"], input[type="checkbox"] {
- margin: 0px 9px 0px 0px;
- vertical-align: bottom;
- }
- input {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- #maximizePanelContainer {
- font-size: 4px;
- position:absolute;
- left: 0px;
- top: 0px;
- width: 55px;
- height: 20px;
- overflow: visible;
- z-index: 1000;
- }
- #maximizePanelOver {
- position: absolute;
- left: 0px;
- top: 0px;
- width: 55px;
- height: 20px;
- }
- .maximizePanel {
- position: absolute;
- left: 0px;
- top: 0px;
- width: 55px;
- height: 20px;
- background: #a2a2a2 url('../images/expand.png') no-repeat center center;
- background: url('../images/expand.svg') no-repeat center center, linear-gradient(rgba(200,200,200,.5),rgba(200,200,200,.5));
- cursor: pointer;
- }
- #interfaceControlFrameMinimizeContainer {
- position:absolute;
- top: 0px;
- left: 0px;
- font-size: 2px; /*for IE*/
- text-align: right;
- z-index: 100;
- height: 20px;
- width: 55px;
- background-color: #62666b;
- }
- #interfaceControlFrameMinimizeContainer a {
- display: inline-block;
- width: 55px;
- height: 20px;
- font-size: 2px;
- background: url('../images/close.png') no-repeat center center;
- background: url('../images/close.svg') no-repeat center center, linear-gradient(transparent,transparent);
- text-decoration: none;
- }
- .hashover #interfaceControlFrameMinimizeContainer a:hover {
- background: url('../images/close_hover.png') no-repeat center center;
- background: url('../images/close_hover.svg') no-repeat center center, linear-gradient(transparent,transparent);
- }
- #interfaceControlFrame {
- margin: 0px 0px 0px 55px;
- }
- #interfaceControlFrameCloseContainer {
- /*display: none;*/
- position:absolute;
- bottom: 0px;
- left: 0px;
- font-size: 9px;
- font-family: 'Trebuchet MS';
- font-weight: bold;
- letter-spacing: 1px;
- z-index: 100;
- width: 55px;
- background-color: #62666b;
- text-align: center;
- }
- #interfaceControlFrameCloseContainer a {
- display: inline-block;
- width: 55px;
- color: #ffffff;
- padding: 5px 0px;
- }
- #interfaceControlFrameHeader li a {
- display: block;
- width: 54px;
- height: 78px;
- text-align: center;
- padding-top: 50px;
- outline: none;
- margin-right: 1px;
- text-decoration: none;
- color: #ffffff;
- white-space: nowrap;
- background-color: transparent;
- background-repeat: no-repeat;
- background-position: 50% 17px;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- border-left: 4px solid transparent;
- border-right: 4px solid transparent;
- }
- .hashover #interfaceControlFrameHeader li a:hover {
- background-color: transparent;
- background-repeat: no-repeat;
- background-position: 50% 17px;
- color: #c2c2c2;
- }
- #interfaceControlFrameHeader li a.selected, #interfaceControlFrameHeader li a.selected:hover {
- background-color: #f5f5f5;
- background-repeat: no-repeat;
- background-position: 50% 17px;
- color: #62666b;
- border-left: 5px solid #138CDD;
- }
- #interfaceControlFrameHeaderContainer {
- float: left;
- overflow: visible;
- width: 55px;
- margin-left: -55px;
- margin-top: 20px;
- }
- #interfaceControlFrameHeader {
- position: relative;
- list-style: none;
- font-size: 8px;
- z-index: 50;
- font-family: 'Trebuchet MS';
- font-weight: bold;
- letter-spacing: 1px;
- }
- #interfaceControlFrameContainer {
- float: right;
- background-color: #f5f5f5;
- overflow: hidden;
- width: 100%;
- }
- #interfaceControlFrameLogoContainer {
- background-color: White;
- padding: 20px 10px 10px 10px;
- overflow: hidden;
- }
- #interfaceControlFrameLogoImageContainer {
- text-align: center;
- }
- #interfaceControlFrameLogoCaptionContainer {
- text-align: center;
- margin: 5px 10px 0px 10px;
- font-size: 12px;
- color: #4a4a4a;
- }
- #logoImage {
- width: 100%;
- }
- .emptyStateContainer {
- text-align: center;
- padding: 0px 10px;
- margin-top: 32px
- }
- .emptyStateTitle {
- margin: 0px 0px 9px 0px;
- font-weight: bold;
- }
- .emptyStateContent {
- line-height: 16px;
- }
- .dottedDivider {
- height: 2px;
- margin: 15px 0px 15px 0px;
- background: url('../images/divider.png') no-repeat center center;
- background: url('../images/divider.svg') no-repeat center center, linear-gradient(transparent,transparent);
- }
- .nondottedDivider {
- height: 2px;
- margin: 9px 0px 9px 0px;
- }
|