2013-10-16 19:35:13 +03:00
|
|
|
#editor ::-webkit-scrollbar-thumb {
|
2013-10-16 19:24:55 +03:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:15:37 +03:00
|
|
|
#documents-content #emptyfolder {
|
|
|
|
position: static;
|
|
|
|
margin:0;
|
|
|
|
text-align:center;
|
2013-08-26 12:15:29 +02:00
|
|
|
font-size:1.5em; font-weight:bold; color:#888; text-shadow:#fff 0 1px 0;
|
|
|
|
}
|
|
|
|
|
2013-08-22 16:37:06 +02:00
|
|
|
.documentslist { padding:5px; }
|
2013-08-26 12:15:29 +02:00
|
|
|
|
2013-09-06 17:13:03 +03:00
|
|
|
.documentslist .add-document{
|
2013-08-26 12:15:29 +02:00
|
|
|
display: inline-block;
|
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
2013-09-12 17:36:31 +02:00
|
|
|
background-color: #e8e8e8;
|
2013-08-26 12:15:29 +02:00
|
|
|
margin: 1em;
|
|
|
|
vertical-align: top;
|
2013-09-12 17:36:31 +02:00
|
|
|
border-radius: 5px;
|
2013-08-19 14:18:48 +03:00
|
|
|
}
|
2013-08-26 12:15:29 +02:00
|
|
|
.add-document a {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2013-10-01 12:52:36 +03:00
|
|
|
height: 100px;
|
2013-09-06 17:13:03 +03:00
|
|
|
width: 200px;
|
2013-08-26 12:15:29 +02:00
|
|
|
background-repeat: no-repeat;
|
2013-10-26 18:15:31 +03:00
|
|
|
background-size: 32px;
|
|
|
|
background-position: 50%;
|
2013-08-26 12:15:29 +02:00
|
|
|
}
|
|
|
|
.add-document .add {
|
2013-09-02 18:58:15 +03:00
|
|
|
background-image: url('%webroot%/core/img/actions/add.svg');
|
2013-08-22 16:37:06 +02:00
|
|
|
}
|
2013-08-26 12:15:29 +02:00
|
|
|
.add-document .upload {
|
2013-09-02 18:58:15 +03:00
|
|
|
background-image: url('%webroot%/core/img/actions/upload.svg');
|
2013-08-23 15:35:30 +02:00
|
|
|
}
|
2013-10-01 12:52:36 +03:00
|
|
|
|
2013-10-26 18:18:02 +03:00
|
|
|
.add-document a.add {
|
|
|
|
border-bottom: 1px solid #fff;
|
2013-10-01 12:52:36 +03:00
|
|
|
}
|
2013-10-26 19:03:01 +03:00
|
|
|
.add-document .add,
|
|
|
|
.add-document .upload {
|
|
|
|
opacity: .7;
|
|
|
|
}
|
|
|
|
.add-document .add:hover,
|
|
|
|
.add-document .add:focus,
|
|
|
|
.add-document #upload:hover .upload,
|
|
|
|
.add-document .upload:focus {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2013-10-01 12:52:36 +03:00
|
|
|
|
2013-08-26 12:15:29 +02:00
|
|
|
.add-document label {
|
|
|
|
position: absolute;
|
2013-10-26 18:18:02 +03:00
|
|
|
bottom: 10px;
|
2013-08-26 12:15:29 +02:00
|
|
|
width: 100%;
|
2013-09-12 17:36:31 +02:00
|
|
|
font-weight: normal;
|
2013-08-26 12:15:29 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2013-09-12 17:36:31 +02:00
|
|
|
|
2013-08-26 12:15:29 +02:00
|
|
|
.documentslist .document {
|
|
|
|
display: inline-block;
|
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
2013-09-12 17:36:31 +02:00
|
|
|
background-color: #e8e8e8;
|
2013-08-26 12:15:29 +02:00
|
|
|
margin: 1em;
|
|
|
|
vertical-align: top;
|
2013-09-12 17:36:31 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
.documentslist .document:hover,
|
2013-10-26 19:03:01 +03:00
|
|
|
.documentslist .document a:focus {
|
2013-09-12 17:36:31 +02:00
|
|
|
background-color: #ddd;
|
2013-08-26 12:15:29 +02:00
|
|
|
}
|
2013-09-12 17:36:31 +02:00
|
|
|
|
2013-08-26 12:15:29 +02:00
|
|
|
.documentslist .session-active {
|
|
|
|
position: relative;
|
|
|
|
margin-left: 128px;
|
|
|
|
margin-top: 128px;
|
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
.document a {
|
2013-08-23 15:35:30 +02:00
|
|
|
display: block;
|
2013-08-26 12:15:29 +02:00
|
|
|
position: relative;
|
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
2013-08-23 15:35:30 +02:00
|
|
|
background-repeat: no-repeat;
|
2013-08-26 12:15:29 +02:00
|
|
|
background-size: 64px;
|
|
|
|
background-position: 68px;
|
2013-08-19 14:18:48 +03:00
|
|
|
}
|
2013-08-26 12:15:29 +02:00
|
|
|
.document label {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 5px;
|
|
|
|
width: 100%;
|
2013-09-12 17:36:31 +02:00
|
|
|
font-weight: normal;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2013-08-26 12:15:29 +02:00
|
|
|
text-align: center;
|
2013-09-12 17:36:31 +02:00
|
|
|
padding: 0 8px;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
white-space: nowrap;
|
2013-08-09 19:15:47 +03:00
|
|
|
}
|
|
|
|
|
2013-09-06 17:13:03 +03:00
|
|
|
#odf-toolbar{
|
2013-09-24 15:53:33 +03:00
|
|
|
text-align: left;
|
2013-09-06 17:13:03 +03:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
2013-09-07 17:11:56 +03:00
|
|
|
padding:0;
|
2013-09-06 17:13:03 +03:00
|
|
|
z-index: 500;
|
2013-08-13 01:27:26 +03:00
|
|
|
}
|
|
|
|
|
2013-09-19 23:59:25 +03:00
|
|
|
#odf-toolbar #dropdown{
|
|
|
|
right:auto;
|
|
|
|
}
|
|
|
|
|
2013-09-12 22:07:21 +03:00
|
|
|
#document-title{
|
2013-09-13 13:59:55 +03:00
|
|
|
position: absolute;
|
2013-09-16 18:02:46 +03:00
|
|
|
top: 9px;
|
2013-09-13 13:59:55 +03:00
|
|
|
left:50%;
|
|
|
|
margin:0;
|
2013-09-12 22:07:21 +03:00
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2013-09-13 13:59:55 +03:00
|
|
|
#document-title div{
|
|
|
|
position: relative;
|
|
|
|
margin-left:-50%;
|
|
|
|
}
|
2013-09-06 17:13:03 +03:00
|
|
|
#odf-close{
|
2013-09-12 19:10:59 +02:00
|
|
|
float: right;
|
2013-08-13 19:38:30 +03:00
|
|
|
}
|
2013-08-17 12:09:05 +03:00
|
|
|
|
2013-09-06 17:13:03 +03:00
|
|
|
#odf-invite{
|
2013-09-12 19:10:59 +02:00
|
|
|
float: left;
|
2013-08-13 01:27:26 +03:00
|
|
|
}
|
|
|
|
|
2013-08-13 19:38:30 +03:00
|
|
|
#invite-block{
|
|
|
|
position: absolute;
|
|
|
|
top:3em;
|
|
|
|
margin-top:-3px;
|
2013-09-18 18:48:52 +03:00
|
|
|
left:0;
|
2013-08-13 19:38:30 +03:00
|
|
|
padding: 10px;
|
2013-09-18 18:48:52 +03:00
|
|
|
background-color: #bbb;
|
2013-08-16 17:51:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#invitee-list li{
|
|
|
|
padding: 5px 0 5px 20px;
|
|
|
|
background: url('%webroot%/core/img/actions/delete.svg') 0 50% no-repeat;
|
2013-08-16 21:20:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#mainContainer{
|
|
|
|
position:absolute;
|
2013-09-06 17:13:03 +03:00
|
|
|
z-index:500;
|
2013-08-18 12:54:57 +03:00
|
|
|
}
|
2013-09-05 17:34:48 +03:00
|
|
|
|
2013-09-05 19:52:44 +03:00
|
|
|
#documents-overlay, #documents-overlay-below{
|
2013-09-05 17:34:48 +03:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2013-09-06 17:13:03 +03:00
|
|
|
filter:alpha(opacity=30);
|
2013-09-12 19:10:59 +02:00
|
|
|
opacity: .3;
|
2013-09-05 17:34:48 +03:00
|
|
|
z-index: 1000;
|
2013-09-12 19:10:59 +02:00
|
|
|
background: #111 url('%webroot%/core/img/loading-dark.gif') 50% 50% no-repeat;
|
2013-09-05 19:52:44 +03:00
|
|
|
}
|
2013-09-16 17:44:38 +03:00
|
|
|
|
2013-09-05 19:52:44 +03:00
|
|
|
#documents-overlay-below{
|
2013-09-06 17:13:03 +03:00
|
|
|
left:0;
|
|
|
|
top:0;
|
2013-09-05 19:52:44 +03:00
|
|
|
filter:alpha(opacity=100);
|
|
|
|
opacity: 1;
|
|
|
|
background:#f0f0f0;
|
|
|
|
z-index: 999;
|
2013-09-05 20:12:16 +03:00
|
|
|
}
|
|
|
|
|
2013-09-13 16:47:48 +03:00
|
|
|
#file_upload_start{
|
2013-10-01 18:23:37 +03:00
|
|
|
display: block;
|
2013-09-13 16:47:48 +03:00
|
|
|
position:relative;
|
2013-10-01 12:52:36 +03:00
|
|
|
left:0; top:0; width:200px; height:100px;
|
2013-10-01 18:23:37 +03:00
|
|
|
margin-bottom: -110px;padding:0;
|
2013-09-13 16:47:48 +03:00
|
|
|
cursor:pointer; overflow:hidden;
|
|
|
|
font-size:1em;
|
|
|
|
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0;
|
|
|
|
z-index:20;
|
2013-09-13 17:04:52 +03:00
|
|
|
}
|
2013-09-13 16:47:48 +03:00
|
|
|
|
|
|
|
|
2013-09-16 17:44:38 +03:00
|
|
|
/* override WebODF styling here */
|
|
|
|
|
2013-09-16 17:44:38 +03:00
|
|
|
#mainContainer #collaboration{
|
|
|
|
float:right;position: relative;z-index: 1;
|
|
|
|
width: 70px;padding:5px;
|
|
|
|
}
|
|
|
|
|
2013-09-06 17:13:03 +03:00
|
|
|
#members{
|
2013-09-05 20:12:16 +03:00
|
|
|
padding-top: 3em !important;
|
2013-09-12 17:36:31 +02:00
|
|
|
}
|
2013-09-16 17:44:38 +03:00
|
|
|
|
2013-09-30 20:53:47 +03:00
|
|
|
.memberListButton span{
|
|
|
|
display: block;
|
|
|
|
box-shadow: 0px 0px 5px rgb(90, 90, 90) inset;
|
|
|
|
background-color: rgb(200, 200, 200);
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 2px solid;
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.memberListButton img{
|
|
|
|
border: 0 none !important;
|
|
|
|
}
|
|
|
|
|
2013-09-16 17:44:38 +03:00
|
|
|
#toolbar {
|
|
|
|
border-bottom: none !important;
|
|
|
|
padding: 6px 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container {
|
|
|
|
top: 38px !important;
|
2013-09-13 16:47:48 +03:00
|
|
|
}
|
2013-09-20 12:41:06 +03:00
|
|
|
|
|
|
|
cursor > div {
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
editinfo > div.editInfoMarker {
|
|
|
|
width: 4px;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: 0 0 0 #fff;
|
|
|
|
background-clip:content-box;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
editinfo > div.editInfoMarker:hover {
|
2013-09-24 15:53:33 +03:00
|
|
|
}
|