mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-26 02:11:59 +08:00
Correct styles and remove unused property
This commit is contained in:
@ -105,7 +105,7 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => {
|
||||
const isViewer = appOptions.isViewer;
|
||||
|
||||
return (
|
||||
<View style={props.style} stackPages={true} routes={routes} url={props.page && `/${props.page}/`}>
|
||||
<View style={props.style} routes={routes} url={props.page && `/${props.page}/`}>
|
||||
<Page name="collab__main">
|
||||
<Navbar title={_t.textCollaboration}>
|
||||
{Device.phone &&
|
||||
|
||||
@ -58,6 +58,9 @@
|
||||
|
||||
--f7-block-text-color: @text-secondary;
|
||||
|
||||
--f7-theme-color-shade: @background-primary;
|
||||
--f7-fab-pressed-bg-color: @background-primary;
|
||||
|
||||
// Main Toolbar
|
||||
#editor-navbar.navbar .right a + a,
|
||||
#editor-navbar.navbar .left a + a {
|
||||
|
||||
@ -112,7 +112,7 @@
|
||||
padding: 14px 10px 0 10px;
|
||||
}
|
||||
|
||||
.list {
|
||||
.view .list {
|
||||
max-width: 100%;
|
||||
--menu-list-offset: 0px;
|
||||
|
||||
|
||||
@ -213,7 +213,7 @@ const AddTabs = inject("storeFocusObjects", "storeTableSettings")(observer(({sto
|
||||
// }
|
||||
|
||||
return (
|
||||
<View style={style} stackPages={true} routes={routes}>
|
||||
<View style={style} routes={routes}>
|
||||
<Page pageContent={false}>
|
||||
<AddLayoutNavbar tabs={tabs} inPopover={inPopover} storeTableSettings={storeTableSettings} />
|
||||
<AddLayoutContent tabs={tabs} />
|
||||
|
||||
@ -175,7 +175,7 @@ const SettingsList = inject("storeAppOptions", "storeReview", "storeDocumentInfo
|
||||
}
|
||||
|
||||
return (
|
||||
<View style={props.style} stackPages={true} routes={routes}>
|
||||
<View style={props.style} routes={routes}>
|
||||
<Page>
|
||||
{navbar}
|
||||
<List>
|
||||
|
||||
@ -152,7 +152,7 @@ const AddTabs = props => {
|
||||
// }
|
||||
|
||||
return (
|
||||
<View style={props.style} stackPages={true} routes={routes}>
|
||||
<View style={props.style} routes={routes}>
|
||||
<Page pageContent={false}>
|
||||
<AddLayoutNavbar tabs={tabs} inPopover={props.inPopover}/>
|
||||
<AddLayoutContent tabs={tabs} />
|
||||
|
||||
@ -341,7 +341,7 @@ const EditTabs = props => {
|
||||
}
|
||||
|
||||
return (
|
||||
<View style={props.style} stackPages={true} routes={routes}>
|
||||
<View style={props.style} routes={routes}>
|
||||
<Page pageContent={false}>
|
||||
<EditLayoutNavbar editors={editors} inPopover={props.inPopover}/>
|
||||
<EditLayoutContent editors={editors} />
|
||||
|
||||
@ -167,7 +167,7 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer(
|
||||
};
|
||||
|
||||
return (
|
||||
<View style={props.style} stackPages={true} routes={routes}>
|
||||
<View style={props.style} routes={routes}>
|
||||
<Page>
|
||||
{navbar}
|
||||
<List>
|
||||
|
||||
@ -184,7 +184,7 @@ const AddTabs = props => {
|
||||
}
|
||||
|
||||
return (
|
||||
<View style={props.style} stackPages={true} routes={routes}>
|
||||
<View style={props.style} routes={routes}>
|
||||
<Page pageContent={false}>
|
||||
<AddLayoutNavbar tabs={tabs} inPopover={props.inPopover}/>
|
||||
<AddLayoutContent tabs={tabs} />
|
||||
|
||||
@ -435,7 +435,7 @@ const EditTabs = props => {
|
||||
}
|
||||
|
||||
return (
|
||||
<View style={props.style} stackPages={true} routes={routes}>
|
||||
<View style={props.style} routes={routes}>
|
||||
<Page pageContent={false}>
|
||||
<EditLayoutNavbar editors={editors} inPopover={props.inPopover}/>
|
||||
<EditLayoutContent editors={editors} />
|
||||
|
||||
@ -177,7 +177,7 @@ const SettingsList = inject("storeAppOptions")(observer(props => {
|
||||
};
|
||||
|
||||
return (
|
||||
<View style={props.style} stackPages={true} routes={routes}>
|
||||
<View style={props.style} routes={routes}>
|
||||
<Page>
|
||||
{navbar}
|
||||
<List>
|
||||
|
||||
Reference in New Issue
Block a user