2012-04-09 17:52:43 +02:00
|
|
|
*,
|
|
|
|
html,
|
|
|
|
body,
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.clear {
|
|
|
|
clear: both
|
|
|
|
}
|
|
|
|
html {
|
|
|
|
font-size: 62.5%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
body,
|
|
|
|
textarea {
|
|
|
|
font-family: Helvetica, Arial, sans-serif
|
|
|
|
}
|
|
|
|
iframe {
|
|
|
|
position: absolute
|
|
|
|
}
|
|
|
|
#users {
|
2011-04-07 20:45:28 +02:00
|
|
|
position: absolute;
|
2012-04-09 17:52:43 +02:00
|
|
|
z-index: 500;
|
2011-04-08 12:20:26 +02:00
|
|
|
background-color: #000;
|
2011-04-07 20:45:28 +02:00
|
|
|
background-color: rgba(0,0,0,0.7);
|
|
|
|
width: 160px;
|
2011-07-19 03:06:54 +02:00
|
|
|
right: 20px;
|
2011-04-07 20:45:28 +02:00
|
|
|
top: 40px;
|
|
|
|
color: #fff;
|
|
|
|
padding: 5px;
|
2012-04-09 17:52:43 +02:00
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
-moz-border-radius: 6px;
|
|
|
|
border-radius: 6px;
|
2011-04-07 20:45:28 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#otherusers {
|
2012-04-08 16:22:00 +02:00
|
|
|
max-height: 400px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
a img {
|
|
|
|
border: 0
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
|
|
|
/* menu */
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbar ul {
|
2011-04-07 17:56:33 +02:00
|
|
|
position: relative;
|
|
|
|
list-style: none;
|
|
|
|
padding-right: 3px;
|
|
|
|
padding-left: 1px;
|
|
|
|
z-index: 2;
|
2011-08-16 22:44:43 +02:00
|
|
|
overflow: hidden;
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbar {
|
2011-08-16 22:40:07 +02:00
|
|
|
background: #f7f7f7;
|
2012-04-09 17:52:43 +02:00
|
|
|
background: -webkit-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -moz-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -o-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -ms-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
2012-02-04 18:08:04 +01:00
|
|
|
background: linear-gradient(#f7f7f7, #f1f1f1 80%);
|
2011-04-10 13:13:01 +02:00
|
|
|
border-bottom: 1px solid #ccc;
|
2011-04-07 17:56:33 +02:00
|
|
|
overflow: hidden;
|
2011-08-16 22:40:07 +02:00
|
|
|
padding-top: 3px;
|
|
|
|
width: 100%;
|
2012-03-25 00:29:03 +01:00
|
|
|
white-space: nowrap;
|
2012-03-28 19:20:07 +02:00
|
|
|
height: 32px;
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbar ul li {
|
2011-08-16 22:40:07 +02:00
|
|
|
background: #fff;
|
2012-04-09 17:52:43 +02:00
|
|
|
background: -webkit-linear-gradient(#fff, #f0f0f0);
|
|
|
|
background: -moz-linear-gradient(#fff, #f0f0f0);
|
|
|
|
background: -o-linear-gradient(#fff, #f0f0f0);
|
|
|
|
background: -ms-linear-gradient(#fff, #f0f0f0);
|
2012-02-04 18:08:04 +01:00
|
|
|
background: linear-gradient(#fff, #f0f0f0);
|
2011-08-16 22:40:07 +02:00
|
|
|
border: 1px solid #ccc;
|
2012-04-09 17:52:43 +02:00
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
-moz-border-radius: 4px;
|
2011-08-16 22:40:07 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
2011-04-07 17:56:33 +02:00
|
|
|
float: left;
|
2011-08-16 22:40:07 +02:00
|
|
|
height: 18px;
|
2011-04-07 17:56:33 +02:00
|
|
|
margin-left: 2px;
|
2011-08-16 22:40:07 +02:00
|
|
|
overflow: hidden;
|
2011-04-07 20:45:28 +02:00
|
|
|
padding: 4px 5px;
|
2011-08-10 18:19:23 +02:00
|
|
|
width: 18px;
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-03-28 19:20:07 +02:00
|
|
|
.toolbar ul li:hover {
|
2011-04-07 17:56:33 +02:00
|
|
|
background: #fff;
|
2012-04-09 17:52:43 +02:00
|
|
|
background: -webkit-linear-gradient(#f4f4f4, #e4e4e4);
|
|
|
|
background: -moz-linear-gradient(#f4f4f4, #e4e4e4);
|
|
|
|
background: -o-linear-gradient(#f4f4f4, #e4e4e4);
|
|
|
|
background: -ms-linear-gradient(#f4f4f4, #e4e4e4);
|
2012-02-27 22:29:21 +01:00
|
|
|
background: linear-gradient(#f4f4f4, #e4e4e4);
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-03-28 19:20:07 +02:00
|
|
|
.toolbar ul li:active {
|
2011-08-16 22:40:07 +02:00
|
|
|
background: #eee;
|
2012-04-09 17:52:43 +02:00
|
|
|
background: -webkit-linear-gradient(#ddd, #fff);
|
|
|
|
background: -moz-linear-gradient(#ddd, #fff);
|
|
|
|
background: -o-linear-gradient(#ddd, #fff);
|
|
|
|
background: -ms-linear-gradient(#ddd, #fff);
|
2012-02-04 18:08:04 +01:00
|
|
|
background: linear-gradient(#ddd, #fff);
|
2012-04-09 17:52:43 +02:00
|
|
|
-webkit-box-shadow: 0 0 8px rgba(0,0,0,.1) inset;
|
|
|
|
-moz-box-shadow: 0 0 8px rgba(0,0,0,.1) inset;
|
2012-02-27 22:29:21 +01:00
|
|
|
box-shadow: 0 0 8px rgba(0,0,0,.1) inset;
|
2011-08-16 22:40:07 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbar ul li.separator {
|
2011-04-07 17:56:33 +02:00
|
|
|
border: inherit;
|
|
|
|
background: inherit;
|
2012-04-09 17:52:43 +02:00
|
|
|
visibility: hidden;
|
2011-08-10 18:19:23 +02:00
|
|
|
width: 0px;
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbar ul li a {
|
2012-03-01 01:37:21 +01:00
|
|
|
text-decoration: none;
|
|
|
|
color: #ccc;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.toolbar ul li a .buttonicon {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbar ul {
|
|
|
|
float: left
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbar ul.menu_right {
|
|
|
|
float: right
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#users {
|
|
|
|
display: none
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#editorcontainer {
|
2011-04-07 17:56:33 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
top: 36px;
|
2012-04-09 17:52:43 +02:00
|
|
|
left: 0px;
|
2011-04-07 17:56:33 +02:00
|
|
|
bottom: 0px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
#editorcontainer iframe {
|
|
|
|
height: 100%;
|
2012-04-09 17:52:43 +02:00
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#editorloadingbox {
|
|
|
|
padding-top: 100px;
|
|
|
|
padding-bottom: 100px;
|
|
|
|
font-size: 2.5em;
|
|
|
|
color: #aaa;
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 30px;
|
|
|
|
z-index: 100;
|
2011-04-07 17:56:33 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#editorcontainerbox {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2011-07-12 17:11:40 +02:00
|
|
|
}
|
2011-03-26 14:54:03 +01:00
|
|
|
#padpage {
|
2012-04-09 17:52:43 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 100%;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.maximized #padpage {
|
2012-04-09 17:52:43 +02:00
|
|
|
left: 8px;
|
|
|
|
right: 8px;
|
|
|
|
width: auto;
|
|
|
|
margin-left: 0;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
body.fullwidth #padpage {
|
|
|
|
width: auto;
|
|
|
|
margin-left: 6px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
body.squish1width #padpage {
|
|
|
|
width: 800px
|
|
|
|
}
|
|
|
|
body.squish2width #padpage {
|
|
|
|
width: 700px
|
|
|
|
}
|
|
|
|
a#backtoprosite,
|
|
|
|
#accountnav {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 15px;
|
|
|
|
line-height: 15px;
|
|
|
|
width: auto;
|
|
|
|
top: 5px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
a#backtoprosite,
|
|
|
|
#accountnav a {
|
|
|
|
color: #cde7ff;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
a#backtoprosite {
|
|
|
|
padding-left: 20px;
|
|
|
|
left: 6px;
|
|
|
|
background: url(static/img/protop.gif) no-repeat -5px -6px;
|
|
|
|
}
|
|
|
|
#accountnav {
|
|
|
|
right: 30px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
#specialkeyarea {
|
|
|
|
top: 5px;
|
|
|
|
left: 250px;
|
|
|
|
color: yellow;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.5em;
|
|
|
|
position: absolute;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
#alertbar {
|
|
|
|
margin-top: 6px;
|
2012-04-09 17:52:43 +02:00
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
|
|
filter: alpha(opacity=0);
|
2011-03-26 14:54:03 +01:00
|
|
|
opacity: 0;
|
|
|
|
display: none;
|
2012-04-09 17:52:43 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 53;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#servermsg {
|
|
|
|
position: relative;
|
|
|
|
zoom: 1;
|
|
|
|
border: 1px solid #992;
|
|
|
|
background: #ffc;
|
|
|
|
padding: 0.8em;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
#servermsg h3 {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
float: left;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
#servermsg #servermsgdate {
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
a#hidetopmsg {
|
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
|
|
|
bottom: 5px;
|
|
|
|
}
|
|
|
|
#shuttingdown {
|
|
|
|
position: relative;
|
|
|
|
zoom: 1;
|
|
|
|
border: 1px solid #992;
|
|
|
|
background: #ffc;
|
|
|
|
padding: 0.6em;
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
#docbar {
|
|
|
|
margin-top: 6px;
|
|
|
|
height: 25px;
|
|
|
|
position: relative;
|
|
|
|
zoom: 1;
|
|
|
|
background: #fbfbfb url(static/img/padtopback2.gif) repeat-x 0 -31px;
|
|
|
|
}
|
|
|
|
.docbarbutton {
|
2011-03-26 14:54:03 +01:00
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
padding-left: 4px;
|
|
|
|
padding-right: 4px;
|
|
|
|
border-left: 1px solid #CCC;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.docbarbutton img {
|
2011-03-26 14:54:03 +01:00
|
|
|
border: 0px;
|
|
|
|
width: 13px;
|
|
|
|
margin-right: 2px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-top: 3px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
.menu,
|
|
|
|
.menu ul {
|
|
|
|
font-size: 10pt;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
.menu ul {
|
2012-04-09 17:52:43 +02:00
|
|
|
padding-left: 20px
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.menu a {
|
|
|
|
font-size: 10px;
|
|
|
|
line-height: 18px;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #444;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.docbarbutton.highlight {
|
2011-03-26 14:54:03 +01:00
|
|
|
background-color: #fef2bd;
|
|
|
|
border: 1px solid #CCC;
|
|
|
|
border-right: 0px;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#docbarleft {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
2011-03-26 14:54:03 +01:00
|
|
|
overflow: hidden;
|
2012-04-09 17:52:43 +02:00
|
|
|
background: url(static/img/padtop5.gif) no-repeat left -31px;
|
|
|
|
width: 7px;
|
|
|
|
}
|
|
|
|
#docbarpadtitle {
|
|
|
|
position: absolute;
|
|
|
|
height: auto;
|
|
|
|
left: 9px;
|
|
|
|
width: 280px;
|
|
|
|
font-size: 1.6em;
|
|
|
|
color: #444;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 22px;
|
|
|
|
margin-left: 2px;
|
|
|
|
height: 22px;
|
|
|
|
top: 2px;
|
|
|
|
overflow: hidden; /*not supported in FF*/
|
|
|
|
-o-text-overflow: ellipsis;
|
|
|
|
-ms-text-overflow: ellipsis;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.docbar-public #docbarpadtitle {
|
|
|
|
padding-left: 22px;
|
|
|
|
background: url(static/img/public.gif) no-repeat left center;
|
|
|
|
}
|
|
|
|
#docbarrenamelink {
|
|
|
|
position: absolute;
|
|
|
|
top: 6px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#docbarrenamelink a {
|
|
|
|
color: #999
|
|
|
|
}
|
|
|
|
#docbarrenamelink a:hover {
|
|
|
|
color: #48d
|
|
|
|
}
|
|
|
|
#padtitlebuttons {
|
|
|
|
position: absolute;
|
|
|
|
width: 74px;
|
|
|
|
zoom: 1;
|
|
|
|
height: 17px;
|
|
|
|
top: 4px;
|
|
|
|
left: 170px;
|
|
|
|
display: none;
|
|
|
|
background: url(static/img/ok_or_cancel.gif) 0px 0px;
|
|
|
|
}
|
|
|
|
#padtitlesave {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
height: 0;
|
|
|
|
padding-top: 17px;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 23px;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
#padtitlecancel {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
height: 0;
|
|
|
|
padding-top: 17px;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 35px;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
#padtitleedit {
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 5px;
|
|
|
|
height: 15px;
|
|
|
|
padding: 2px;
|
|
|
|
font-size: 1.4em;
|
|
|
|
background: white;
|
|
|
|
border-left: 1px solid #c3c3c3;
|
2011-03-26 14:54:03 +01:00
|
|
|
border-top: 1px solid #c3c3c3;
|
2012-04-09 17:52:43 +02:00
|
|
|
border-right: 1px solid #e6e6e6;
|
|
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
width: 150px;
|
|
|
|
display: none;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
#padmain {
|
2011-03-26 15:01:13 +01:00
|
|
|
margin-top: 0px;
|
2011-03-26 14:54:03 +01:00
|
|
|
position: absolute;
|
2011-06-21 16:08:36 +02:00
|
|
|
top: 63px !important;
|
2011-03-26 14:54:03 +01:00
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
zoom: 1;
|
|
|
|
}
|
|
|
|
#padeditor {
|
2012-04-09 17:52:43 +02:00
|
|
|
bottom: 0px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 0;
|
2011-03-26 14:54:03 +01:00
|
|
|
zoom: 1;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.hidesidebar #padeditor {
|
|
|
|
right: 0
|
|
|
|
}
|
2011-03-26 14:54:03 +01:00
|
|
|
#vdraggie {
|
2012-04-09 17:52:43 +02:00
|
|
|
/* background: url(static/img/vdraggie.gif) no-repeat top center;;*/
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
background-image: url('../../static/img/etherpad_lite_icons.png');
|
2011-07-31 21:16:59 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0px -300px;
|
2011-03-26 14:54:03 +01:00
|
|
|
cursor: W-resize;
|
2012-04-09 17:52:43 +02:00
|
|
|
bottom: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 268px;
|
|
|
|
top: 0;
|
|
|
|
width: 56px;
|
2011-03-26 14:54:03 +01:00
|
|
|
z-index: 10;
|
2012-02-29 23:39:01 +01:00
|
|
|
display: inline-block;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbarsavetable {
|
|
|
|
position: absolute;
|
2011-03-26 14:54:03 +01:00
|
|
|
top: 6px;
|
2011-03-26 15:03:25 +01:00
|
|
|
right: 8px;
|
2011-03-26 14:54:03 +01:00
|
|
|
height: 24px;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.toolbarsavetable td,
|
|
|
|
.toolbartable td {
|
|
|
|
white-space: nowrap
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#myswatchbox {
|
|
|
|
position: absolute;
|
|
|
|
left: 5px;
|
|
|
|
top: 5px;
|
2011-08-21 08:45:05 +02:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
border: 1px solid #000;
|
2012-04-09 17:52:43 +02:00
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#myswatch {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: transparent; /*...initially*/
|
2011-08-21 08:45:05 +02:00
|
|
|
}
|
2011-03-26 14:54:03 +01:00
|
|
|
#mycolorpicker {
|
2012-04-09 17:52:43 +02:00
|
|
|
width: 232px;
|
|
|
|
height: 265px;
|
2011-03-26 14:54:03 +01:00
|
|
|
position: absolute;
|
2012-04-09 17:52:43 +02:00
|
|
|
left: -250px;
|
|
|
|
top: 0px;
|
|
|
|
z-index: 101;
|
2011-08-21 08:45:05 +02:00
|
|
|
display: none;
|
2012-04-09 17:52:43 +02:00
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
2011-08-16 22:29:51 +02:00
|
|
|
border-radius: 5px;
|
2012-04-09 17:52:43 +02:00
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-top: 10px;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
2011-08-20 19:22:10 +02:00
|
|
|
/*
|
2011-04-07 20:45:28 +02:00
|
|
|
#mycolorpicker ul li
|
2012-04-09 17:52:43 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
float: left;
|
|
|
|
|
2011-04-07 20:45:28 +02:00
|
|
|
}
|
2011-04-06 22:36:20 +02:00
|
|
|
|
2012-04-09 17:52:43 +02:00
|
|
|
#mycolorpicker .picked {
|
|
|
|
border: 1px solid #000 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#mycolorpicker .picked .pickerswatch {
|
|
|
|
border: 1px solid #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
#mycolorpickersave {
|
|
|
|
left: 10px;
|
2011-08-21 08:45:05 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#mycolorpickercancel {
|
|
|
|
left: 85px
|
2011-08-21 08:45:05 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#mycolorpickersave,
|
|
|
|
#mycolorpickercancel {
|
2011-08-21 08:45:05 +02:00
|
|
|
background: #fff;
|
2012-04-09 17:52:43 +02:00
|
|
|
background: -webkit-linear-gradient(#fff, #ccc);
|
|
|
|
background: -moz-linear-gradient(#fff, #ccc);
|
|
|
|
background: -o-linear-gradient(#fff, #ccc);
|
|
|
|
background: -ms-linear-gradient(#fff, #ccc);
|
2012-02-04 18:08:04 +01:00
|
|
|
background: linear-gradient(#fff, #ccc);
|
2011-08-21 08:45:05 +02:00
|
|
|
border: 1px solid #ccc;
|
2012-04-09 17:52:43 +02:00
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
-moz-border-radius: 4px;
|
2011-08-21 08:45:05 +02:00
|
|
|
border-radius: 4px;
|
2012-04-09 17:52:43 +02:00
|
|
|
font-size: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #000;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 4px;
|
2011-08-21 08:45:05 +02:00
|
|
|
top: 240px;
|
2012-04-09 17:52:43 +02:00
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
width: 60px;
|
2011-08-21 08:45:05 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#mycolorpickerpreview {
|
|
|
|
position: absolute;
|
|
|
|
left: 207px;
|
|
|
|
top: 240px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
padding: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
color: #fff;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
2011-08-21 08:45:05 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#myusernameform {
|
|
|
|
margin-left: 35px
|
|
|
|
}
|
|
|
|
#myusernameedit {
|
|
|
|
font-size: 1.3em;
|
|
|
|
color: #fff;
|
|
|
|
padding: 3px;
|
|
|
|
height: 18px;
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
width: 117px;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
#myusernameform input.editable {
|
|
|
|
border: 1px solid #444
|
|
|
|
}
|
|
|
|
#myuser .myusernameedithoverable:hover {
|
|
|
|
background: white;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
#mystatusform {
|
|
|
|
margin-left: 35px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
#mystatusedit {
|
|
|
|
font-size: 1.2em;
|
|
|
|
color: #777;
|
|
|
|
font-style: italic;
|
|
|
|
display: none;
|
|
|
|
padding: 2px;
|
|
|
|
height: 14px;
|
|
|
|
margin: 0;
|
|
|
|
border: 1px solid #bbb;
|
|
|
|
width: 199px;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
#myusernameform .editactive,
|
|
|
|
#myusernameform .editempty {
|
|
|
|
background: white;
|
|
|
|
border-left: 1px solid #c3c3c3;
|
2011-03-26 14:54:03 +01:00
|
|
|
border-top: 1px solid #c3c3c3;
|
2012-04-09 17:52:43 +02:00
|
|
|
border-right: 1px solid #e6e6e6;
|
|
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
#myusernameform .editempty {
|
|
|
|
color: #333
|
|
|
|
}
|
|
|
|
table#otheruserstable {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
#nootherusers {
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
color: #eee;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
#nootherusers a {
|
|
|
|
color: #3C88FF
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
#otheruserstable td {
|
|
|
|
height: 26px;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 0 2px;
|
2011-04-07 20:45:28 +02:00
|
|
|
color: #fff;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
#otheruserstable .swatch {
|
2012-04-09 17:52:43 +02:00
|
|
|
border: 1px solid #000;
|
|
|
|
width: 13px;
|
|
|
|
height: 13px;
|
|
|
|
overflow: hidden;
|
2011-03-26 14:54:03 +01:00
|
|
|
margin: 0 4px;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.usertdswatch {
|
|
|
|
width: 1%
|
|
|
|
}
|
|
|
|
.usertdname {
|
|
|
|
font-size: 1.3em;
|
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
.usertdstatus {
|
|
|
|
font-size: 1.1em;
|
|
|
|
font-style: italic;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
.usertdactivity {
|
|
|
|
font-size: 1.1em;
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
.usertdname input {
|
|
|
|
border: 1px solid #bbb;
|
|
|
|
width: 80px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
.usertdname input.editactive,
|
|
|
|
.usertdname input.editempty {
|
|
|
|
background: white;
|
|
|
|
border-left: 1px solid #c3c3c3;
|
2011-03-26 14:54:03 +01:00
|
|
|
border-top: 1px solid #c3c3c3;
|
2012-04-09 17:52:43 +02:00
|
|
|
border-right: 1px solid #e6e6e6;
|
|
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
}
|
|
|
|
.usertdname input.editempty {
|
|
|
|
color: #888;
|
|
|
|
font-style: italic;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.modaldialog.cboxreconnecting .modaldialog-inner,
|
|
|
|
.modaldialog.cboxconnecting .modaldialog-inner {
|
2011-11-26 00:24:10 +01:00
|
|
|
background: url(../../static/img/connectingbar.gif) no-repeat center 60px;
|
2011-03-26 14:54:03 +01:00
|
|
|
height: 100px;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.modaldialog.cboxreconnecting,
|
2011-03-26 14:54:03 +01:00
|
|
|
.modaldialog.cboxconnecting,
|
|
|
|
.modaldialog.cboxdisconnected {
|
2012-04-09 17:52:43 +02:00
|
|
|
background: #8FCDE0
|
|
|
|
}
|
|
|
|
.cboxdisconnected #connectionboxinner div {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
.cboxdisconnected_userdup #connectionboxinner #disconnected_userdup {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected_deleted #connectionboxinner #disconnected_deleted {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected_initsocketfail #connectionboxinner #disconnected_initsocketfail {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected_looping #connectionboxinner #disconnected_looping {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected_slowcommit #connectionboxinner #disconnected_slowcommit {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected_unauth #connectionboxinner #disconnected_unauth {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected_unknown #connectionboxinner #disconnected_unknown {
|
|
|
|
display: block
|
|
|
|
}
|
2011-03-26 14:54:03 +01:00
|
|
|
.cboxdisconnected_initsocketfail #connectionboxinner #reconnect_advise,
|
|
|
|
.cboxdisconnected_looping #connectionboxinner #reconnect_advise,
|
|
|
|
.cboxdisconnected_slowcommit #connectionboxinner #reconnect_advise,
|
2012-04-09 17:52:43 +02:00
|
|
|
.cboxdisconnected_unknown #connectionboxinner #reconnect_advise {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected div#reconnect_form {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected .disconnected h2 {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
.cboxdisconnected .disconnected .h2_disconnect {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected_userdup .disconnected h2.h2_disconnect {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
.cboxdisconnected_userdup .disconnected h2.h2_userdup {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.cboxdisconnected_unauth .disconnected h2.h2_disconnect {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
.cboxdisconnected_unauth .disconnected h2.h2_unauth {
|
|
|
|
display: block
|
|
|
|
}
|
2011-03-26 14:54:03 +01:00
|
|
|
#connectionstatus {
|
2012-04-09 17:52:43 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 37px;
|
|
|
|
height: 41px;
|
|
|
|
overflow: hidden;
|
2011-03-26 14:54:03 +01:00
|
|
|
right: 0;
|
|
|
|
z-index: 11;
|
|
|
|
}
|
|
|
|
#connectionboxinner .connecting {
|
|
|
|
margin-top: 20px;
|
2012-04-09 17:52:43 +02:00
|
|
|
font-size: 2.0em;
|
|
|
|
color: #555;
|
|
|
|
text-align: center;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.cboxconnecting #connectionboxinner .connecting {
|
|
|
|
display: block
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
#connectionboxinner .disconnected h2 {
|
2012-04-09 17:52:43 +02:00
|
|
|
font-size: 1.8em;
|
|
|
|
color: #333;
|
2011-03-26 14:54:03 +01:00
|
|
|
text-align: left;
|
2012-04-09 17:52:43 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
2011-03-26 14:54:03 +01:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
#connectionboxinner .disconnected p {
|
|
|
|
margin: 10px 10px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
line-height: 1.1;
|
|
|
|
color: #333;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#connectionboxinner .disconnected {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
.cboxdisconnected #connectionboxinner .disconnected {
|
|
|
|
display: block
|
|
|
|
}
|
2011-03-26 14:54:03 +01:00
|
|
|
#connectionboxinner .reconnecting {
|
|
|
|
margin-top: 20px;
|
2012-04-09 17:52:43 +02:00
|
|
|
font-size: 1.6em;
|
|
|
|
color: #555;
|
|
|
|
text-align: center;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.cboxreconnecting #connectionboxinner .reconnecting {
|
|
|
|
display: block
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
#reconnect_form button {
|
|
|
|
font-size: 12pt;
|
2011-04-07 17:56:33 +02:00
|
|
|
padding: 5px;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
/* We give docbar a higher z-index than its descendant impexp-wrapper in
|
2012-04-09 17:52:43 +02:00
|
|
|
order to allow the Import/Export panel to be on top of stuff lower
|
|
|
|
down on the page in IE. Strange but it works! */
|
|
|
|
#docbar {
|
|
|
|
z-index: 52
|
|
|
|
}
|
|
|
|
#impexp-wrapper {
|
|
|
|
width: 650px;
|
|
|
|
right: 10px;
|
|
|
|
}
|
|
|
|
#impexp-panel {
|
|
|
|
height: 160px
|
|
|
|
}
|
|
|
|
.docbarimpexp-closing #impexp-wrapper {
|
|
|
|
z-index: 50
|
|
|
|
}
|
|
|
|
#savedrevs-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
#savedrevs-panel {
|
|
|
|
height: 79px
|
|
|
|
}
|
|
|
|
.docbarsavedrevs-closing #savedrevs-wrapper {
|
|
|
|
z-index: 50
|
|
|
|
}
|
|
|
|
#savedrevs-wrapper .dbpanel-rightedge {
|
|
|
|
background-position: 0 -10px
|
|
|
|
}
|
|
|
|
#options-wrapper {
|
|
|
|
width: 340px;
|
|
|
|
right: 200px;
|
|
|
|
}
|
|
|
|
#options-panel {
|
|
|
|
height: 114px
|
|
|
|
}
|
|
|
|
.docbaroptions-closing #options-wrapper {
|
|
|
|
z-index: 50
|
|
|
|
}
|
|
|
|
#security-wrapper {
|
|
|
|
width: 320px;
|
|
|
|
right: 300px;
|
|
|
|
}
|
|
|
|
#security-panel {
|
|
|
|
height: 130px
|
|
|
|
}
|
|
|
|
.docbarsecurity-closing #security-wrapper {
|
|
|
|
z-index: 50
|
|
|
|
}
|
|
|
|
#revision-notifier {
|
|
|
|
position: absolute;
|
|
|
|
right: 8px;
|
|
|
|
top: 25px;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
font-size: 1.2em;
|
|
|
|
background: #ffc;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
color: #444;
|
|
|
|
padding: 3px 5px;
|
|
|
|
display: none;
|
|
|
|
z-index: 55;
|
|
|
|
}
|
|
|
|
#revision-notifier .label {
|
|
|
|
color: #777;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
#mainmodals {
|
|
|
|
z-index: 600; /* higher than the modals themselves: */
|
|
|
|
}
|
|
|
|
.modalfield {
|
|
|
|
font-size: 1.2em;
|
|
|
|
padding: 1px;
|
|
|
|
border: 1px solid #bbb;
|
|
|
|
}
|
|
|
|
#mainmodals .editempty {
|
|
|
|
color: #aaa
|
|
|
|
}
|
2011-03-26 14:54:03 +01:00
|
|
|
.expand-collapse {
|
|
|
|
height: 22px;
|
2011-05-28 22:05:43 +02:00
|
|
|
background-image: url(static/img/sharedistri.gif);
|
2011-03-26 14:54:03 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0 3px;
|
|
|
|
padding-left: 17px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.expand-collapse.expanded {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0 -31px
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.modaldialog {
|
|
|
|
position: absolute;
|
|
|
|
top: 100px;
|
2012-04-09 17:52:43 +02:00
|
|
|
left: 50%;
|
|
|
|
margin-left: -243px;
|
2011-03-26 14:54:03 +01:00
|
|
|
width: 485px;
|
|
|
|
display: none;
|
|
|
|
z-index: 501;
|
|
|
|
zoom: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
background: white;
|
2012-04-09 17:52:43 +02:00
|
|
|
border: 1px solid #999;
|
|
|
|
}
|
|
|
|
.modaldialog .modaldialog-inner {
|
|
|
|
padding: 10pt
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.modaldialog .modaldialog-hide {
|
|
|
|
float: right;
|
|
|
|
background-repeat: no-repeat;
|
2011-05-28 22:05:43 +02:00
|
|
|
background-image: url(static/img/sharebox4.gif);
|
2011-03-26 14:54:03 +01:00
|
|
|
display: block;
|
2012-04-09 17:52:43 +02:00
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
2011-03-26 14:54:03 +01:00
|
|
|
background-position: -454px -6px;
|
2012-04-09 17:52:43 +02:00
|
|
|
margin-right: -5px;
|
|
|
|
margin-top: -5px;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.modaldialog label,
|
|
|
|
.modaldialog h1 {
|
2012-04-09 17:52:43 +02:00
|
|
|
color: #222222;
|
|
|
|
font-size: 125%;
|
|
|
|
font-weight: bold;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.modaldialog th {
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.sharebox-url {
|
2012-04-09 17:52:43 +02:00
|
|
|
width: 440px;
|
|
|
|
height: 18px;
|
2011-03-26 14:54:03 +01:00
|
|
|
text-align: left;
|
|
|
|
font-size: 1.3em;
|
|
|
|
line-height: 18px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
#sharebox-send {
|
|
|
|
float: right;
|
|
|
|
background-repeat: no-repeat;
|
2011-05-28 22:05:43 +02:00
|
|
|
background-image: url(static/img/sharebox4.gif);
|
2011-03-26 14:54:03 +01:00
|
|
|
display: block;
|
2012-04-09 17:52:43 +02:00
|
|
|
width: 87px;
|
|
|
|
height: 22px;
|
2011-03-26 14:54:03 +01:00
|
|
|
background-position: -383px -289px;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#viewbarcontents {
|
|
|
|
display: none
|
|
|
|
}
|
2011-03-26 14:54:03 +01:00
|
|
|
#viewzoomtitle {
|
2012-04-09 17:52:43 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 10px;
|
|
|
|
top: 4px;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
2011-03-26 14:54:03 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
#viewzoommenu {
|
2012-04-09 17:52:43 +02:00
|
|
|
width: 65px
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
#bottomarea {
|
|
|
|
height: 28px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
height: 28px;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
color: #444;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#widthprefcheck {
|
|
|
|
position: absolute;
|
2011-05-28 22:05:43 +02:00
|
|
|
background-image: url(static/img/layoutbuttons.gif);
|
2012-04-09 17:52:43 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 86px;
|
|
|
|
height: 20px;
|
|
|
|
top: 4px;
|
|
|
|
right: 2px;
|
|
|
|
}
|
|
|
|
.widthprefunchecked {
|
|
|
|
background-position: -1px -1px
|
|
|
|
}
|
|
|
|
.widthprefchecked {
|
|
|
|
background-position: -1px -23px
|
|
|
|
}
|
|
|
|
#sidebarcheck {
|
|
|
|
position: absolute;
|
2011-05-28 22:05:43 +02:00
|
|
|
background-image: url(static/img/layoutbuttons.gif);
|
2012-04-09 17:52:43 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 86px;
|
|
|
|
height: 20px;
|
|
|
|
top: 4px;
|
|
|
|
right: 90px;
|
|
|
|
}
|
|
|
|
.sidebarunchecked {
|
|
|
|
background-position: -1px -45px
|
|
|
|
}
|
|
|
|
.sidebarchecked {
|
|
|
|
background-position: -1px -67px
|
|
|
|
}
|
|
|
|
#feedbackbutton {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 68px;
|
|
|
|
height: 0;
|
|
|
|
padding-top: 17px;
|
|
|
|
overflow: hidden;
|
2011-05-28 22:05:43 +02:00
|
|
|
background: url(static/img/bottomareagfx.gif);
|
2012-04-09 17:52:43 +02:00
|
|
|
top: 5px;
|
|
|
|
right: 220px;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
#modaloverlay {
|
2012-04-09 17:52:43 +02:00
|
|
|
z-index: 500;
|
|
|
|
display: none;
|
2011-03-26 14:54:03 +01:00
|
|
|
background-repeat: repeat-both;
|
2012-04-09 17:52:43 +02:00
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
* html #modaloverlay {
|
|
|
|
/* for IE 6+ */
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
|
|
|
filter: alpha(opacity=100);
|
2011-03-26 14:54:03 +01:00
|
|
|
opacity: 1; /* in case this is looked at */
|
|
|
|
background-image: none;
|
2012-04-09 17:52:43 +02:00
|
|
|
background-repeat: no-repeat; /* scale the image */
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
a#topbarmaximize {
|
2012-04-09 17:52:43 +02:00
|
|
|
float: right;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: -143px;
|
|
|
|
margin-top: 4px;
|
|
|
|
background: url(static/img/maximize_normal.png);
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.maximized a#topbarmaximize {
|
2012-04-09 17:52:43 +02:00
|
|
|
background: url(static/img/maximize_maximized.png)
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
2012-03-28 19:20:07 +02:00
|
|
|
.toolbarinner h1 {
|
2012-04-09 17:52:43 +02:00
|
|
|
line-height: 29px;
|
|
|
|
font-size: 16px;
|
|
|
|
padding-left: 6pt;
|
|
|
|
margin-top: 0;
|
|
|
|
white-space: nowrap;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
2012-03-28 19:20:07 +02:00
|
|
|
.toolbarinner h1 a {
|
2012-04-09 17:52:43 +02:00
|
|
|
font-size: 12px
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.bigbutton {
|
2012-04-09 17:52:43 +02:00
|
|
|
display: block;
|
|
|
|
background-color: #a3bde0;
|
|
|
|
color: #555555;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 2px;
|
|
|
|
border-left-color: #d6e2f1;
|
|
|
|
border-right-color: #86aee1;
|
|
|
|
border-top-color: #d6e2f1;
|
|
|
|
border-bottom-color: #86aee1;
|
|
|
|
margin: 10pt;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 50pt;
|
|
|
|
font-size: 20pt;
|
|
|
|
-webkit-border-radius: 3pt;
|
|
|
|
-moz-border-radius: 3pt;
|
|
|
|
border-radius: 3pt;
|
2011-03-26 14:54:03 +01:00
|
|
|
}
|
|
|
|
.modaldialog .bigbutton {
|
2012-04-09 17:52:43 +02:00
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
width: 100%;
|
2012-01-26 17:22:44 +01:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
ul#colorpickerswatches {
|
2011-04-06 22:36:20 +02:00
|
|
|
padding-left: 3px;
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
ul#colorpickerswatches li {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2011-04-06 22:36:20 +02:00
|
|
|
overflow: hidden;
|
|
|
|
margin: 3px 6px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
ul#colorpickerswatches li:hover {
|
|
|
|
border: 1px solid #000;
|
2011-04-06 22:36:20 +02:00
|
|
|
cursor: pointer;
|
2011-03-26 18:17:13 +01:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chatbox {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
2011-07-14 17:15:38 +02:00
|
|
|
right: 20px;
|
|
|
|
width: 180px;
|
|
|
|
height: 200px;
|
|
|
|
z-index: 400;
|
2012-04-09 17:52:43 +02:00
|
|
|
background-color: #f7f7f7;
|
2011-07-14 17:15:38 +02:00
|
|
|
border-left: 1px solid #999;
|
|
|
|
border-right: 1px solid #999;
|
|
|
|
border-top: 1px solid #999;
|
|
|
|
padding: 3px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
2012-04-09 17:52:43 +02:00
|
|
|
display: none;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chattext {
|
2011-07-14 17:15:38 +02:00
|
|
|
background-color: white;
|
|
|
|
border: 1px solid white;
|
2012-04-09 17:52:43 +02:00
|
|
|
-ms-overflow-y: scroll;
|
|
|
|
overflow-y: scroll;
|
2011-07-14 17:15:38 +02:00
|
|
|
font-size: 12px;
|
2012-04-09 17:52:43 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
left: 0px;
|
|
|
|
top: 25px;
|
|
|
|
bottom: 25px;
|
|
|
|
z-index: 1002;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chattext p {
|
2011-07-14 17:15:38 +02:00
|
|
|
padding: 3px;
|
2012-04-09 17:52:43 +02:00
|
|
|
-ms-overflow-x: hidden;
|
2011-07-19 14:26:05 +02:00
|
|
|
overflow-x: hidden;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chatinputbox {
|
2011-07-14 17:15:38 +02:00
|
|
|
padding: 3px 2px;
|
2011-07-19 17:03:34 +02:00
|
|
|
position: absolute;
|
2012-04-09 17:52:43 +02:00
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
|
|
|
left: 3px;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chatlabel {
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #555;
|
2011-07-14 17:15:38 +02:00
|
|
|
text-decoration: none;
|
2012-02-28 21:21:59 +01:00
|
|
|
margin-right: 3px;
|
|
|
|
vertical-align: middle;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chatinput {
|
2011-07-14 17:15:38 +02:00
|
|
|
border: 1px solid #BBBBBB;
|
|
|
|
width: 100%;
|
2012-04-09 17:52:43 +02:00
|
|
|
float: right;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chaticon {
|
2011-07-14 17:15:38 +02:00
|
|
|
z-index: 400;
|
2012-02-25 16:41:10 +01:00
|
|
|
position: fixed;
|
|
|
|
bottom: 0px;
|
2011-07-14 17:15:38 +02:00
|
|
|
right: 20px;
|
|
|
|
padding: 5px;
|
|
|
|
border-left: 1px solid #999;
|
|
|
|
border-right: 1px solid #999;
|
|
|
|
border-top: 1px solid #999;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
2012-04-09 17:52:43 +02:00
|
|
|
background-color: #fff;
|
2011-08-10 19:26:12 +02:00
|
|
|
cursor: pointer;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chaticon a {
|
|
|
|
text-decoration: none
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chatcounter {
|
|
|
|
color: #555;
|
|
|
|
font-size: 9px;
|
2012-02-28 21:21:59 +01:00
|
|
|
vertical-align: middle;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#titlebar {
|
|
|
|
line-height: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #555;
|
2011-07-14 17:15:38 +02:00
|
|
|
position: relative;
|
|
|
|
bottom: 2px;
|
2012-04-09 17:52:43 +02:00
|
|
|
}
|
|
|
|
#titlelabel {
|
|
|
|
font-size: 13px;
|
|
|
|
margin: 4px 0 0 4px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
#titlecross {
|
|
|
|
font-size: 25px;
|
|
|
|
float: right;
|
2011-07-14 17:15:38 +02:00
|
|
|
text-align: right;
|
|
|
|
text-decoration: none;
|
2011-08-10 19:26:12 +02:00
|
|
|
cursor: pointer;
|
2012-04-09 17:52:43 +02:00
|
|
|
color: #555;
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.time {
|
|
|
|
float: right;
|
|
|
|
color: #333;
|
|
|
|
font-style: italic;
|
2011-07-14 17:15:38 +02:00
|
|
|
font-size: 10px;
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
2012-01-26 17:22:44 +01:00
|
|
|
margin-top: 2px;
|
2012-04-09 17:52:43 +02:00
|
|
|
}
|
|
|
|
.exporttype {
|
|
|
|
margin-top: 2px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
padding-left: 25px;
|
2012-01-13 23:58:47 +01:00
|
|
|
background-image: url("../../static/img/etherpad_lite_icons.png");
|
2012-04-09 17:52:43 +02:00
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
2011-07-19 23:08:26 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#importexportline {
|
2012-01-26 17:22:44 +01:00
|
|
|
border-left: 1px solid #fff;
|
|
|
|
height: 190px;
|
2012-04-09 17:52:43 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 0px;
|
|
|
|
left: 260px;
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
|
|
|
|
filter: alpha(opacity=80);
|
|
|
|
opacity: .8;
|
|
|
|
}
|
|
|
|
.impexpbutton {
|
|
|
|
background-image: -webkit-linear-gradient(center top , #EEEEEE, white 20%, white 20%);
|
|
|
|
background-image: -moz-linear-gradient(center top , #EEEEEE, white 20%, white 20%);
|
|
|
|
background-image: -o-linear-gradient(center top , #EEEEEE, white 20%, white 20%);
|
|
|
|
background-image: -ms-linear-gradient(center top , #EEEEEE, white 20%, white 20%);
|
2012-02-04 18:08:04 +01:00
|
|
|
background-image: linear-gradient(center top , #EEEEEE, white 20%, white 20%);
|
2012-04-09 17:52:43 +02:00
|
|
|
padding: 3px;
|
2011-07-19 23:08:26 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#exporthtml {
|
|
|
|
background-position: 0px -299px
|
2011-07-19 23:08:26 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#exportplain {
|
|
|
|
background-position: 0px -395px
|
2011-07-19 23:08:26 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#exportword {
|
|
|
|
background-position: 0px -275px
|
2011-07-19 23:08:26 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#exportpdf {
|
|
|
|
background-position: 0px -371px
|
2011-07-19 23:08:26 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#exportopen {
|
|
|
|
background-position: 0px -347px
|
2011-07-19 23:08:26 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#exportwordle {
|
|
|
|
background-position: 0px -323px
|
2011-08-25 09:52:19 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#exportdokuwiki {
|
|
|
|
background-position: 0px -459px
|
2011-07-20 17:01:10 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#importstatusball {
|
|
|
|
display: none
|
2011-07-20 17:01:10 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#importarrow {
|
|
|
|
display: none
|
2011-07-20 17:01:10 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#importmessagesuccess {
|
|
|
|
display: none
|
2011-07-20 17:01:10 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#importsubmitinput {
|
|
|
|
height: 25px;
|
|
|
|
width: 85px;
|
|
|
|
margin-top: 12px;
|
2011-07-20 17:01:10 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#importstatusball {
|
|
|
|
height: 50px
|
2011-07-20 22:50:58 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#chatthrob {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 40px;
|
|
|
|
font-size: 14px;
|
|
|
|
width: 150px;
|
|
|
|
height: 40px;
|
|
|
|
right: 20px;
|
|
|
|
z-index: 200;
|
|
|
|
background-color: #000;
|
|
|
|
color: white;
|
|
|
|
background-color: rgb(0,0,0);
|
|
|
|
background-color: rgba(0,0,0,0.7);
|
|
|
|
padding: 10px;
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
-moz-border-radius: 6px;
|
|
|
|
border-radius: 6px;
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
|
|
|
|
filter: alpha(opacity=80);
|
|
|
|
opacity: .8;
|
|
|
|
}
|
|
|
|
.buttonicon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
background-image: url('../../static/img/etherpad_lite_icons.png');
|
|
|
|
background-repeat: no-repeat;
|
2012-02-29 23:39:01 +01:00
|
|
|
display: inline-block;
|
2012-03-01 01:37:21 +01:00
|
|
|
vertical-align: middle;
|
2011-08-10 18:19:23 +02:00
|
|
|
}
|
2012-01-22 08:12:13 +01:00
|
|
|
.buttonicon-bold {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -116px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-italic {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px 0px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-underline {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -236px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-strikethrough {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -200px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-insertorderedlist {
|
|
|
|
background-position: 0px -477px
|
|
|
|
}
|
|
|
|
.buttonicon-insertunorderedlist {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -34px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-indent {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -52px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-outdent {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -134px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-undo {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -255px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-redo {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -166px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-clearauthorship {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -86px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
2012-01-29 17:03:33 +01:00
|
|
|
.buttonicon-settings {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -436px
|
2012-01-29 17:03:33 +01:00
|
|
|
}
|
2012-01-22 08:12:13 +01:00
|
|
|
.buttonicon-import_export {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -68px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-embed {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -18px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-history {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-position: 0px -218px
|
2012-01-22 08:12:13 +01:00
|
|
|
}
|
|
|
|
.buttonicon-chat {
|
|
|
|
background-position: 0px -102px;
|
|
|
|
}
|
|
|
|
.buttonicon-showusers {
|
|
|
|
background-position: 0px -183px;
|
|
|
|
}
|
2012-02-29 20:40:14 +01:00
|
|
|
.buttonicon-savedRevision {
|
|
|
|
background-position: 0px -493px
|
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#usericon {
|
|
|
|
width: 33px !important
|
2011-07-31 20:11:55 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#focusprotector {
|
2011-08-10 19:18:50 +02:00
|
|
|
z-index: 100;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
background-color: white;
|
2012-04-09 17:52:43 +02:00
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
|
|
|
|
filter: alpha(opacity=1);
|
|
|
|
opacity: 0.01;
|
|
|
|
display: none;
|
2011-08-10 19:18:50 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
#online_count {
|
2012-02-28 21:21:59 +01:00
|
|
|
color: #888;
|
|
|
|
font-size: 11px;
|
|
|
|
line-height: 18px;
|
|
|
|
position: fixed;
|
2011-08-21 19:18:35 +02:00
|
|
|
}
|
2012-04-09 17:52:43 +02:00
|
|
|
.rtl {
|
|
|
|
direction: RTL
|
|
|
|
}
|
2012-01-28 17:38:52 +01:00
|
|
|
#chattext p {
|
2012-04-09 17:52:43 +02:00
|
|
|
word-wrap: break-word
|
2012-01-27 02:00:14 +01:00
|
|
|
}
|
2012-02-29 13:17:35 +01:00
|
|
|
/* fix for misaligned checkboxes */
|
|
|
|
input[type=checkbox] {
|
2012-04-09 17:52:43 +02:00
|
|
|
vertical-align: -1px
|
2012-02-29 13:17:35 +01:00
|
|
|
}
|
2012-01-28 17:38:52 +01:00
|
|
|
.right {
|
2012-04-09 17:52:43 +02:00
|
|
|
float: right
|
2012-01-27 02:00:14 +01:00
|
|
|
}
|
2012-01-28 17:38:52 +01:00
|
|
|
.popup {
|
2012-04-09 17:52:43 +02:00
|
|
|
font-size: 14px;
|
|
|
|
width: 450px;
|
|
|
|
z-index: 500;
|
|
|
|
padding: 10px;
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
-moz-border-radius: 6px;
|
|
|
|
border-radius: 6px;
|
|
|
|
background: #222;
|
|
|
|
background: rgba(0,0,0,.7);
|
|
|
|
background: -webkit-linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.7) 35px, rgba(0,0,0,.6));
|
|
|
|
background: -moz-linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.7) 35px, rgba(0,0,0,.6));
|
|
|
|
background: -o-linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.7) 35px, rgba(0,0,0,.6));
|
|
|
|
background: -ms-linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.7) 35px, rgba(0,0,0,.6));
|
|
|
|
background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.7) 35px, rgba(0,0,0,.6));
|
|
|
|
-webkit-box-shadow: 0 0 8px #888;
|
|
|
|
-moz-box-shadow: 0 0 8px #888;
|
|
|
|
box-shadow: 0 0 8px #888;
|
|
|
|
color: #fff;
|
2012-01-27 02:00:14 +01:00
|
|
|
}
|
2012-01-28 17:38:52 +01:00
|
|
|
.popup input[type=text] {
|
2012-04-09 17:52:43 +02:00
|
|
|
width: 100%;
|
|
|
|
padding: 5px;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
-ms-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
margin-top: 10px;
|
2012-01-27 02:00:14 +01:00
|
|
|
}
|
2012-01-28 17:38:52 +01:00
|
|
|
.popup a {
|
2012-04-09 17:52:43 +02:00
|
|
|
text-decoration: none
|
2012-01-28 17:38:52 +01:00
|
|
|
}
|
|
|
|
.popup h1 {
|
2012-04-09 17:52:43 +02:00
|
|
|
font-size: 18px
|
2012-01-28 17:38:52 +01:00
|
|
|
}
|
|
|
|
.popup h2 {
|
2012-04-09 17:52:43 +02:00
|
|
|
font-size: 15px
|
2012-01-28 17:38:52 +01:00
|
|
|
}
|
|
|
|
.popup p {
|
2012-04-09 17:52:43 +02:00
|
|
|
margin: 5px 0
|
2012-01-28 17:38:52 +01:00
|
|
|
}
|
2012-02-27 22:06:46 +01:00
|
|
|
.column {
|
2012-04-09 17:52:43 +02:00
|
|
|
float: left;
|
|
|
|
width: 50%;
|
2012-01-27 02:00:14 +01:00
|
|
|
}
|
2012-04-29 01:00:31 +02:00
|
|
|
#settings,
|
2012-04-09 17:52:43 +02:00
|
|
|
#importexport,
|
|
|
|
#embed {
|
|
|
|
position: absolute;
|
|
|
|
top: 55px;
|
|
|
|
right: 20px;
|
|
|
|
display: none;
|
2012-01-28 17:38:52 +01:00
|
|
|
}
|
|
|
|
.note {
|
2012-04-09 17:52:43 +02:00
|
|
|
color: #ddd;
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: bold;
|
2012-01-28 17:38:52 +01:00
|
|
|
}
|
2012-02-03 20:43:09 +01:00
|
|
|
.selected {
|
2012-04-09 17:52:43 +02:00
|
|
|
background: #eee !important;
|
|
|
|
background: -webkit-linear-gradient(#EEE, #F0F0F0) !important;
|
|
|
|
background: -moz-linear-gradient(#EEE, #F0F0F0) !important;
|
|
|
|
background: -o-linear-gradient(#EEE, #F0F0F0) !important;
|
|
|
|
background: -ms-linear-gradient(#EEE, #F0F0F0) !important;
|
|
|
|
background: linear-gradient(#EEE, #F0F0F0) !important;
|
2012-02-03 20:43:09 +01:00
|
|
|
}
|
2012-02-19 17:16:05 +01:00
|
|
|
.stickyChat {
|
2012-04-09 17:52:43 +02:00
|
|
|
background-color: #f1f1f1 !important;
|
|
|
|
right: 0px !important;
|
|
|
|
top: 36px;
|
|
|
|
-webkit-border-radius: 0px !important;
|
|
|
|
-moz-border-radius: 0px !important;
|
|
|
|
border-radius: 0px !important;
|
|
|
|
height: auto !important;
|
|
|
|
border: none !important;
|
|
|
|
border-left: 1px solid #ccc !important;
|
|
|
|
width: 185px !important;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 960px) {
|
|
|
|
.modaldialog {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 80%;
|
|
|
|
top: 40px;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
.toolbar ul li {
|
|
|
|
padding: 4px 1px
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-device-width: 320px) and (max-device-width: 720px) {
|
|
|
|
.toolbar ul li {
|
|
|
|
padding: 4px 3px
|
|
|
|
}
|
|
|
|
#users {
|
|
|
|
right: 0;
|
|
|
|
top: 36px;
|
|
|
|
bottom: 33px;
|
|
|
|
-webkit-border-radius: none;
|
|
|
|
-moz-border-radius: none;
|
|
|
|
border-radius: none;
|
|
|
|
}
|
|
|
|
#mycolorpicker {
|
|
|
|
left: -72px;
|
|
|
|
/* #mycolorpicker: width -#users: width */;
|
|
|
|
}
|
|
|
|
#editorcontainer {
|
|
|
|
margin-bottom: 33px
|
|
|
|
}
|
|
|
|
.toolbar ul.menu_right {
|
|
|
|
background: #f7f7f7;
|
|
|
|
background: -webkit-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -moz-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -o-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -ms-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 32px;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
border-top: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
.toolbar ul.menu_right li:last-child {
|
|
|
|
height: 24px;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
border: 0;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
#chaticon {
|
|
|
|
bottom: 3px;
|
|
|
|
right: 55px;
|
|
|
|
border-right: none;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
background: #f7f7f7;
|
|
|
|
background: -webkit-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -moz-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -o-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: -ms-linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
background: linear-gradient(#f7f7f7, #f1f1f1 80%);
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
#chatbox {
|
|
|
|
bottom: 32px;
|
|
|
|
right: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.toolbar ul li a span {
|
|
|
|
top: -3px
|
|
|
|
}
|
|
|
|
#usericonback {
|
|
|
|
margin-top: 4px
|
|
|
|
}
|
|
|
|
.toolbar ul.menu_right li:not(:last-child) {
|
|
|
|
display: block
|
|
|
|
}
|
|
|
|
.toolbar ul.menu_right > li {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
margin-top: 4px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
}
|
|
|
|
.selected {
|
|
|
|
background: none !important
|
|
|
|
}
|
|
|
|
#timesliderlink {
|
|
|
|
display: none !important
|
|
|
|
}
|
|
|
|
.popup {
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
-ms-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2012-04-29 02:48:47 +02:00
|
|
|
#settings,
|
2012-04-09 17:52:43 +02:00
|
|
|
#importexport,
|
|
|
|
#embed {
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 33px;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.separator {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
#online_count {
|
|
|
|
line-height: 24px
|
|
|
|
}
|
|
|
|
}
|