[DE] extended stylesheets

This commit is contained in:
Maxim Kadushkin 2020-10-14 12:00:05 +03:00
parent d587788670
commit 299b997aa1
5 changed files with 30 additions and 6 deletions

View file

@ -0,0 +1,4 @@
.device-ios {
}

View file

@ -0,0 +1,4 @@
.device-android {
}

View file

@ -0,0 +1,6 @@
.device-ios {
.popover-inner {
//border-radius: var(--f7-popover-border-radius);
}
}

View file

@ -0,0 +1,12 @@
// Colors
@themeColor: #446995; // (64,102,215)
@themeColorLight: #a2bdde;
@navBarIconColor: #fff;
.device-android {
--f7-navbar-bg-color: @themeColor;
--f7-navbar-link-color: @navBarIconColor;
--f7-navbar-text-color: @navBarIconColor;
}

View file

@ -1,5 +1,9 @@
@import '../../../../common/mobile/resources/less/collaboration.less';
@import '../../../../common/mobile/resources/less/common-ios.less';
@import '../../../../common/mobile/resources/less/common-material.less';
@import './app-material.less';
@import './app-ios.less';
/* Left Panel right border when it is visible by breakpoint */
.panel-left.panel-in-breakpoint:before {
@ -36,9 +40,3 @@
:root {
--f7-popover-width: 360px;
}
.ios {
.popover-inner {
//border-radius: var(--f7-popover-border-radius);
}
}