cryptpad/www/common/onlyoffice/app-oo.less

80 lines
1.6 KiB
Text
Raw Normal View History

2018-09-03 08:39:34 +00:00
@import (reference) "../../customize/src/less2/include/framework.less";
// body
2021-03-24 14:01:52 +00:00
body.cp-app-sheet, body.cp-app-doc, body.cp-app-presentation {
2018-09-03 08:39:34 +00:00
display: flex;
flex-flow: column;
2019-01-25 16:13:55 +00:00
&.cp-app-sheet {
2018-09-03 08:39:34 +00:00
.framework_main(
2020-11-19 12:56:52 +00:00
@bg-color: @colortheme_apps[sheet],
2018-09-03 08:39:34 +00:00
);
}
2021-03-24 14:01:52 +00:00
&.cp-app-doc {
2018-09-03 08:39:34 +00:00
.framework_main(
2021-03-24 14:01:52 +00:00
@bg-color: @colortheme_apps[doc],
2018-09-03 08:39:34 +00:00
);
}
2021-03-24 14:01:52 +00:00
&.cp-app-presentation {
2018-09-03 08:39:34 +00:00
.framework_main(
2021-03-24 14:01:52 +00:00
@bg-color: @colortheme_apps[presentation],
2018-09-03 08:39:34 +00:00
);
}
2020-01-20 12:59:29 +00:00
.cp-oo-x2tXls {
display: flex;
align-items: center;
justify-content: center;
.fa {
font-size: 30px;
margin-right: 10px;
}
}
2019-01-28 14:04:44 +00:00
#cp-fileupload {
display: none !important;
}
2018-09-03 08:39:34 +00:00
#cp-toolbar {
display: flex; // We need this to remove a 3px border at the bottom of the toolbar
}
.cp-cryptpad-toolbar {
padding: 0px;
display: inline-block;
}
#cp-app-oo-container {
flex: 1;
height: 100%;
background-color: @cp_app-bg;
2018-09-03 08:39:34 +00:00
display: flex;
2019-07-10 11:34:55 +00:00
min-height: 0;
2018-09-03 08:39:34 +00:00
}
2019-01-28 10:31:57 +00:00
#cp-app-oo-editor {
flex: 1;
height: 100%;
background-color: @cp_app-bg;
2019-01-28 10:31:57 +00:00
display: flex;
flex-flow: column;
2020-01-29 15:40:46 +00:00
position: relative;
2020-06-02 15:17:27 +00:00
iframe {
flex: 1;
}
2020-01-29 15:40:46 +00:00
}
#cp-app-oo-offline {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
background-color: @cp_oo-offline-overlay;
2019-01-28 10:31:57 +00:00
}
2018-09-03 08:39:34 +00:00
#ooframe {
flex: 1;
border:none;
margin:0;
padding:0;
}
}