Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alecs_myu
erp5
Commits
781918f8
Commit
781918f8
authored
Jun 13, 2017
by
Vincent Bechu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_web_renderjs_ui: add content-iframe-maximize css class
parent
54e27e5f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
2 deletions
+67
-2
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_nojqm_css.css
...emplateItem/web_page_module/rjs_gadget_erp5_nojqm_css.css
+34
-0
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_nojqm_css.xml
...emplateItem/web_page_module/rjs_gadget_erp5_nojqm_css.xml
+2
-2
bt5/erp5_web_renderjs_ui/SkinTemplateItem/portal_skins/erp5_web_renderjs_ui/erp5css.less.txt
...teItem/portal_skins/erp5_web_renderjs_ui/erp5css.less.txt
+31
-0
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_nojqm_css.css
View file @
781918f8
...
@@ -1411,6 +1411,40 @@ div[data-gadget-scope='notification'] button {
...
@@ -1411,6 +1411,40 @@ div[data-gadget-scope='notification'] button {
}
}
}
}
/**********************************************
/**********************************************
* Class
**********************************************/
.content-iframe-maximize
{
position
:
fixed
;
}
@media
not
screen
and
(
max-width
:
85em
)
{
.content-iframe-maximize
{
left
:
180pt
;
top
:
60pt
;
width
:
calc
(
100vw
-
180pt
);
}
.content-iframe-maximize
iframe
{
height
:
calc
(
100vh
-
60pt
);
}
}
@media
only
screen
and
(
min-width
:
45em
)
and
(
max-width
:
85em
)
{
.content-iframe-maximize
{
left
:
0
;
top
:
73pt
;
}
.content-iframe-maximize
iframe
{
height
:
calc
(
100vh
-
73pt
);
}
}
@media
not
screen
and
(
min-width
:
45em
)
{
.content-iframe-maximize
{
left
:
0
;
top
:
67pt
;
}
.content-iframe-maximize
iframe
{
height
:
calc
(
100vh
-
67pt
);
}
}
/**********************************************
* Icons
* Icons
**********************************************/
**********************************************/
.ui-btn-icon-top
::before
,
.ui-btn-icon-top
::before
,
...
...
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_nojqm_css.xml
View file @
781918f8
...
@@ -242,7 +242,7 @@
...
@@ -242,7 +242,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
9
58.38697.56980.48179
</string>
</value>
<value>
<string>
9
60.1037.21083.19336
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
state
</string>
</key>
<key>
<string>
state
</string>
</key>
...
@@ -260,7 +260,7 @@
...
@@ -260,7 +260,7 @@
</tuple>
</tuple>
<state>
<state>
<tuple>
<tuple>
<float>
149
1827283.31
</float>
<float>
149
7345912.22
</float>
<string>
UTC
</string>
<string>
UTC
</string>
</tuple>
</tuple>
</state>
</state>
...
...
bt5/erp5_web_renderjs_ui/SkinTemplateItem/portal_skins/erp5_web_renderjs_ui/erp5css.less.txt
View file @
781918f8
...
@@ -36,6 +36,8 @@
...
@@ -36,6 +36,8 @@
// XXX BUG Generate wrong align on firefox smartphone
// XXX BUG Generate wrong align on firefox smartphone
@headerheight: @font-size * 2 + @margin-size;
@headerheight: @font-size * 2 + @margin-size;
@headerheight-smartphone: 2 * @headerheight + @margin-size + 1;
@headerheight-tablet: 2 * @headerheight + 2 * @margin-size + 1;
@main-margin-size-desktop: @quadruple-margin-size;
@main-margin-size-desktop: @quadruple-margin-size;
@main-margin-size-smartphone: @margin-size;
@main-margin-size-smartphone: @margin-size;
...
@@ -1604,6 +1606,35 @@ div[data-gadget-scope='notification'] {
...
@@ -1604,6 +1606,35 @@ div[data-gadget-scope='notification'] {
to {opacity:1;}
to {opacity:1;}
}
}
/**********************************************
* Class
**********************************************/
.content-iframe-maximize {
position: fixed;
@media @desktop {
left: @panelwidth;
top: 2 * @headerheight;
width: ~"calc(100vw - "@panelwidth~")";
iframe {
height: ~"calc(100vh - "2 * @headerheight~")";
}
}
@media @tablet {
left: 0;
top: @headerheight-tablet;
iframe {
height: ~"calc(100vh - "@headerheight-tablet~")";
}
}
@media @smartphone {
left: 0;
top: @headerheight-smartphone;
iframe {
height: ~"calc(100vh - "@headerheight-smartphone~")";
}
}
}
/**********************************************
/**********************************************
* Icons
* Icons
**********************************************/
**********************************************/
...
...
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