Support screen width down to 240px (#5)

pull/5742/merge
Aleksander Machniak 8 years ago
parent ec3a65b6a5
commit 44bb2026a8

@ -34,6 +34,13 @@ INSTALLATION:
4. git clone https://github.com/roundcube/elastic.git
5. Before use disable all plugins (we're not there yet)
RULES:
------
- Minimum supported screen width is 240px (note that even if the device screen
resolution is e.g.320x372 changing the text size in settings will reduce the size)
IDEAS/TODOs:
------------
- Planned use of a css framework, e.g. semantic-ui, bootstrap (to be decided)

@ -25,6 +25,7 @@ NOTE: below 1024px we do some UI elements bigger, as this is good (imho)
body {
font-size: 1em;
min-width: 240px; /* reset semantic-ui's limit of 320px */
}
body > #layout {
@ -41,28 +42,31 @@ body > #layout > div.menu {
background-color: #222;
}
body > #layout > div.sidebar {
#layout > div.sidebar,
#layout > div.list {
display: flex;
flex-grow: 2;
flex-direction: column;
min-width: 220px;
}
body > #layout > div.list {
display: flex;
flex-grow: 3;
flex-direction: column;
min-width: 280px;
min-width: 300px;
max-width: 30%;
border-right: 1px solid #ddd;
}
body > #layout > div.content {
display: flex;
flex-grow: 7;
flex-grow: 6;
flex-direction: column;
min-width: 50%;
}
body > #layout > div.sidebar {
min-width: 220px;
}
body > #layout > div.list {
min-width: 300px;
}
body > #layout > div.menu a,
body > #layout > div.menu a:before {
display: block;
@ -78,17 +82,59 @@ body > #layout > div > .header > a.menu-button {
display: none;
}
#layout > div .toolbar {
float: right;
}
#layout > div.content > iframe,
#layout > div.content > .content,
#layout > div.content > .content > iframe {
height: 100%;
width: 100%;
overflow: auto;
border: 0;
flex: 1;
}
#layout > div > .scroller {
flex: 1;
}
#layout > .content.only > .scroller {
overflow: auto;
}
#layout > div > .header,
#layout > div > .footer {
background-color: #f9f9f9;
font-size: 1.2em;
font-weight: bold;
line-height: 2.4em;
height: 2.4em;
padding: 0 0.5em;
margin: 0;
position: relative; /* for absolute positioning of searchbar */
/* overflow: hidden; breaks semantic-ui popups */
}
#layout > div > .header {
border-bottom: 1px solid #ddd;
}
#layout > div > .footer {
border-top: 1px solid #ddd;
}
#taskmenu a.button-logout {
position: absolute;
bottom: 0;
color: grey;
}
#layout > div .toolbar {
float: right;
}
@media screen and (max-width: 1200px) { /* small */
body > #layout > div.sidebar,
body > #layout > div.list {
min-width: 260px;
}
body > #layout > div:not(.selected),
body > #layout > div.menu span.button-inner {
display: none;
@ -169,48 +215,15 @@ body > #layout > div > .header > a.menu-button {
}
}
/*** Layout elements style ***/
#layout > div.content > iframe,
#layout > div.content > .content,
#layout > div.content > .content > iframe {
height: 100%;
width: 100%;
overflow: auto;
border: 0;
flex: 1;
}
#layout > div.sidebar,
#layout > div.list {
border-right: 1px solid #ddd;
}
#layout > div > .scroller {
flex: 1;
}
#layout > .content.only > .scroller {
overflow: auto;
}
#layout > div > .header,
#layout > div > .footer {
background-color: #f9f9f9;
font-size: 1.2em;
font-weight: bold;
line-height: 2.4em;
height: 2.4em;
padding: 0 0.5em;
margin: 0;
position: relative; /* for absolute positioning of searchbar */
/* overflow: hidden; breaks semantic-ui popups */
}
#layout > div > .header {
border-bottom: 1px solid #ddd;
}
#layout > div > .footer {
border-top: 1px solid #ddd;
@media screen and (max-width: 319px) {
#layout > div > .header > .buttons > button:before {
content: "" !important;
float: none !important;
}
body > #layout > div.sidebar,
body > #layout > div.list {
min-width: 240px;
}
}

Loading…
Cancel
Save