1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
/**
* Reset styles
*/
#PIS_StatusBar,
#PIS_StatusBar .PIS_Item,
#PIS_StatusBar .PIS_Loading,
.PIS_LinkTag,
.PIS_LinkHighlightBoxTop,
.PIS_LinkHighlightBoxRight,
.PIS_LinkHighlightBoxLeft,
.PIS_LinkHighlightBoxText {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: normal;
font-style: normal;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
vertical-align: baseline;
line-height: 1.4em;
text-indent: 0;
text-decoration: none;
text-transform: none;
cursor: default;
text-align: left;
float: none;
color: #333;
}
/**
* Link Tags
*/
.PIS_LinkTag {
position: absolute;
top: 0;
left: 0;
z-index: 999999;
width: 36px;
height: 21px;
text-align: left;
background: url(./linktags_lessshadow.png) no-repeat 0 -21px;
overflow: hidden;
transform-origin: 100% 50%;
transition: 0.2s ease-in-out;
}
.PIS_LinkTag span {
position: absolute;
width: 31px;
height: 14px;
font-size: 10px;
text-align: center;
font-weight: bold;
line-height: 14px;
margin-left: 1px;
}
.PIS_LinkTag.PIS_Highlighted {
z-index: 1000002;
}
.PIS_LinkTag.PIS_Highlighted span {
color: #E87500;
}
.PIS_LinkTag.PIS_Right {
background-position: -36px -21px;
transform-origin: 0% 50%;
}
.PIS_LinkTag.PIS_Right span,
.PIS_LinkTag.PIS_BottomRight span {
margin-left: 5px;
}
.PIS_LinkTag.PIS_Bottom {
background-position: 0 0;
transform-origin: 100% 50%;
}
.PIS_LinkTag.PIS_Bottom span,
.PIS_LinkTag.PIS_BottomRight span {
margin-top: 4px;
}
.PIS_LinkTag.PIS_BottomRight {
background-position: -36px 0;
transform-origin: 0% 50%;
}
/**
* Link Highlights
*/
.PIS_LinkHighlightBoxTop,
.PIS_LinkHighlightBoxRight,
.PIS_LinkHighlightBoxText,
.PIS_LinkHighlightBoxLeft {
position: absolute;
z-index: 1000001;
overflow: hidden;
width: 2px;
height: 2px;
background: #E87500;
}
.PIS_LinkHighlightBoxText {
line-height: 20px;
height: 20px;
font-size: 11px;
color: white;
width: auto;
}
/**
* Status bar
*/
#PIS_StatusBar {
padding: 10px 0;
position: fixed;
z-index: 1000020;
bottom: 0;
right: 0;
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
background: #fbfbfb;
border-radius: 6px 0 0;
}
#PIS_StatusBar .PIS_Item {
text-align: right;
padding: 3px 5px 0 0;
margin: 0 15px 0 20px;
font-weight: bold;
}
#PIS_StatusBar .PIS_Loading {
background: url(./loading.gif) no-repeat right center;
padding-right: 30px;
}
|