Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
web-apps
Commits
cc4addb2
Commit
cc4addb2
authored
Dec 05, 2016
by
Maxim Kadushkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE mobile] 'search' opened under expanded 'celleditor'
parent
93350b3c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
apps/spreadsheeteditor/mobile/app/view/CellEditor.js
apps/spreadsheeteditor/mobile/app/view/CellEditor.js
+3
-2
apps/spreadsheeteditor/mobile/resources/less/celleditor.less
apps/spreadsheeteditor/mobile/resources/less/celleditor.less
+1
-0
apps/spreadsheeteditor/mobile/resources/less/ios/_search.less
.../spreadsheeteditor/mobile/resources/less/ios/_search.less
+9
-3
No files found.
apps/spreadsheeteditor/mobile/app/view/CellEditor.js
View file @
cc4addb2
...
...
@@ -81,10 +81,11 @@ define([
expandEditor
:
function
()
{
if
(
this
.
$el
.
height
()
>
this
.
defEditorHeight
)
{
this
.
$el
.
height
(
this
.
defEditorHeight
);
this
.
$el
.
height
(
this
.
defEditorHeight
)
.
removeClass
(
'
expanded
'
)
;
this
.
$btnexpand
.
removeClass
(
'
collapse
'
);
}
else
{
this
.
$el
.
height
(
this
.
maxEditorHeight
);
out_height
=
this
.
maxEditorHeight
;
this
.
$el
.
height
(
this
.
maxEditorHeight
).
addClass
(
'
expanded
'
);
this
.
$btnexpand
.
addClass
(
'
collapse
'
);
}
...
...
apps/spreadsheeteditor/mobile/resources/less/celleditor.less
View file @
cc4addb2
...
...
@@ -3,6 +3,7 @@
@gray-light: #f1f1f1; //rgb(241, 241, 241)
@cellEditorHeight: 30px;
@cellEditorHeightExp: 70px;
.border-radius(@radius: 2px) {
border-radius: @radius;
...
...
apps/spreadsheeteditor/mobile/resources/less/ios/_search.less
View file @
cc4addb2
// Search
.navbar-through .page > .searchbar {
.navbar-through .page {
& > .searchbar {
top: @toolbarSize + @cellEditorHeight;
//position: relative;
}
#cell-editing-box.expanded + .searchbar {
top: @toolbarSize + @cellEditorHeightExp;
}
}
.tablet {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment