89 lines
2.4 KiB
Plaintext
Raw Normal View History

@import (reference) "./colortheme-all.less";
@import (reference) "./toolbar.less";
@import (reference) './fileupload.less';
@import (reference) './alertify.less';
2018-08-27 14:58:09 +02:00
@import (reference) './corner.less';
@import (reference) './contextmenu.less';
@import (reference) './tokenfield.less';
@import (reference) './creation.less';
@import (reference) './tippy.less';
@import (reference) "./checkmark.less";
@import (reference) "./password-input.less";
2018-07-14 15:15:23 +02:00
@import (reference) './font.less';
@import (reference) "./app-print.less";
@import (reference) "./app-noscroll.less";
@import (reference) "./messenger.less";
2018-12-06 11:54:34 +01:00
@import (reference) "./cursor.less";
2019-09-26 12:53:02 +02:00
@import (reference) "./usergrid.less";
2019-11-21 13:50:46 +00:00
@import (reference) "./modals-ui-elements.less";
.framework_main(@bg-color, @warn-color, @color) {
2018-07-14 15:15:23 +02:00
--LessLoader_require: LessLoader_currentFile();
// Set the HTML style for the apps which shouldn't have a body scrollbar
.app-noscroll_main();
// Set the HTML style for printing slides
.app-print_main();
.font_main();
.toolbar_main(
@bg-color: @bg-color,
@warn-color: @warn-color,
@color: @color
);
.alertify_main();
2019-11-21 13:50:46 +00:00
.modals-ui-elements_main();
2018-08-27 14:58:09 +02:00
.corner_main();
.contextmenu_main();
2018-07-14 15:15:23 +02:00
.fileupload_main();
.tokenfield_main();
2018-04-12 19:08:08 +02:00
.tippy_main();
2018-04-16 19:07:54 +02:00
.checkmark_main(20px);
.password_main();
.messenger_main();
2018-12-06 11:54:34 +01:00
.cursor_main();
2019-09-26 12:53:02 +02:00
.usergrid_main();
2018-04-11 18:56:03 +02:00
.creation_main(
@bg-color: @bg-color,
@color: @color
);
font: @colortheme_app-font;
2018-07-14 15:15:23 +02:00
};
2018-04-13 15:25:14 +02:00
.framework_min_main(
@color: @colortheme_default-color, // Color of the text for the toolbar
@bg-color: @colortheme_default-bg, // color of the toolbar background
@warn-color: @colortheme_default-warn, // color of the warning text in the toolbar
) {
2018-07-14 15:15:23 +02:00
--LessLoader_require: LessLoader_currentFile();
// Set the HTML style for the apps which shouldn't have a body scrollbar
.app-noscroll_main();
// Set the HTML style for printing slides
.app-print_main();
.font_main();
2018-04-13 15:25:14 +02:00
.toolbar_main(
@bg-color: @bg-color,
@warn-color: @warn-color,
@color: @color
);
.fileupload_main();
.alertify_main();
2019-11-21 14:31:57 +00:00
.modals-ui-elements_main();
2018-08-27 14:58:09 +02:00
.corner_main();
.contextmenu_main();
2018-04-13 15:25:14 +02:00
.tippy_main();
2018-04-16 19:07:54 +02:00
.checkmark_main(20px);
.password_main();
2019-09-26 12:53:02 +02:00
.usergrid_main();
font: @colortheme_app-font;
2018-04-13 15:25:14 +02:00
}
2018-07-14 15:15:23 +02:00
& {
body.cp-readonly .cp-hidden-if-readonly { display: none !important; }
2018-07-18 14:31:01 +02:00
}